2018-02-02 12:38:35 +01:00
#include "wxExtensions.hpp"
2018-05-10 16:36:12 +02:00
#include "GUI.hpp"
#include "../../libslic3r/Utils.hpp"
#include <wx/sizer.h>
#include <wx/statline.h>
2018-08-21 02:03:10 +02:00
#include <wx/dcclient.h>
2018-08-21 17:47:05 +02:00
#include <wx/numformatter.h>
2018-05-10 16:36:12 +02:00
2018-02-20 14:25:40 +01:00
const unsigned int wxCheckListBoxComboPopup :: DefaultWidth = 200 ;
const unsigned int wxCheckListBoxComboPopup :: DefaultHeight = 200 ;
2018-02-20 14:44:00 +01:00
const unsigned int wxCheckListBoxComboPopup :: DefaultItemHeight = 18 ;
2018-02-02 12:38:35 +01:00
bool wxCheckListBoxComboPopup :: Create ( wxWindow * parent )
{
2018-02-06 12:43:25 +01:00
return wxCheckListBox :: Create ( parent , wxID_HIGHEST + 1 , wxPoint ( 0 , 0 ));
2018-02-02 12:38:35 +01:00
}
wxWindow * wxCheckListBoxComboPopup :: GetControl ()
{
return this ;
}
void wxCheckListBoxComboPopup :: SetStringValue ( const wxString & value )
{
m_text = value ;
}
wxString wxCheckListBoxComboPopup :: GetStringValue () const
{
return m_text ;
}
wxSize wxCheckListBoxComboPopup :: GetAdjustedSize ( int minWidth , int prefHeight , int maxHeight )
{
// matches owner wxComboCtrl's width
2018-02-20 14:25:40 +01:00
// and sets height dinamically in dependence of contained items count
2018-02-02 12:38:35 +01:00
wxComboCtrl * cmb = GetComboCtrl ();
if ( cmb != nullptr )
{
wxSize size = GetComboCtrl () -> GetSize ();
2018-02-20 14:25:40 +01:00
unsigned int count = GetCount ();
if ( count > 0 )
2018-02-20 14:44:00 +01:00
size . SetHeight ( count * DefaultItemHeight );
2018-02-20 14:25:40 +01:00
else
size . SetHeight ( DefaultHeight );
2018-02-02 12:38:35 +01:00
return size ;
}
else
2018-02-20 14:25:40 +01:00
return wxSize ( DefaultWidth , DefaultHeight );
}
void wxCheckListBoxComboPopup :: OnKeyEvent ( wxKeyEvent & evt )
{
2018-02-22 08:59:47 +01:00
// filters out all the keys which are not working properly
switch ( evt . GetKeyCode ())
{
case WXK_LEFT :
case WXK_UP :
case WXK_RIGHT :
case WXK_DOWN :
case WXK_PAGEUP :
case WXK_PAGEDOWN :
case WXK_END :
case WXK_HOME :
case WXK_NUMPAD_LEFT :
case WXK_NUMPAD_UP :
case WXK_NUMPAD_RIGHT :
case WXK_NUMPAD_DOWN :
case WXK_NUMPAD_PAGEUP :
case WXK_NUMPAD_PAGEDOWN :
case WXK_NUMPAD_END :
case WXK_NUMPAD_HOME :
{
break ;
}
default :
{
evt . Skip ();
break ;
}
}
2018-02-02 12:38:35 +01:00
}
void wxCheckListBoxComboPopup :: OnCheckListBox ( wxCommandEvent & evt )
{
// forwards the checklistbox event to the owner wxComboCtrl
2018-05-17 10:23:02 +02:00
if ( m_check_box_events_status == OnCheckListBoxFunction :: FreeToProceed )
2018-02-02 12:38:35 +01:00
{
2018-05-17 10:23:02 +02:00
wxComboCtrl * cmb = GetComboCtrl ();
if ( cmb != nullptr ) {
wxCommandEvent event ( wxEVT_CHECKLISTBOX , cmb -> GetId ());
event . SetEventObject ( cmb );
cmb -> ProcessWindowEvent ( event );
}
2018-02-02 12:38:35 +01:00
}
2018-02-20 15:22:30 +01:00
evt . Skip ();
2018-05-17 10:23:02 +02:00
#ifndef _WIN32 // events are sent differently on OSX+Linux vs Win (more description in header file)
if ( m_check_box_events_status == OnCheckListBoxFunction :: RefuseToProceed )
// this happens if the event was resent by OnListBoxSelection - next call to OnListBoxSelection is due to user clicking the text, so the function should
// explicitly change the state on the checkbox
m_check_box_events_status = OnCheckListBoxFunction :: WasRefusedLastTime ;
else
// if the user clicked the checkbox square, this event was sent before OnListBoxSelection was called, so we don't want it to resend it
m_check_box_events_status = OnCheckListBoxFunction :: RefuseToProceed ;
#endif
2018-02-02 12:38:35 +01:00
}
void wxCheckListBoxComboPopup :: OnListBoxSelection ( wxCommandEvent & evt )
{
// transforms list box item selection event into checklistbox item toggle event
int selId = GetSelection ();
if ( selId != wxNOT_FOUND )
{
2018-05-17 10:23:02 +02:00
#ifndef _WIN32
if ( m_check_box_events_status == OnCheckListBoxFunction :: RefuseToProceed )
#endif
Check (( unsigned int ) selId , ! IsChecked (( unsigned int ) selId ));
2018-02-02 12:38:35 +01:00
2018-05-17 10:23:02 +02:00
m_check_box_events_status = OnCheckListBoxFunction :: FreeToProceed ; // so the checkbox reacts to square-click the next time
SetSelection ( wxNOT_FOUND );
2018-02-02 12:38:35 +01:00
wxCommandEvent event ( wxEVT_CHECKLISTBOX , GetId ());
event . SetInt ( selId );
event . SetEventObject ( this );
ProcessEvent ( event );
}
}
2018-04-06 13:37:00 +02:00
// *** wxDataViewTreeCtrlComboPopup ***
const unsigned int wxDataViewTreeCtrlComboPopup :: DefaultWidth = 270 ;
const unsigned int wxDataViewTreeCtrlComboPopup :: DefaultHeight = 200 ;
const unsigned int wxDataViewTreeCtrlComboPopup :: DefaultItemHeight = 22 ;
bool wxDataViewTreeCtrlComboPopup :: Create ( wxWindow * parent )
{
2018-04-09 16:50:17 +02:00
return wxDataViewTreeCtrl :: Create ( parent , wxID_ANY /*HIGHEST + 1*/ , wxPoint ( 0 , 0 ), wxDefaultSize /*wxSize(270, -1)*/ , wxDV_NO_HEADER );
2018-04-06 13:37:00 +02:00
}
2018-04-09 12:41:25 +02:00
/*
2018-04-06 13:37:00 +02:00
wxSize wxDataViewTreeCtrlComboPopup::GetAdjustedSize(int minWidth, int prefHeight, int maxHeight)
{
// matches owner wxComboCtrl's width
// and sets height dinamically in dependence of contained items count
2018-04-06 15:42:52 +02:00
wxComboCtrl* cmb = GetComboCtrl();
if (cmb != nullptr)
{
wxSize size = GetComboCtrl()->GetSize();
if (m_cnt_open_items > 0)
size.SetHeight(m_cnt_open_items * DefaultItemHeight);
else
size.SetHeight(DefaultHeight);
return size;
}
else
return wxSize(DefaultWidth, DefaultHeight);
2018-04-06 13:37:00 +02:00
}
2018-04-09 12:41:25 +02:00
*/
2018-04-06 13:37:00 +02:00
void wxDataViewTreeCtrlComboPopup :: OnKeyEvent ( wxKeyEvent & evt )
{
// filters out all the keys which are not working properly
if ( evt . GetKeyCode () == WXK_UP )
{
return ;
}
else if ( evt . GetKeyCode () == WXK_DOWN )
{
return ;
}
else
{
evt . Skip ();
return ;
}
}
void wxDataViewTreeCtrlComboPopup :: OnDataViewTreeCtrlSelection ( wxCommandEvent & evt )
{
wxComboCtrl * cmb = GetComboCtrl ();
auto selected = GetItemText ( GetSelection ());
cmb -> SetText ( selected );
}
2018-05-04 18:32:20 +02:00
2018-05-11 11:25:28 +02:00
// ----------------------------------------------------------------------------
2018-06-08 12:43:39 +02:00
// *** PrusaCollapsiblePane ***
// ----------------------------------------------------------------------------
void PrusaCollapsiblePane :: OnStateChange ( const wxSize & sz )
{
2018-06-29 14:00:22 +02:00
#ifdef __WXOSX__
2018-06-29 13:07:58 +02:00
wxCollapsiblePane :: OnStateChange ( sz );
#else
2018-06-08 12:43:39 +02:00
SetSize ( sz );
if ( this -> HasFlag ( wxCP_NO_TLW_RESIZE ))
{
// the user asked to explicitly handle the resizing itself...
return ;
}
auto top = GetParent (); //right_panel
if ( ! top )
return ;
wxSizer * sizer = top -> GetSizer ();
if ( ! sizer )
return ;
const wxSize newBestSize = sizer -> ComputeFittingClientSize ( top );
top -> SetMinClientSize ( newBestSize );
wxWindowUpdateLocker noUpdates_p ( top -> GetParent ());
// we shouldn't attempt to resize a maximized window, whatever happens
// if (!top->IsMaximized())
// top->SetClientSize(newBestSize);
top -> GetParent () -> Layout ();
top -> Refresh ();
2018-06-29 13:07:58 +02:00
#endif //__WXOSX__
2018-06-08 12:43:39 +02:00
}
// ----------------------------------------------------------------------------
// *** PrusaCollapsiblePaneMSW *** used only #ifdef __WXMSW__
2018-05-10 16:36:12 +02:00
// ----------------------------------------------------------------------------
2018-05-11 11:25:28 +02:00
#ifdef __WXMSW__
2018-06-08 12:43:39 +02:00
bool PrusaCollapsiblePaneMSW :: Create ( wxWindow * parent , wxWindowID id , const wxString & label ,
2018-05-10 16:36:12 +02:00
const wxPoint & pos , const wxSize & size , long style , const wxValidator & val , const wxString & name )
{
if ( ! wxControl :: Create ( parent , id , pos , size , style , val , name ))
return false ;
m_pStaticLine = NULL ;
m_strLabel = label ;
// sizer containing the expand button and possibly a static line
m_sz = new wxBoxSizer ( wxHORIZONTAL );
m_bmp_close . LoadFile ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "disclosure_triangle_close.png" )), wxBITMAP_TYPE_PNG );
m_bmp_open . LoadFile ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "disclosure_triangle_open.png" )), wxBITMAP_TYPE_PNG );
m_pDisclosureTriangleButton = new wxButton ( this , wxID_ANY , m_strLabel , wxPoint ( 0 , 0 ),
wxDefaultSize , wxBU_EXACTFIT | wxNO_BORDER );
2018-05-15 12:01:33 +02:00
UpdateBtnBmp ();
2018-05-10 16:36:12 +02:00
m_pDisclosureTriangleButton -> Bind ( wxEVT_BUTTON , [ this ]( wxCommandEvent & event )
{
if ( event . GetEventObject () != m_pDisclosureTriangleButton )
{
event . Skip ();
return ;
}
Collapse ( ! IsCollapsed ());
// this change was generated by the user - send the event
wxCollapsiblePaneEvent ev ( this , GetId (), IsCollapsed ());
GetEventHandler () -> ProcessEvent ( ev );
});
m_sz -> Add ( m_pDisclosureTriangleButton , 0 , wxLEFT | wxTOP | wxBOTTOM , GetBorder ());
// do not set sz as our sizers since we handle the pane window without using sizers
m_pPane = new wxPanel ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize ,
wxTAB_TRAVERSAL | wxNO_BORDER , wxT ( "wxCollapsiblePanePane" ));
wxColour & clr = wxSystemSettings :: GetColour ( wxSYS_COLOUR_WINDOW );
m_pDisclosureTriangleButton -> SetBackgroundColour ( clr );
this -> SetBackgroundColour ( clr );
m_pPane -> SetBackgroundColour ( clr );
// start as collapsed:
m_pPane -> Hide ();
return true ;
}
2018-06-08 12:43:39 +02:00
void PrusaCollapsiblePaneMSW :: UpdateBtnBmp ()
2018-05-10 16:36:12 +02:00
{
2018-05-15 12:01:33 +02:00
if ( IsCollapsed ())
m_pDisclosureTriangleButton -> SetBitmap ( m_bmp_close );
else {
2018-05-10 16:36:12 +02:00
m_pDisclosureTriangleButton -> SetBitmap ( m_bmp_open );
2018-05-15 12:01:33 +02:00
// To updating button bitmap it's needed to lost focus on this button, so
// we set focus to mainframe
//GetParent()->GetParent()->GetParent()->SetFocus();
//or to pane
GetPane () -> SetFocus ();
}
2018-05-10 16:36:12 +02:00
Layout ();
}
2018-06-08 12:43:39 +02:00
void PrusaCollapsiblePaneMSW :: SetLabel ( const wxString & label )
2018-05-10 16:36:12 +02:00
{
m_strLabel = label ;
m_pDisclosureTriangleButton -> SetLabel ( m_strLabel );
Layout ();
}
2018-06-08 12:43:39 +02:00
bool PrusaCollapsiblePaneMSW :: Layout ()
2018-05-10 16:36:12 +02:00
{
if ( ! m_pDisclosureTriangleButton || ! m_pPane || ! m_sz )
return false ; // we need to complete the creation first!
wxSize oursz ( GetSize ());
// move & resize the button and the static line
m_sz -> SetDimension ( 0 , 0 , oursz . GetWidth (), m_sz -> GetMinSize (). GetHeight ());
m_sz -> Layout ();
if ( IsExpanded ())
{
// move & resize the container window
int yoffset = m_sz -> GetSize (). GetHeight () + GetBorder ();
m_pPane -> SetSize ( 0 , yoffset ,
oursz . x , oursz . y - yoffset );
// this is very important to make the pane window layout show correctly
m_pPane -> Layout ();
}
return true ;
}
2018-06-08 12:43:39 +02:00
void PrusaCollapsiblePaneMSW :: Collapse ( bool collapse )
2018-06-05 09:13:03 +02:00
{
// optimization
if ( IsCollapsed () == collapse )
return ;
InvalidateBestSize ();
// update our state
m_pPane -> Show ( ! collapse );
// update button bitmap
UpdateBtnBmp ();
2018-06-08 12:43:39 +02:00
OnStateChange ( GetBestSize ());
2018-06-05 09:13:03 +02:00
}
2018-06-05 11:17:37 +02:00
#endif //__WXMSW__
2018-06-05 09:13:03 +02:00
2018-07-04 08:54:30 +02:00
// *****************************************************************************
// ----------------------------------------------------------------------------
// PrusaObjectDataViewModelNode
// ----------------------------------------------------------------------------
void PrusaObjectDataViewModelNode :: set_object_action_icon () {
2018-07-25 16:13:20 +02:00
m_action_icon = wxBitmap ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "add_object.png" )), wxBITMAP_TYPE_PNG );
2018-07-04 08:54:30 +02:00
}
void PrusaObjectDataViewModelNode :: set_part_action_icon () {
m_action_icon = wxBitmap ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "cog.png" )), wxBITMAP_TYPE_PNG );
}
2018-05-04 18:32:20 +02:00
// *****************************************************************************
// ----------------------------------------------------------------------------
2018-06-15 22:42:51 +02:00
// PrusaObjectDataViewModel
2018-05-04 18:32:20 +02:00
// ----------------------------------------------------------------------------
2018-06-15 22:42:51 +02:00
wxDataViewItem PrusaObjectDataViewModel :: Add ( wxString & name )
2018-05-04 18:32:20 +02:00
{
2018-06-15 22:42:51 +02:00
auto root = new PrusaObjectDataViewModelNode ( name );
2018-05-30 17:52:28 +02:00
m_objects . push_back ( root );
2018-05-29 22:45:35 +02:00
// notify control
wxDataViewItem child (( void * ) root );
wxDataViewItem parent (( void * ) NULL );
ItemAdded ( parent , child );
2018-05-30 17:52:28 +02:00
return child ;
2018-05-29 22:45:35 +02:00
}
2018-05-04 18:32:20 +02:00
2018-06-15 22:42:51 +02:00
wxDataViewItem PrusaObjectDataViewModel :: Add ( wxString & name , int instances_count , int scale )
2018-06-04 15:59:55 +02:00
{
2018-06-15 22:42:51 +02:00
auto root = new PrusaObjectDataViewModelNode ( name , instances_count , scale );
2018-06-04 15:59:55 +02:00
m_objects . push_back ( root );
// notify control
wxDataViewItem child (( void * ) root );
wxDataViewItem parent (( void * ) NULL );
ItemAdded ( parent , child );
return child ;
}
2018-06-15 22:42:51 +02:00
wxDataViewItem PrusaObjectDataViewModel :: AddChild ( const wxDataViewItem & parent_item ,
const wxString & name ,
2018-07-30 17:03:14 +02:00
const wxIcon & icon ,
2018-08-15 13:59:33 +02:00
const int extruder /* = 0*/ ,
const bool create_frst_child /* = true*/ )
2018-05-29 22:45:35 +02:00
{
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * root = ( PrusaObjectDataViewModelNode * ) parent_item . GetID ();
2018-05-30 17:52:28 +02:00
if ( ! root ) return wxDataViewItem ( 0 );
2018-05-04 18:32:20 +02:00
2018-08-15 13:59:33 +02:00
wxString extruder_str = extruder == 0 ? "default" : wxString :: Format ( "%d" , extruder );
2018-07-30 17:03:14 +02:00
if ( root -> GetChildren (). Count () == 0 && create_frst_child )
2018-05-30 00:36:44 +02:00
{
2018-07-25 16:13:20 +02:00
auto icon_solid_mesh = wxIcon ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "object.png" )), wxBITMAP_TYPE_PNG ); //(Slic3r::var("package.png")), wxBITMAP_TYPE_PNG);
2018-08-15 13:59:33 +02:00
auto node = new PrusaObjectDataViewModelNode ( root , root -> m_name , icon_solid_mesh , extruder_str , 0 );
2018-05-30 00:36:44 +02:00
root -> Append ( node );
// notify control
wxDataViewItem child (( void * ) node );
ItemAdded ( parent_item , child );
}
2018-06-18 14:20:29 +02:00
auto volume_id = root -> GetChildCount ();
2018-08-15 13:59:33 +02:00
auto node = new PrusaObjectDataViewModelNode ( root , name , icon , extruder_str , volume_id );
2018-05-29 22:45:35 +02:00
root -> Append ( node );
// notify control
wxDataViewItem child (( void * ) node );
ItemAdded ( parent_item , child );
2018-05-30 17:52:28 +02:00
return child ;
2018-05-29 22:45:35 +02:00
}
2018-05-10 16:36:12 +02:00
2018-06-15 22:42:51 +02:00
wxDataViewItem PrusaObjectDataViewModel :: Delete ( const wxDataViewItem & item )
2018-05-29 22:45:35 +02:00
{
2018-05-30 17:52:28 +02:00
auto ret_item = wxDataViewItem ( 0 );
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-05-29 22:45:35 +02:00
if ( ! node ) // happens if item.IsOk()==false
2018-05-30 17:52:28 +02:00
return ret_item ;
2018-05-29 22:45:35 +02:00
2018-05-30 00:36:44 +02:00
auto node_parent = node -> GetParent ();
wxDataViewItem parent ( node_parent );
2018-05-29 22:45:35 +02:00
// first remove the node from the parent's array of children;
// NOTE: MyObjectTreeModelNodePtrArray is only an array of _pointers_
// thus removing the node from it doesn't result in freeing it
2018-05-30 17:52:28 +02:00
if ( node_parent ){
auto id = node_parent -> GetChildren (). Index ( node );
2018-06-18 15:26:09 +02:00
auto v_id = node -> GetVolumeId ();
2018-05-30 00:36:44 +02:00
node_parent -> GetChildren (). Remove ( node );
2018-05-30 17:52:28 +02:00
if ( id > 0 ){
if ( id == node_parent -> GetChildCount ()) id -- ;
ret_item = wxDataViewItem ( node_parent -> GetChildren (). Item ( id ));
}
2018-06-18 15:26:09 +02:00
//update volume_id value for remaining child-nodes
auto children = node_parent -> GetChildren ();
for ( size_t i = 0 ; i < node_parent -> GetChildCount (); i ++ )
{
auto volume_id = children [ i ] -> GetVolumeId ();
if ( volume_id > v_id )
children [ i ] -> SetVolumeId ( volume_id - 1 );
}
2018-05-30 17:52:28 +02:00
}
2018-05-30 00:36:44 +02:00
else
{
2018-05-30 17:52:28 +02:00
auto it = find ( m_objects . begin (), m_objects . end (), node );
auto id = it - m_objects . begin ();
2018-05-30 00:36:44 +02:00
if ( it != m_objects . end ())
m_objects . erase ( it );
2018-05-30 17:52:28 +02:00
if ( id > 0 ){
if ( id == m_objects . size ()) id -- ;
ret_item = wxDataViewItem ( m_objects [ id ]);
}
2018-05-30 00:36:44 +02:00
}
2018-05-29 22:45:35 +02:00
// free the node
delete node ;
2018-05-30 00:36:44 +02:00
// set m_containet to FALSE if parent has no child
2018-05-30 17:52:28 +02:00
if ( node_parent && node_parent -> GetChildCount () == 0 ){
2018-07-31 15:31:12 +02:00
#ifndef __WXGTK__
2018-05-30 00:36:44 +02:00
node_parent -> m_container = false ;
2018-07-31 15:31:12 +02:00
#endif //__WXGTK__
2018-05-30 17:52:28 +02:00
ret_item = parent ;
}
2018-05-30 00:36:44 +02:00
2018-05-29 22:45:35 +02:00
// notify control
ItemDeleted ( parent , item );
2018-05-30 17:52:28 +02:00
return ret_item ;
2018-05-04 18:32:20 +02:00
}
2018-06-15 22:42:51 +02:00
void PrusaObjectDataViewModel :: DeleteAll ()
2018-06-04 15:59:55 +02:00
{
while ( ! m_objects . empty ())
{
auto object = m_objects . back ();
// object->RemoveAllChildren();
Delete ( wxDataViewItem ( object ));
}
}
2018-07-31 15:31:12 +02:00
void PrusaObjectDataViewModel :: DeleteChildren ( wxDataViewItem & parent )
{
PrusaObjectDataViewModelNode * root = ( PrusaObjectDataViewModelNode * ) parent . GetID ();
if ( ! root ) // happens if item.IsOk()==false
return ;
// first remove the node from the parent's array of children;
// NOTE: MyObjectTreeModelNodePtrArray is only an array of _pointers_
// thus removing the node from it doesn't result in freeing it
auto & children = root -> GetChildren ();
for ( int id = root -> GetChildCount () - 1 ; id >= 0 ; -- id )
{
auto node = children [ id ];
auto item = wxDataViewItem ( node );
children . RemoveAt ( id );
// free the node
delete node ;
// notify control
ItemDeleted ( parent , item );
}
// set m_containet to FALSE if parent has no child
#ifndef __WXGTK__
root -> m_container = false ;
#endif //__WXGTK__
}
2018-06-15 22:42:51 +02:00
wxDataViewItem PrusaObjectDataViewModel :: GetItemById ( int obj_idx )
2018-06-04 15:59:55 +02:00
{
if ( obj_idx >= m_objects . size ())
{
printf ( "Error! Out of objects range. \n " );
return wxDataViewItem ( 0 );
}
return wxDataViewItem ( m_objects [ obj_idx ]);
}
2018-06-15 22:42:51 +02:00
int PrusaObjectDataViewModel :: GetIdByItem ( wxDataViewItem & item )
2018-06-07 00:55:09 +02:00
{
wxASSERT ( item . IsOk ());
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-06-07 00:55:09 +02:00
auto it = find ( m_objects . begin (), m_objects . end (), node );
if ( it == m_objects . end ())
return - 1 ;
return it - m_objects . begin ();
}
2018-06-18 14:20:29 +02:00
int PrusaObjectDataViewModel :: GetVolumeIdByItem ( wxDataViewItem & item )
{
wxASSERT ( item . IsOk ());
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
if ( ! node ) // happens if item.IsOk()==false
return - 1 ;
return node -> GetVolumeId ();
}
2018-06-15 22:42:51 +02:00
wxString PrusaObjectDataViewModel :: GetName ( const wxDataViewItem & item ) const
2018-05-04 18:32:20 +02:00
{
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-05-04 18:32:20 +02:00
if ( ! node ) // happens if item.IsOk()==false
return wxEmptyString ;
return node -> m_name ;
}
2018-06-15 22:42:51 +02:00
wxString PrusaObjectDataViewModel :: GetCopy ( const wxDataViewItem & item ) const
2018-05-04 18:32:20 +02:00
{
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-05-04 18:32:20 +02:00
if ( ! node ) // happens if item.IsOk()==false
return wxEmptyString ;
return node -> m_copy ;
}
2018-06-15 22:42:51 +02:00
wxString PrusaObjectDataViewModel :: GetScale ( const wxDataViewItem & item ) const
2018-05-04 18:32:20 +02:00
{
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-05-04 18:32:20 +02:00
if ( ! node ) // happens if item.IsOk()==false
return wxEmptyString ;
return node -> m_scale ;
}
2018-08-09 12:02:09 +02:00
wxIcon & PrusaObjectDataViewModel :: GetIcon ( const wxDataViewItem & item ) const
2018-08-01 12:49:39 +02:00
{
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
return node -> m_icon ;
}
2018-06-15 22:42:51 +02:00
void PrusaObjectDataViewModel :: GetValue ( wxVariant & variant , const wxDataViewItem & item , unsigned int col ) const
2018-05-04 18:32:20 +02:00
{
wxASSERT ( item . IsOk ());
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-05-04 18:32:20 +02:00
switch ( col )
{
2018-06-15 22:42:51 +02:00
case 0 : {
const wxDataViewIconText data ( node -> m_name , node -> m_icon );
variant << data ;
break ;}
2018-05-04 18:32:20 +02:00
case 1 :
variant = node -> m_copy ;
break ;
case 2 :
variant = node -> m_scale ;
break ;
2018-07-04 08:54:30 +02:00
case 3 :
variant = node -> m_extruder ;
break ;
case 4 :
variant << node -> m_action_icon ;
break ;
2018-05-04 18:32:20 +02:00
default :
2018-06-04 15:59:55 +02:00
;
2018-05-04 18:32:20 +02:00
}
}
2018-06-15 22:42:51 +02:00
bool PrusaObjectDataViewModel :: SetValue ( const wxVariant & variant , const wxDataViewItem & item , unsigned int col )
2018-05-04 18:32:20 +02:00
{
wxASSERT ( item . IsOk ());
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-06-05 13:17:24 +02:00
return node -> SetValue ( variant , col );
2018-05-04 18:32:20 +02:00
}
2018-06-15 22:42:51 +02:00
bool PrusaObjectDataViewModel :: SetValue ( const wxVariant & variant , const int item_idx , unsigned int col )
2018-06-05 10:41:20 +02:00
{
if ( item_idx < 0 || item_idx >= m_objects . size ())
return false ;
return m_objects [ item_idx ] -> SetValue ( variant , col );
}
2018-06-19 12:24:16 +02:00
wxDataViewItem PrusaObjectDataViewModel :: MoveChildUp ( const wxDataViewItem & item )
{
auto ret_item = wxDataViewItem ( 0 );
wxASSERT ( item . IsOk ());
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
if ( ! node ) // happens if item.IsOk()==false
return ret_item ;
auto node_parent = node -> GetParent ();
if ( ! node_parent ) // If isn't part, but object
return ret_item ;
auto volume_id = node -> GetVolumeId ();
if ( 0 < volume_id && volume_id < node_parent -> GetChildCount ()){
node_parent -> SwapChildrens ( volume_id - 1 , volume_id );
ret_item = wxDataViewItem ( node_parent -> GetNthChild ( volume_id - 1 ));
ItemChanged ( item );
ItemChanged ( ret_item );
}
else
ret_item = wxDataViewItem ( node_parent -> GetNthChild ( 0 ));
return ret_item ;
}
wxDataViewItem PrusaObjectDataViewModel :: MoveChildDown ( const wxDataViewItem & item )
{
auto ret_item = wxDataViewItem ( 0 );
wxASSERT ( item . IsOk ());
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
if ( ! node ) // happens if item.IsOk()==false
return ret_item ;
auto node_parent = node -> GetParent ();
if ( ! node_parent ) // If isn't part, but object
return ret_item ;
auto volume_id = node -> GetVolumeId ();
if ( 0 <= volume_id && volume_id + 1 < node_parent -> GetChildCount ()){
node_parent -> SwapChildrens ( volume_id + 1 , volume_id );
ret_item = wxDataViewItem ( node_parent -> GetNthChild ( volume_id + 1 ));
ItemChanged ( item );
ItemChanged ( ret_item );
}
else
ret_item = wxDataViewItem ( node_parent -> GetNthChild ( node_parent -> GetChildCount () - 1 ));
return ret_item ;
}
2018-08-13 14:15:43 +02:00
wxDataViewItem PrusaObjectDataViewModel :: ReorganizeChildren ( int current_volume_id , int new_volume_id , const wxDataViewItem & parent )
{
auto ret_item = wxDataViewItem ( 0 );
if ( current_volume_id == new_volume_id )
return ret_item ;
wxASSERT ( parent . IsOk ());
PrusaObjectDataViewModelNode * node_parent = ( PrusaObjectDataViewModelNode * ) parent . GetID ();
if ( ! node_parent ) // happens if item.IsOk()==false
return ret_item ;
PrusaObjectDataViewModelNode * deleted_node = node_parent -> GetNthChild ( current_volume_id );
node_parent -> GetChildren (). Remove ( deleted_node );
ItemDeleted ( parent , wxDataViewItem ( deleted_node ));
node_parent -> Insert ( deleted_node , new_volume_id );
ItemAdded ( parent , wxDataViewItem ( deleted_node ));
//update volume_id value for child-nodes
auto children = node_parent -> GetChildren ();
int id_frst = current_volume_id < new_volume_id ? current_volume_id : new_volume_id ;
int id_last = current_volume_id > new_volume_id ? current_volume_id : new_volume_id ;
for ( int id = id_frst ; id <= id_last ; ++ id )
children [ id ] -> SetVolumeId ( id );
return wxDataViewItem ( node_parent -> GetNthChild ( new_volume_id ));
}
2018-05-04 18:32:20 +02:00
// bool MyObjectTreeModel::IsEnabled(const wxDataViewItem &item, unsigned int col) const
// {
//
// }
2018-06-15 22:42:51 +02:00
wxDataViewItem PrusaObjectDataViewModel :: GetParent ( const wxDataViewItem & item ) const
2018-05-04 18:32:20 +02:00
{
// the invisible root node has no parent
if ( ! item . IsOk ())
return wxDataViewItem ( 0 );
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-05-04 18:32:20 +02:00
2018-05-29 22:45:35 +02:00
// objects nodes has no parent too
2018-05-30 17:52:28 +02:00
if ( find ( m_objects . begin (), m_objects . end (), node ) != m_objects . end ())
2018-05-04 18:32:20 +02:00
return wxDataViewItem ( 0 );
return wxDataViewItem (( void * ) node -> GetParent ());
}
2018-06-15 22:42:51 +02:00
bool PrusaObjectDataViewModel :: IsContainer ( const wxDataViewItem & item ) const
2018-05-04 18:32:20 +02:00
{
2018-05-30 00:36:44 +02:00
// the invisible root node can have children
2018-05-04 18:32:20 +02:00
if ( ! item . IsOk ())
return true ;
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) item . GetID ();
2018-05-04 18:32:20 +02:00
return node -> IsContainer ();
}
2018-06-15 22:42:51 +02:00
unsigned int PrusaObjectDataViewModel :: GetChildren ( const wxDataViewItem & parent , wxDataViewItemArray & array ) const
2018-05-04 18:32:20 +02:00
{
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * node = ( PrusaObjectDataViewModelNode * ) parent . GetID ();
2018-05-04 18:32:20 +02:00
if ( ! node )
{
2018-05-09 14:36:20 +02:00
for ( auto object : m_objects )
array . Add ( wxDataViewItem (( void * ) object ));
2018-05-04 18:32:20 +02:00
return m_objects . size ();
}
if ( node -> GetChildCount () == 0 )
{
return 0 ;
}
unsigned int count = node -> GetChildren (). GetCount ();
for ( unsigned int pos = 0 ; pos < count ; pos ++ )
{
2018-06-15 22:42:51 +02:00
PrusaObjectDataViewModelNode * child = node -> GetChildren (). Item ( pos );
2018-05-04 18:32:20 +02:00
array . Add ( wxDataViewItem (( void * ) child ));
}
return count ;
}
2018-07-30 12:17:32 +02:00
2018-08-21 02:03:10 +02:00
// ************************************** EXPERIMENTS ***************************************
PrusaDoubleSlider :: PrusaDoubleSlider ( wxWindow * parent ,
wxWindowID id ,
int lowerValue ,
int higherValue ,
int minValue ,
int maxValue ,
const wxPoint & pos ,
const wxSize & size ,
long style ,
const wxValidator & val ,
const wxString & name ) :
2018-08-21 17:47:05 +02:00
wxControl ( parent , id , pos , size , wxWANTS_CHARS | wxBORDER_NONE ),
2018-08-21 02:03:10 +02:00
m_lower_value ( lowerValue ), m_higher_value ( higherValue ),
m_min_value ( minValue ), m_max_value ( maxValue ),
2018-08-22 10:44:11 +02:00
m_style ( style == wxSL_HORIZONTAL || style == wxSL_VERTICAL ? style : wxSL_HORIZONTAL )
2018-08-21 02:03:10 +02:00
{
2018-08-22 08:54:07 +02:00
#ifndef __WXOSX__ // SetDoubleBuffered exists on Win and Linux/GTK, but is missing on OSX
2018-08-21 02:03:10 +02:00
SetDoubleBuffered ( true );
2018-08-22 08:54:07 +02:00
#endif //__WXOSX__
2018-08-21 02:03:10 +02:00
m_thumb_higher = wxBitmap ( style == wxSL_HORIZONTAL ? Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "right_half_circle.png" )) :
Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "up_half_circle.png" )), wxBITMAP_TYPE_PNG );
m_thumb_lower = wxBitmap ( style == wxSL_HORIZONTAL ? Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "left_half_circle.png" )) :
Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "down_half_circle.png" )), wxBITMAP_TYPE_PNG );
2018-08-22 14:24:30 +02:00
m_thumb_size = m_thumb_lower . GetSize ();
2018-08-23 13:01:18 +02:00
m_add_tick_on = wxBitmap ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "colorchange_add_on.png" )), wxBITMAP_TYPE_PNG );
m_add_tick_off = wxBitmap ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "colorchange_add_off.png" )), wxBITMAP_TYPE_PNG );
m_del_tick_on = wxBitmap ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "colorchange_delete_on.png" )), wxBITMAP_TYPE_PNG );
m_del_tick_off = wxBitmap ( Slic3r :: GUI :: from_u8 ( Slic3r :: var ( "colorchange_delete_off.png" )), wxBITMAP_TYPE_PNG );
m_tick_icon_dim = m_add_tick_on . GetSize (). x ;
2018-08-21 02:03:10 +02:00
m_selection = ssUndef ;
// slider events
Bind ( wxEVT_PAINT , & PrusaDoubleSlider :: OnPaint , this );
Bind ( wxEVT_LEFT_DOWN , & PrusaDoubleSlider :: OnLeftDown , this );
Bind ( wxEVT_MOTION , & PrusaDoubleSlider :: OnMotion , this );
Bind ( wxEVT_LEFT_UP , & PrusaDoubleSlider :: OnLeftUp , this );
Bind ( wxEVT_MOUSEWHEEL , & PrusaDoubleSlider :: OnWheel , this );
2018-08-21 17:47:05 +02:00
Bind ( wxEVT_ENTER_WINDOW , & PrusaDoubleSlider :: OnEnterWin , this );
2018-08-22 10:44:11 +02:00
Bind ( wxEVT_LEAVE_WINDOW , & PrusaDoubleSlider :: OnLeaveWin , this );
2018-08-21 17:47:05 +02:00
Bind ( wxEVT_KEY_DOWN , & PrusaDoubleSlider :: OnKeyDown , this );
2018-08-22 18:00:48 +02:00
Bind ( wxEVT_RIGHT_DOWN , & PrusaDoubleSlider :: OnRightDown , this );
2018-08-21 02:03:10 +02:00
// control's view variables
2018-08-23 13:01:18 +02:00
SLIDER_MARGIN = 4 + ( style == wxSL_HORIZONTAL ? m_thumb_higher . GetWidth () : m_thumb_higher . GetHeight ());
2018-08-21 02:03:10 +02:00
DARK_ORANGE_PEN = wxPen ( wxColour ( 253 , 84 , 2 ));
ORANGE_PEN = wxPen ( wxColour ( 253 , 126 , 66 ));
LIGHT_ORANGE_PEN = wxPen ( wxColour ( 254 , 177 , 139 ));
DARK_GREY_PEN = wxPen ( wxColour ( 128 , 128 , 128 ));
GREY_PEN = wxPen ( wxColour ( 164 , 164 , 164 ));
LIGHT_GREY_PEN = wxPen ( wxColour ( 204 , 204 , 204 ));
line_pens = { & DARK_GREY_PEN , & GREY_PEN , & LIGHT_GREY_PEN };
segm_pens = { & DARK_ORANGE_PEN , & ORANGE_PEN , & LIGHT_ORANGE_PEN };
}
2018-08-22 10:44:11 +02:00
wxSize PrusaDoubleSlider :: DoGetBestSize () const
{
2018-08-22 14:24:30 +02:00
const wxSize size = wxControl :: DoGetBestSize ();
2018-08-22 10:44:11 +02:00
if ( size . x > 1 && size . y > 1 )
return size ;
const int new_size = is_horizontal () ? 80 : 120 ;
return wxSize ( new_size , new_size );
}
2018-08-21 02:03:10 +02:00
void PrusaDoubleSlider :: SetLowerValue ( const int lower_val )
{
m_lower_value = lower_val ;
Refresh ();
Update ();
}
void PrusaDoubleSlider :: SetHigherValue ( const int higher_val )
{
m_higher_value = higher_val ;
Refresh ();
Update ();
}
void PrusaDoubleSlider :: draw_scroll_line ( wxDC & dc , const int lower_pos , const int higher_pos )
{
int width ;
int height ;
GetSize ( & width , & height );
wxCoord line_beg_x = is_horizontal () ? SLIDER_MARGIN : width * 0.5 - 1 ;
wxCoord line_beg_y = is_horizontal () ? height * 0.5 - 1 : SLIDER_MARGIN ;
wxCoord line_end_x = is_horizontal () ? width - SLIDER_MARGIN + 1 : width * 0.5 - 1 ;
wxCoord line_end_y = is_horizontal () ? height * 0.5 - 1 : height - SLIDER_MARGIN + 1 ;
wxCoord segm_beg_x = is_horizontal () ? lower_pos : width * 0.5 - 1 ;
wxCoord segm_beg_y = is_horizontal () ? height * 0.5 - 1 : lower_pos - 1 ;
wxCoord segm_end_x = is_horizontal () ? higher_pos : width * 0.5 - 1 ;
wxCoord segm_end_y = is_horizontal () ? height * 0.5 - 1 : higher_pos - 1 ;
for ( int id = 0 ; id < line_pens . size (); id ++ )
{
dc . SetPen ( * line_pens [ id ]);
dc . DrawLine ( line_beg_x , line_beg_y , line_end_x , line_end_y );
dc . SetPen ( * segm_pens [ id ]);
dc . DrawLine ( segm_beg_x , segm_beg_y , segm_end_x , segm_end_y );
if ( is_horizontal ())
line_beg_y = line_end_y = segm_beg_y = segm_end_y += 1 ;
else
line_beg_x = line_end_x = segm_beg_x = segm_end_x += 1 ;
}
}
double PrusaDoubleSlider :: get_scroll_step ()
{
const wxSize sz = GetSize ();
const int & slider_len = m_style == wxSL_HORIZONTAL ? sz . x : sz . y ;
return double ( slider_len - SLIDER_MARGIN * 2 ) / ( m_max_value - m_min_value );
}
2018-08-22 18:00:48 +02:00
// get position on the slider line from entered value
wxCoord PrusaDoubleSlider :: get_position_from_value ( const int value )
{
const double step = get_scroll_step ();
const int val = is_horizontal () ? value : m_max_value - value ;
return wxCoord ( SLIDER_MARGIN + int ( val * step + 0.5 ));
}
2018-08-21 02:03:10 +02:00
void PrusaDoubleSlider :: get_lower_and_higher_position ( int & lower_pos , int & higher_pos )
{
const double step = get_scroll_step ();
if ( is_horizontal ()) {
lower_pos = SLIDER_MARGIN + int ( m_lower_value * step + 0.5 );
higher_pos = SLIDER_MARGIN + int ( m_higher_value * step + 0.5 );
}
else {
lower_pos = SLIDER_MARGIN + int (( m_max_value - m_lower_value ) * step + 0.5 );
higher_pos = SLIDER_MARGIN + int (( m_max_value - m_higher_value ) * step + 0.5 );
}
}
2018-08-21 17:47:05 +02:00
void PrusaDoubleSlider :: draw_focus_rect ()
{
if ( ! m_is_focused )
return ;
const wxSize sz = GetSize ();
wxPaintDC dc ( this );
const wxPen pen = wxPen ( wxColour ( 128 , 128 , 10 ), 1 , wxPENSTYLE_DOT );
dc . SetPen ( pen );
dc . SetBrush ( wxBrush ( wxColour ( 0 , 0 , 0 ), wxBRUSHSTYLE_TRANSPARENT ));
dc . DrawRectangle ( 2 , 2 , sz . x - 4 , sz . y - 4 );
}
void PrusaDoubleSlider :: render ()
2018-08-21 02:03:10 +02:00
{
SetBackgroundColour ( GetParent () -> GetBackgroundColour ());
2018-08-21 17:47:05 +02:00
draw_focus_rect ();
2018-08-21 02:03:10 +02:00
2018-08-23 13:01:18 +02:00
wxPaintDC dc ( this );
wxFont font = dc . GetFont ();
const wxFont smaller_font = font . Smaller ();
dc . SetFont ( smaller_font );
2018-08-21 02:03:10 +02:00
2018-08-22 18:00:48 +02:00
const wxCoord lower_pos = get_position_from_value ( m_lower_value );
const wxCoord higher_pos = get_position_from_value ( m_higher_value );
2018-08-21 02:03:10 +02:00
// draw line
draw_scroll_line ( dc , lower_pos , higher_pos );
//lower slider:
2018-08-22 14:24:30 +02:00
draw_thumb ( dc , lower_pos , ssLower );
2018-08-21 02:03:10 +02:00
//higher slider:
2018-08-22 14:24:30 +02:00
draw_thumb ( dc , higher_pos , ssHigher );
2018-08-22 18:00:48 +02:00
//draw color print ticks
draw_ticks ( dc );
2018-08-21 02:03:10 +02:00
}
2018-08-23 13:01:18 +02:00
void PrusaDoubleSlider :: draw_action_icon ( wxDC & dc , const wxPoint pt_beg , const wxPoint pt_end )
{
const int tick = m_selection == ssLower ? m_lower_value : m_higher_value ;
wxBitmap * icon = m_is_action_icon_focesed ? & m_add_tick_off : & m_add_tick_on ;
if ( m_ticks . find ( tick ) != m_ticks . end ())
icon = m_is_action_icon_focesed ? & m_del_tick_off : & m_del_tick_on ;
wxCoord x_draw , y_draw ;
is_horizontal () ? x_draw = pt_beg . x - 0.5 * m_tick_icon_dim : y_draw = pt_beg . y - 0.5 * m_tick_icon_dim ;
if ( m_selection == ssLower )
is_horizontal () ? y_draw = pt_end . y + 3 : x_draw = pt_beg . x - m_tick_icon_dim - 2 ;
else
is_horizontal () ? y_draw = pt_beg . y - m_tick_icon_dim - 2 : x_draw = pt_end . x + 3 ;
dc . DrawBitmap ( * icon , x_draw , y_draw );
//update rect of the tick action icon
m_rect_tick_action = wxRect ( x_draw , y_draw , m_tick_icon_dim , m_tick_icon_dim );
}
void PrusaDoubleSlider :: draw_info_line_with_icon ( wxDC & dc , const wxPoint & pos , const SelectedSlider selection )
2018-08-21 17:47:05 +02:00
{
if ( m_selection == selection ) {
2018-08-23 13:01:18 +02:00
//draw info line
2018-08-21 17:47:05 +02:00
dc . SetPen ( DARK_ORANGE_PEN );
2018-08-23 13:01:18 +02:00
const wxPoint pt_beg = is_horizontal () ? wxPoint ( pos . x , pos . y - m_thumb_size . y ) : wxPoint ( pos . x - m_thumb_size . x , pos . y - 1 );
const wxPoint pt_end = is_horizontal () ? wxPoint ( pos . x , pos . y + m_thumb_size . y ) : wxPoint ( pos . x + m_thumb_size . x , pos . y - 1 );
dc . DrawLine ( pt_beg , pt_end );
//draw action icon
draw_action_icon ( dc , pt_beg , pt_end );
2018-08-21 17:47:05 +02:00
}
}
2018-08-22 14:24:30 +02:00
wxString PrusaDoubleSlider :: get_label ( const SelectedSlider & selection ) const
2018-08-21 17:47:05 +02:00
{
2018-08-22 14:24:30 +02:00
const int value = selection == ssLower ? m_lower_value : m_higher_value ;
2018-08-23 13:01:18 +02:00
if ( m_label_koef == 1.0 )
return wxString :: Format ( "%d" , value );
const wxString str = wxNumberFormatter :: ToString ( m_label_koef * value , 2 , wxNumberFormatter :: Style_None );
return wxString :: Format ( "%s \n (%d)" , str , value );
2018-08-21 17:47:05 +02:00
}
2018-08-22 14:24:30 +02:00
void PrusaDoubleSlider :: draw_thumb_text ( wxDC & dc , const wxPoint & pos , const SelectedSlider & selection ) const
2018-08-21 02:03:10 +02:00
{
2018-08-22 14:24:30 +02:00
if ( selection == ssUndef ) return ;
wxCoord text_width , text_height ;
const wxString label = get_label ( selection );
2018-08-23 13:01:18 +02:00
dc . GetMultiLineTextExtent ( label , & text_width , & text_height );
2018-08-22 14:24:30 +02:00
wxPoint text_pos ;
if ( selection == ssLower )
text_pos = is_horizontal () ? wxPoint ( pos . x + 1 , pos . y + m_thumb_size . x ) :
wxPoint ( pos . x + m_thumb_size . x + 1 , pos . y - 0.5 * text_height - 1 );
else
text_pos = is_horizontal () ? wxPoint ( pos . x - text_width - 1 , pos . y - m_thumb_size . x - text_height ) :
wxPoint ( pos . x - text_width - 1 - m_thumb_size . x , pos . y - 0.5 * text_height + 1 );
dc . DrawText ( label , text_pos );
}
void PrusaDoubleSlider :: draw_thumb_item ( wxDC & dc , const wxPoint & pos , const SelectedSlider & selection )
{
wxCoord x_draw , y_draw ;
if ( selection == ssLower ) {
if ( is_horizontal ()) {
x_draw = pos . x - m_thumb_size . x ;
y_draw = pos . y - int ( 0.5 * m_thumb_size . y );
}
else {
x_draw = pos . x - int ( 0.5 * m_thumb_size . x );
y_draw = pos . y ;
}
}
else {
if ( is_horizontal ()) {
x_draw = pos . x ;
y_draw = pos . y - int ( 0.5 * m_thumb_size . y );
}
else {
x_draw = pos . x - int ( 0.5 * m_thumb_size . x );
y_draw = pos . y - m_thumb_size . y ;
}
}
dc . DrawBitmap ( selection == ssLower ? m_thumb_lower : m_thumb_higher , x_draw , y_draw );
// Update thumb rect
update_thumb_rect ( x_draw , y_draw , selection );
}
void PrusaDoubleSlider :: draw_thumb ( wxDC & dc , const wxCoord & pos_coord , const SelectedSlider & selection )
{
//calculate thumb position on slider line
int width , height ;
GetSize ( & width , & height );
const wxPoint pos = is_horizontal () ? wxPoint ( pos_coord , height * 0.5 ) : wxPoint ( 0.5 * width , pos_coord );
2018-08-21 02:03:10 +02:00
// Draw thumb
2018-08-22 14:24:30 +02:00
draw_thumb_item ( dc , pos , selection );
2018-08-21 17:47:05 +02:00
// Draw info_line
2018-08-23 13:01:18 +02:00
draw_info_line_with_icon ( dc , pos , selection );
2018-08-21 02:03:10 +02:00
// Draw thumb text
2018-08-22 14:24:30 +02:00
draw_thumb_text ( dc , pos , selection );
2018-08-21 02:03:10 +02:00
}
2018-08-22 18:00:48 +02:00
void PrusaDoubleSlider :: draw_ticks ( wxDC & dc )
{
dc . SetPen ( DARK_GREY_PEN );
int height , width ;
GetSize ( & width , & height );
const wxCoord mid = is_horizontal () ? 0.5 * height : 0.5 * width ;
for ( auto tick : m_ticks )
{
const wxCoord pos = get_position_from_value ( tick );
is_horizontal () ? dc . DrawLine ( pos , mid - 14 , pos , mid - 9 ) :
dc . DrawLine ( mid - 14 , pos - 1 , mid - 9 , pos - 1 );
is_horizontal () ? dc . DrawLine ( pos , mid + 14 , pos , mid + 9 ) :
dc . DrawLine ( mid + 14 , pos - 1 , mid + 9 , pos - 1 );
}
}
2018-08-22 14:24:30 +02:00
void PrusaDoubleSlider :: update_thumb_rect ( const wxCoord & begin_x , const wxCoord & begin_y , const SelectedSlider & selection )
2018-08-21 02:03:10 +02:00
{
2018-08-22 14:24:30 +02:00
const wxRect & rect = wxRect ( begin_x , begin_y , m_thumb_size . x , m_thumb_size . y );
if ( selection == ssLower )
m_rect_lower_thumb = rect ;
else
m_rect_higher_thumb = rect ;
2018-08-21 02:03:10 +02:00
}
int PrusaDoubleSlider :: position_to_value ( wxDC & dc , const wxCoord x , const wxCoord y )
{
int width , height ;
dc . GetSize ( & width , & height );
const double step = get_scroll_step ();
if ( is_horizontal ())
return int ( double ( x - SLIDER_MARGIN ) / step + 0.5 );
else
return int ( m_min_value + double ( height - SLIDER_MARGIN - y ) / step + 0.5 );
}
void PrusaDoubleSlider :: detect_selected_slider ( const wxPoint & pt , const bool is_mouse_wheel /*= false*/ )
{
if ( is_mouse_wheel )
{
if ( is_horizontal ()) {
m_selection = pt . x <= m_rect_lower_thumb . GetRight () ? ssLower :
pt . x >= m_rect_higher_thumb . GetLeft () ? ssHigher : ssUndef ;
}
else {
m_selection = pt . y >= m_rect_lower_thumb . GetTop () ? ssLower :
pt . y <= m_rect_higher_thumb . GetBottom () ? ssHigher : ssUndef ;
}
return ;
}
m_selection = is_point_in_rect ( pt , m_rect_lower_thumb ) ? ssLower :
is_point_in_rect ( pt , m_rect_higher_thumb ) ? ssHigher : ssUndef ;
}
bool PrusaDoubleSlider :: is_point_in_rect ( const wxPoint & pt , const wxRect & rect )
{
if ( rect . GetLeft () <= pt . x && pt . x <= rect . GetRight () &&
rect . GetTop () <= pt . y && pt . y <= rect . GetBottom ())
return true ;
return false ;
}
void PrusaDoubleSlider :: OnLeftDown ( wxMouseEvent & event )
{
wxClientDC dc ( this );
wxPoint pos = event . GetLogicalPosition ( dc );
2018-08-23 13:01:18 +02:00
if ( is_point_in_rect ( pos , m_rect_tick_action )) {
OnRightDown ( event );
return ;
}
m_is_left_down = true ;
2018-08-21 02:03:10 +02:00
detect_selected_slider ( pos );
2018-08-22 14:24:30 +02:00
Refresh ();
Update ();
2018-08-21 02:03:10 +02:00
event . Skip ();
}
void PrusaDoubleSlider :: correct_lower_value ()
{
if ( m_lower_value < m_min_value )
m_lower_value = m_min_value ;
else if ( m_lower_value >= m_higher_value && m_lower_value <= m_max_value )
m_higher_value = m_lower_value ;
else if ( m_lower_value > m_max_value )
m_lower_value = m_max_value ;
}
void PrusaDoubleSlider :: correct_higher_value ()
{
if ( m_higher_value > m_max_value )
m_higher_value = m_max_value ;
else if ( m_higher_value <= m_lower_value && m_higher_value >= m_min_value )
m_lower_value = m_higher_value ;
else if ( m_higher_value < m_min_value )
m_higher_value = m_min_value ;
}
void PrusaDoubleSlider :: OnMotion ( wxMouseEvent & event )
{
2018-08-23 13:01:18 +02:00
if ( m_selection == ssUndef )
2018-08-21 02:03:10 +02:00
return ;
wxClientDC dc ( this );
wxPoint pos = event . GetLogicalPosition ( dc );
2018-08-23 13:01:18 +02:00
if ( ! m_is_left_down ){
m_is_action_icon_focesed = is_point_in_rect ( pos , m_rect_tick_action );
2018-08-21 02:03:10 +02:00
}
2018-08-23 13:01:18 +02:00
else {
if ( m_selection == ssLower ) {
m_lower_value = position_to_value ( dc , pos . x , pos . y );
correct_lower_value ();
}
else if ( m_selection == ssHigher ) {
m_higher_value = position_to_value ( dc , pos . x , pos . y );
correct_higher_value ();
}
2018-08-21 02:03:10 +02:00
}
Refresh ();
Update ();
event . Skip ();
}
void PrusaDoubleSlider :: OnLeftUp ( wxMouseEvent & event )
{
m_is_left_down = false ;
2018-08-21 17:47:05 +02:00
Refresh ();
Update ();
2018-08-21 02:03:10 +02:00
event . Skip ();
wxCommandEvent e ( wxEVT_SCROLL_CHANGED );
e . SetEventObject ( this );
ProcessWindowEvent ( e );
}
2018-08-21 17:47:05 +02:00
void PrusaDoubleSlider :: OnEnterWin ( wxMouseEvent & event )
2018-08-21 02:03:10 +02:00
{
2018-08-21 17:47:05 +02:00
m_is_focused = true ;
Refresh ();
Update ();
event . Skip ();
}
2018-08-21 02:03:10 +02:00
2018-08-21 17:47:05 +02:00
void PrusaDoubleSlider :: OnLeaveWin ( wxMouseEvent & event )
{
m_is_focused = false ;
OnLeftUp ( event );
}
2018-08-21 02:03:10 +02:00
2018-08-21 17:47:05 +02:00
// "condition" have to be true for:
// - value increase (if wxSL_VERTICAL)
// - value decrease (if wxSL_HORIZONTAL)
void PrusaDoubleSlider :: move_current_thumb ( const bool condition )
{
int delta = condition ? - 1 : 1 ;
2018-08-21 02:03:10 +02:00
if ( is_horizontal ())
delta *= - 1 ;
2018-08-21 17:47:05 +02:00
2018-08-21 02:03:10 +02:00
if ( m_selection == ssLower ) {
m_lower_value -= delta ;
correct_lower_value ();
}
else if ( m_selection == ssHigher ) {
m_higher_value -= delta ;
correct_higher_value ();
}
Refresh ();
Update ();
wxCommandEvent e ( wxEVT_SCROLL_CHANGED );
e . SetEventObject ( this );
ProcessWindowEvent ( e );
}
2018-08-21 17:47:05 +02:00
2018-08-23 13:01:18 +02:00
void PrusaDoubleSlider :: action_tick ( const TicksAction action )
{
if ( m_selection == ssUndef )
return ;
const int tick = m_selection == ssLower ? m_lower_value : m_higher_value ;
const auto it = m_ticks . find ( tick );
if ( it == m_ticks . end () && action == taAdd )
m_ticks . insert ( tick );
else if ( it != m_ticks . end () && action == taDel )
m_ticks . erase ( tick );
else
return ;
Refresh ();
Update ();
}
2018-08-21 17:47:05 +02:00
void PrusaDoubleSlider :: OnWheel ( wxMouseEvent & event )
{
wxClientDC dc ( this );
wxPoint pos = event . GetLogicalPosition ( dc );
detect_selected_slider ( pos , true );
if ( m_selection == ssUndef )
return ;
move_current_thumb ( event . GetWheelRotation () > 0 );
}
void PrusaDoubleSlider :: OnKeyDown ( wxKeyEvent & event )
{
2018-08-23 13:01:18 +02:00
const int key = event . GetKeyCode ();
if ( key == '+' || key == WXK_NUMPAD_ADD )
action_tick ( taAdd );
else if ( key == '-' || key == 390 || key == WXK_DELETE || key == WXK_BACK )
action_tick ( taDel );
else if ( is_horizontal ())
2018-08-21 17:47:05 +02:00
{
2018-08-23 13:01:18 +02:00
if ( key == WXK_LEFT || key == WXK_RIGHT )
move_current_thumb ( key == WXK_LEFT );
else if ( key == WXK_UP || key == WXK_DOWN ){
m_selection = key == WXK_UP ? ssHigher : ssLower ;
2018-08-21 17:47:05 +02:00
Refresh ();
}
}
else {
2018-08-23 13:01:18 +02:00
if ( key == WXK_LEFT || key == WXK_RIGHT ) {
m_selection = key == WXK_LEFT ? ssHigher : ssLower ;
2018-08-21 17:47:05 +02:00
Refresh ();
}
2018-08-23 13:01:18 +02:00
else if ( key == WXK_UP || key == WXK_DOWN )
move_current_thumb ( key == WXK_UP );
2018-08-21 17:47:05 +02:00
}
}
2018-08-22 18:00:48 +02:00
void PrusaDoubleSlider :: OnRightDown ( wxMouseEvent & event )
{
if ( m_selection == ssUndef )
return ;
2018-08-23 13:01:18 +02:00
const int new_tick = m_selection == ssLower ? m_lower_value : m_higher_value ;
2018-08-22 18:00:48 +02:00
if ( ! m_ticks . insert ( new_tick ). second )
m_ticks . erase ( new_tick );
Refresh ();
Update ();
}
2018-05-04 18:32:20 +02:00
// *****************************************************************************