1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/propgrid/manager.cpp
3 // Purpose: wxPropertyGridManager
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/object.h"
25 #include "wx/string.h"
28 #include "wx/window.h"
33 #include "wx/cursor.h"
34 #include "wx/settings.h"
35 #include "wx/textctrl.h"
37 #include "wx/statusbr.h"
41 // This define is necessary to prevent macro clearing
42 #define __wxPG_SOURCE_FILE__
44 #include "wx/propgrid/propgrid.h"
46 #include "wx/propgrid/manager.h"
49 #define wxPG_MAN_ALTERNATE_BASE_ID 11249 // Needed for wxID_ANY madnesss
52 // -----------------------------------------------------------------------
54 // For wxMSW cursor consistency, we must do mouse capturing even
55 // when using custom controls
57 #define BEGIN_MOUSE_CAPTURE \
58 if ( !(m_iFlags & wxPG_FL_MOUSE_CAPTURED) ) \
61 m_iFlags |= wxPG_FL_MOUSE_CAPTURED; \
64 #define END_MOUSE_CAPTURE \
65 if ( m_iFlags & wxPG_FL_MOUSE_CAPTURED ) \
68 m_iFlags &= ~(wxPG_FL_MOUSE_CAPTURED); \
71 // -----------------------------------------------------------------------
72 // wxPropertyGridManager
73 // -----------------------------------------------------------------------
75 const char wxPropertyGridManagerNameStr
[] = "wxPropertyGridManager";
78 // Categoric Mode Icon
79 static const char* gs_xpm_catmode
[] = {
104 // Alphabetic Mode Icon
105 static const char* gs_xpm_noncatmode
[] = {
130 // Default Page Icon.
131 static const char* gs_xpm_defpage
[] = {
156 // -----------------------------------------------------------------------
157 // wxPropertyGridPage
158 // -----------------------------------------------------------------------
161 IMPLEMENT_CLASS(wxPropertyGridPage
, wxEvtHandler
)
164 BEGIN_EVENT_TABLE(wxPropertyGridPage
, wxEvtHandler
)
168 wxPropertyGridPage::wxPropertyGridPage()
169 : wxEvtHandler(), wxPropertyGridInterface(), wxPropertyGridPageState()
171 m_pState
= this; // wxPropertyGridInterface to point to State
176 wxPropertyGridPage::~wxPropertyGridPage()
180 void wxPropertyGridPage::Clear()
182 GetStatePtr()->DoClear();
185 wxSize
wxPropertyGridPage::FitColumns()
187 wxSize sz
= DoFitColumns();
191 void wxPropertyGridPage::RefreshProperty( wxPGProperty
* p
)
194 m_manager
->RefreshProperty(p
);
197 void wxPropertyGridPage::OnShow()
201 void wxPropertyGridPage::SetSplitterPosition( int splitterPos
, int col
)
203 wxPropertyGrid
* pg
= GetGrid();
204 if ( pg
->GetState() == this )
205 pg
->SetSplitterPosition(splitterPos
);
207 DoSetSplitterPosition(splitterPos
, col
, false);
210 void wxPropertyGridPage::DoSetSplitterPosition( int pos
,
213 bool fromAutoCenter
)
215 if ( allPages
&& m_manager
->GetPageCount() )
216 m_manager
->SetSplitterPosition( pos
, splitterColumn
);
218 wxPropertyGridPageState::DoSetSplitterPosition( pos
,
224 // -----------------------------------------------------------------------
225 // wxPropertyGridManager
226 // -----------------------------------------------------------------------
228 // Final default splitter y is client height minus this.
229 #define wxPGMAN_DEFAULT_NEGATIVE_SPLITTER_Y 100
231 // -----------------------------------------------------------------------
233 IMPLEMENT_CLASS(wxPropertyGridManager
, wxPanel
)
235 #define ID_ADVTOOLBAR_OFFSET 1
236 #define ID_ADVHELPCAPTION_OFFSET 2
237 #define ID_ADVHELPCONTENT_OFFSET 3
238 //#define ID_ADVBUTTON_OFFSET 4
239 #define ID_ADVTBITEMSBASE_OFFSET 5 // Must be last.
241 // -----------------------------------------------------------------------
243 BEGIN_EVENT_TABLE(wxPropertyGridManager
, wxPanel
)
244 EVT_MOTION(wxPropertyGridManager::OnMouseMove
)
245 EVT_SIZE(wxPropertyGridManager::OnResize
)
246 EVT_PAINT(wxPropertyGridManager::OnPaint
)
247 EVT_LEFT_DOWN(wxPropertyGridManager::OnMouseClick
)
248 EVT_LEFT_UP(wxPropertyGridManager::OnMouseUp
)
249 EVT_LEAVE_WINDOW(wxPropertyGridManager::OnMouseEntry
)
250 //EVT_ENTER_WINDOW(wxPropertyGridManager::OnMouseEntry)
253 // -----------------------------------------------------------------------
255 wxPropertyGridManager::wxPropertyGridManager()
261 // -----------------------------------------------------------------------
263 wxPropertyGridManager::wxPropertyGridManager( wxWindow
*parent
,
268 const wxString
& name
)
272 Create(parent
,id
,pos
,size
,style
,name
);
275 // -----------------------------------------------------------------------
277 bool wxPropertyGridManager::Create( wxWindow
*parent
,
282 const wxString
& name
)
285 m_pPropGrid
= CreatePropertyGrid();
287 bool res
= wxPanel::Create( parent
, id
, pos
, size
,
288 (style
&0xFFFF0000)|wxWANTS_CHARS
,
295 // -----------------------------------------------------------------------
298 // Initialize values to defaults
300 void wxPropertyGridManager::Init1()
308 m_pTxtHelpCaption
= NULL
;
309 m_pTxtHelpContent
= NULL
;
315 m_width
= m_height
= 0;
317 m_splitterHeight
= 5;
319 m_splitterY
= -1; // -1 causes default to be set.
321 m_nextDescBoxSize
= -1;
329 // -----------------------------------------------------------------------
331 // These flags are always used in wxPropertyGrid integrated in wxPropertyGridManager.
333 #define wxPG_MAN_PROPGRID_FORCED_FLAGS (wxSIMPLE_BORDER| \
334 wxNO_FULL_REPAINT_ON_RESIZE| \
337 #define wxPG_MAN_PROPGRID_FORCED_FLAGS (wxNO_BORDER| \
338 wxNO_FULL_REPAINT_ON_RESIZE| \
342 // Which flags can be passed to underlying wxPropertyGrid.
343 #define wxPG_MAN_PASS_FLAGS_MASK (0xFFF0|wxTAB_TRAVERSAL)
346 // Initialize after parent etc. set
348 void wxPropertyGridManager::Init2( int style
)
351 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
354 m_windowStyle
|= (style
&0x0000FFFF);
356 wxSize csz
= GetClientSize();
358 m_cursorSizeNS
= wxCursor(wxCURSOR_SIZENS
);
360 // Prepare the first page
361 // NB: But just prepare - you still need to call Add/InsertPage
362 // to actually add properties on it.
363 wxPropertyGridPage
* pd
= new wxPropertyGridPage();
364 pd
->m_isDefault
= true;
365 pd
->m_manager
= this;
366 wxPropertyGridPageState
* state
= pd
->GetStatePtr();
367 state
->m_pPropGrid
= m_pPropGrid
;
368 m_arrPages
.push_back( pd
);
369 m_pPropGrid
->m_pState
= state
;
371 wxWindowID baseId
= GetId();
372 wxWindowID useId
= baseId
;
374 baseId
= wxPG_MAN_ALTERNATE_BASE_ID
;
379 // Smaller controls on Mac
380 SetWindowVariant(wxWINDOW_VARIANT_SMALL
);
383 // Create propertygrid.
384 m_pPropGrid
->Create(this,baseId
,wxPoint(0,0),csz
,
385 (m_windowStyle
&wxPG_MAN_PASS_FLAGS_MASK
)
386 |wxPG_MAN_PROPGRID_FORCED_FLAGS
);
388 m_pPropGrid
->m_eventObject
= this;
390 m_pPropGrid
->SetId(useId
);
392 m_pPropGrid
->m_iFlags
|= wxPG_FL_IN_MANAGER
;
394 m_pState
= m_pPropGrid
->m_pState
;
396 m_pPropGrid
->SetExtraStyle(wxPG_EX_INIT_NOCAT
);
398 m_nextTbInd
= baseId
+ID_ADVTBITEMSBASE_OFFSET
+ 2;
401 // Connect to property grid onselect event.
402 // NB: Even if wxID_ANY is used, this doesn't connect properly in wxPython
403 // (see wxPropertyGridManager::ProcessEvent).
404 Connect(m_pPropGrid
->GetId()/*wxID_ANY*/,
406 wxPropertyGridEventHandler(wxPropertyGridManager::OnPropertyGridSelect
) );
408 // Connect to toolbar button events.
409 Connect(baseId
+ID_ADVTBITEMSBASE_OFFSET
,baseId
+ID_ADVTBITEMSBASE_OFFSET
+50,
410 wxEVT_COMMAND_TOOL_CLICKED
,
411 wxCommandEventHandler(wxPropertyGridManager::OnToolbarClick
) );
413 // Optional initial controls.
416 m_iFlags
|= wxPG_FL_INITIALIZED
;
420 // -----------------------------------------------------------------------
422 wxPropertyGridManager::~wxPropertyGridManager()
426 m_pPropGrid
->DoSelectProperty(NULL
);
427 m_pPropGrid
->m_pState
= NULL
;
430 for ( i
=0; i
<m_arrPages
.size(); i
++ )
432 delete m_arrPages
[i
];
438 // -----------------------------------------------------------------------
440 wxPropertyGrid
* wxPropertyGridManager::CreatePropertyGrid() const
442 return new wxPropertyGrid();
445 // -----------------------------------------------------------------------
447 void wxPropertyGridManager::SetId( wxWindowID winid
)
449 wxWindow::SetId(winid
);
451 // TODO: Reconnect propgrid event handler(s).
453 m_pPropGrid
->SetId(winid
);
456 // -----------------------------------------------------------------------
458 wxSize
wxPropertyGridManager::DoGetBestSize() const
460 return wxSize(60,150);
463 // -----------------------------------------------------------------------
465 bool wxPropertyGridManager::SetFont( const wxFont
& font
)
467 bool res
= wxWindow::SetFont(font
);
468 m_pPropGrid
->SetFont(font
);
470 // TODO: Need to do caption recacalculations for other pages as well.
472 for ( i
=0; i
<m_arrPages
.size(); i
++ )
474 wxPropertyGridPage
* page
= GetPage(i
);
476 if ( page
!= m_pPropGrid
->GetState() )
477 page
->CalculateFontAndBitmapStuff(-1);
483 // -----------------------------------------------------------------------
485 void wxPropertyGridManager::SetExtraStyle( long exStyle
)
487 wxWindow::SetExtraStyle( exStyle
);
488 m_pPropGrid
->SetExtraStyle( exStyle
& 0xFFFFF000 );
490 if ( (exStyle
& wxPG_EX_NO_FLAT_TOOLBAR
) && m_pToolbar
)
495 // -----------------------------------------------------------------------
497 void wxPropertyGridManager::Freeze()
499 m_pPropGrid
->Freeze();
503 // -----------------------------------------------------------------------
505 void wxPropertyGridManager::Thaw()
511 // -----------------------------------------------------------------------
513 void wxPropertyGridManager::SetWindowStyleFlag( long style
)
515 int oldWindowStyle
= GetWindowStyleFlag();
517 wxWindow::SetWindowStyleFlag( style
);
518 m_pPropGrid
->SetWindowStyleFlag( (m_pPropGrid
->GetWindowStyleFlag()&~(wxPG_MAN_PASS_FLAGS_MASK
)) |
519 (style
&wxPG_MAN_PASS_FLAGS_MASK
) );
521 // Need to re-position windows?
522 if ( (oldWindowStyle
& (wxPG_TOOLBAR
|wxPG_DESCRIPTION
)) !=
523 (style
& (wxPG_TOOLBAR
|wxPG_DESCRIPTION
)) )
529 // -----------------------------------------------------------------------
531 bool wxPropertyGridManager::Reparent( wxWindowBase
*newParent
)
534 m_pPropGrid
->OnTLPChanging((wxWindow
*)newParent
);
536 bool res
= wxPanel::Reparent(newParent
);
541 // -----------------------------------------------------------------------
543 // Actually shows given page.
544 bool wxPropertyGridManager::DoSelectPage( int index
)
546 // -1 means no page was selected
547 //wxASSERT( m_selPage >= 0 );
549 wxCHECK_MSG( index
>= -1 && index
< (int)GetPageCount(),
551 wxT("invalid page index") );
553 if ( m_selPage
== index
)
556 if ( m_pPropGrid
->m_selected
)
558 if ( !m_pPropGrid
->ClearSelection() )
562 wxPropertyGridPage
* prevPage
;
564 if ( m_selPage
>= 0 )
565 prevPage
= GetPage(m_selPage
);
567 prevPage
= m_emptyPage
;
569 wxPropertyGridPage
* nextPage
;
573 nextPage
= m_arrPages
[index
];
581 m_emptyPage
= new wxPropertyGridPage();
582 m_emptyPage
->m_pPropGrid
= m_pPropGrid
;
585 nextPage
= m_emptyPage
;
588 m_iFlags
|= wxPG_FL_DESC_REFRESH_REQUIRED
;
590 m_pPropGrid
->SwitchState( nextPage
->GetStatePtr() );
592 m_pState
= m_pPropGrid
->m_pState
;
600 m_pToolbar
->ToggleTool( nextPage
->m_id
, true );
602 m_pToolbar
->ToggleTool( prevPage
->m_id
, false );
609 // -----------------------------------------------------------------------
611 // Changes page *and* set the target page for insertion operations.
612 void wxPropertyGridManager::SelectPage( int index
)
617 // -----------------------------------------------------------------------
619 int wxPropertyGridManager::GetPageByName( const wxString
& name
) const
622 for ( i
=0; i
<GetPageCount(); i
++ )
624 if ( m_arrPages
[i
]->m_label
== name
)
630 // -----------------------------------------------------------------------
632 int wxPropertyGridManager::GetPageByState( const wxPropertyGridPageState
* pState
) const
637 for ( i
=0; i
<GetPageCount(); i
++ )
639 if ( pState
== m_arrPages
[i
]->GetStatePtr() )
646 // -----------------------------------------------------------------------
648 const wxString
& wxPropertyGridManager::GetPageName( int index
) const
650 wxASSERT( index
>= 0 && index
< (int)GetPageCount() );
651 return m_arrPages
[index
]->m_label
;
654 // -----------------------------------------------------------------------
656 wxPropertyGridPageState
* wxPropertyGridManager::GetPageState( int page
) const
658 // Do not change this into wxCHECK because returning NULL is important
659 // for wxPropertyGridInterface page enumeration mechanics.
660 if ( page
>= (int)GetPageCount() )
665 return m_arrPages
[page
];
668 // -----------------------------------------------------------------------
670 void wxPropertyGridManager::Clear()
672 m_pPropGrid
->ClearSelection(false);
674 m_pPropGrid
->Freeze();
677 for ( i
=(int)GetPageCount()-1; i
>=0; i
-- )
681 m_nextTbInd
= m_baseId
+ID_ADVTBITEMSBASE_OFFSET
+ 2;
686 // -----------------------------------------------------------------------
688 void wxPropertyGridManager::ClearPage( int page
)
690 wxASSERT( page
>= 0 );
691 wxASSERT( page
< (int)GetPageCount() );
693 if ( page
>= 0 && page
< (int)GetPageCount() )
695 wxPropertyGridPageState
* state
= m_arrPages
[page
];
697 if ( state
== m_pPropGrid
->GetState() )
698 m_pPropGrid
->Clear();
704 // -----------------------------------------------------------------------
706 int wxPropertyGridManager::GetColumnCount( int page
) const
708 wxASSERT( page
>= -1 );
709 wxASSERT( page
< (int)GetPageCount() );
711 return GetPageState(page
)->GetColumnCount();
714 // -----------------------------------------------------------------------
716 void wxPropertyGridManager::SetColumnCount( int colCount
, int page
)
718 wxASSERT( page
>= -1 );
719 wxASSERT( page
< (int)GetPageCount() );
721 GetPageState(page
)->SetColumnCount( colCount
);
722 GetGrid()->Refresh();
724 // -----------------------------------------------------------------------
726 size_t wxPropertyGridManager::GetPageCount() const
728 if ( !(m_iFlags
& wxPG_MAN_FL_PAGE_INSERTED
) )
731 return m_arrPages
.size();
734 // -----------------------------------------------------------------------
736 wxPropertyGridPage
* wxPropertyGridManager::InsertPage( int index
,
737 const wxString
& label
,
739 wxPropertyGridPage
* pageObj
)
742 index
= GetPageCount();
744 wxCHECK_MSG( (size_t)index
== GetPageCount(), NULL
,
745 wxT("wxPropertyGridManager currently only supports appending pages (due to wxToolBar limitation)."));
747 bool needInit
= true;
748 bool isPageInserted
= m_iFlags
& wxPG_MAN_FL_PAGE_INSERTED
? true : false;
750 wxASSERT( index
== 0 || isPageInserted
);
754 // No custom page object was given, so we will either re-use the default base
755 // page (if index==0), or create a new default page object.
756 if ( !isPageInserted
)
758 pageObj
= GetPage(0);
759 // Of course, if the base page was custom, we need to delete and
761 if ( !pageObj
->m_isDefault
)
764 pageObj
= new wxPropertyGridPage();
765 m_arrPages
[0] = pageObj
;
771 pageObj
= new wxPropertyGridPage();
773 pageObj
->m_isDefault
= true;
777 if ( !isPageInserted
)
779 // Initial page needs to be deleted and replaced
781 m_arrPages
[0] = pageObj
;
782 m_pPropGrid
->m_pState
= pageObj
->GetStatePtr();
786 wxPropertyGridPageState
* state
= pageObj
->GetStatePtr();
788 pageObj
->m_manager
= this;
792 state
->m_pPropGrid
= m_pPropGrid
;
793 state
->InitNonCatMode();
796 if ( label
.length() )
798 wxASSERT_MSG( !pageObj
->m_label
.length(),
799 wxT("If page label is given in constructor, empty label must be given in AddPage"));
800 pageObj
->m_label
= label
;
803 pageObj
->m_id
= m_nextTbInd
;
805 if ( isPageInserted
)
806 m_arrPages
.push_back( pageObj
);
809 if ( m_windowStyle
& wxPG_TOOLBAR
)
814 if ( !(GetExtraStyle()&wxPG_EX_HIDE_PAGE_BUTTONS
) )
816 wxASSERT( m_pToolbar
);
818 // Add separator before first page.
819 if ( GetPageCount() < 2 && (GetExtraStyle()&wxPG_EX_MODE_BUTTONS
) &&
820 m_pToolbar
->GetToolsCount() < 3 )
821 m_pToolbar
->AddSeparator();
823 if ( &bmp
!= &wxNullBitmap
)
824 m_pToolbar
->AddTool(m_nextTbInd
,label
,bmp
,label
,wxITEM_RADIO
);
825 //m_pToolbar->InsertTool(index+3,m_nextTbInd,bmp);
827 m_pToolbar
->AddTool(m_nextTbInd
,label
,wxBitmap( (const char**)gs_xpm_defpage
),
832 m_pToolbar
->Realize();
839 // If selected page was above the point of insertion, fix the current page index
840 if ( isPageInserted
)
842 if ( m_selPage
>= index
)
849 // Set this value only when adding the first page
855 m_iFlags
|= wxPG_MAN_FL_PAGE_INSERTED
;
857 wxASSERT( pageObj
->GetGrid() );
862 // -----------------------------------------------------------------------
864 bool wxPropertyGridManager::IsAnyModified() const
867 for ( i
=0; i
<GetPageCount(); i
++ )
869 if ( m_arrPages
[i
]->GetStatePtr()->m_anyModified
)
875 // -----------------------------------------------------------------------
877 bool wxPropertyGridManager::IsPageModified( size_t index
) const
879 if ( m_arrPages
[index
]->GetStatePtr()->m_anyModified
)
884 // -----------------------------------------------------------------------
886 wxPGProperty
* wxPropertyGridManager::GetPageRoot( int index
) const
888 wxASSERT( index
>= 0 );
889 wxASSERT( index
< (int)m_arrPages
.size() );
891 return m_arrPages
[index
]->GetStatePtr()->m_properties
;
894 // -----------------------------------------------------------------------
896 bool wxPropertyGridManager::RemovePage( int page
)
898 wxCHECK_MSG( (page
>= 0) && (page
< (int)GetPageCount()),
900 wxT("invalid page index") );
902 wxPropertyGridPage
* pd
= m_arrPages
[page
];
904 if ( m_arrPages
.size() == 1 )
906 // Last page: do not remove page entry
907 m_pPropGrid
->Clear();
909 m_iFlags
&= ~wxPG_MAN_FL_PAGE_INSERTED
;
913 // Change selection if current is page
914 else if ( page
== m_selPage
)
916 if ( !m_pPropGrid
->ClearSelection() )
919 // Substitute page to select
920 int substitute
= page
- 1;
921 if ( substitute
< 0 )
922 substitute
= page
+ 1;
924 SelectPage(substitute
);
927 // Remove toolbar icon
929 if ( HasFlag(wxPG_TOOLBAR
) )
931 wxASSERT( m_pToolbar
);
933 int toolPos
= GetExtraStyle() & wxPG_EX_MODE_BUTTONS
? 3 : 0;
936 // Delete separator as well, for consistency
937 if ( (GetExtraStyle() & wxPG_EX_MODE_BUTTONS
) &&
938 GetPageCount() == 1 )
939 m_pToolbar
->DeleteToolByPos(2);
941 m_pToolbar
->DeleteToolByPos(toolPos
);
945 if ( m_arrPages
.size() > 1 )
947 m_arrPages
.erase(m_arrPages
.begin() + page
);
951 // Adjust indexes that were above removed
952 if ( m_selPage
> page
)
958 // -----------------------------------------------------------------------
960 bool wxPropertyGridManager::ProcessEvent( wxEvent
& event
)
962 int evtType
= event
.GetEventType();
964 // NB: For some reason, under wxPython, Connect in Init doesn't work properly,
965 // so we'll need to call OnPropertyGridSelect manually. Multiple call's
966 // don't really matter.
967 if ( evtType
== wxEVT_PG_SELECTED
)
968 OnPropertyGridSelect((wxPropertyGridEvent
&)event
);
970 // Property grid events get special attention
971 if ( evtType
>= wxPG_BASE_EVT_TYPE
&&
972 evtType
< (wxPG_MAX_EVT_TYPE
) &&
975 wxPropertyGridPage
* page
= GetPage(m_selPage
);
976 wxPropertyGridEvent
* pgEvent
= wxDynamicCast(&event
, wxPropertyGridEvent
);
978 // Add property grid events to appropriate custom pages
979 // but stop propagating to parent if page says it is
980 // handling everything.
981 if ( pgEvent
&& !page
->m_isDefault
)
983 /*if ( pgEvent->IsPending() )
984 page->AddPendingEvent(event);
986 page
->ProcessEvent(event
);
988 if ( page
->IsHandlingAllEvents() )
989 event
.StopPropagation();
993 return wxPanel::ProcessEvent(event
);
996 // -----------------------------------------------------------------------
998 void wxPropertyGridManager::RepaintDescBoxDecorations( wxDC
& dc
,
1004 wxColour bgcol
= GetBackgroundColour();
1007 int rectHeight
= m_splitterHeight
;
1008 dc
.DrawRectangle(0, newSplitterY
, newWidth
, rectHeight
);
1009 dc
.SetPen( wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
) );
1010 int splitterBottom
= newSplitterY
+ m_splitterHeight
- 1;
1011 int boxHeight
= newHeight
- splitterBottom
;
1012 if ( boxHeight
> 1 )
1013 dc
.DrawRectangle(0, splitterBottom
, newWidth
, boxHeight
);
1015 dc
.DrawLine(0, splitterBottom
, newWidth
, splitterBottom
);
1018 // -----------------------------------------------------------------------
1020 void wxPropertyGridManager::UpdateDescriptionBox( int new_splittery
, int new_width
, int new_height
)
1022 int use_hei
= new_height
;
1025 // Fix help control positions.
1026 int cap_hei
= m_pPropGrid
->m_fontHeight
;
1027 int cap_y
= new_splittery
+m_splitterHeight
+5;
1028 int cnt_y
= cap_y
+cap_hei
+3;
1029 int sub_cap_hei
= cap_y
+cap_hei
-use_hei
;
1030 int cnt_hei
= use_hei
-cnt_y
;
1031 if ( sub_cap_hei
> 0 )
1033 cap_hei
-= sub_cap_hei
;
1038 m_pTxtHelpCaption
->Show( false );
1039 m_pTxtHelpContent
->Show( false );
1043 m_pTxtHelpCaption
->SetSize(3,cap_y
,new_width
-6,cap_hei
);
1044 m_pTxtHelpCaption
->Wrap(-1);
1045 m_pTxtHelpCaption
->Show( true );
1048 m_pTxtHelpContent
->Show( false );
1052 m_pTxtHelpContent
->SetSize(3,cnt_y
,new_width
-6,cnt_hei
);
1053 m_pTxtHelpContent
->Show( true );
1057 wxRect
r(0, new_splittery
, new_width
, new_height
-new_splittery
);
1060 m_splitterY
= new_splittery
;
1062 m_iFlags
&= ~(wxPG_FL_DESC_REFRESH_REQUIRED
);
1065 // -----------------------------------------------------------------------
1067 void wxPropertyGridManager::RecalculatePositions( int width
, int height
)
1070 int propgridBottomY
= height
;
1072 // Toolbar at the top.
1076 m_pToolbar
->SetSize(0, 0, width
, -1);
1077 propgridY
+= m_pToolbar
->GetSize().y
;
1082 if ( m_pTxtHelpCaption
)
1084 int new_splittery
= m_splitterY
;
1087 if ( ( m_splitterY
>= 0 || m_nextDescBoxSize
) && m_height
> 32 )
1089 if ( m_nextDescBoxSize
>= 0 )
1091 new_splittery
= m_height
- m_nextDescBoxSize
- m_splitterHeight
;
1092 m_nextDescBoxSize
= -1;
1094 new_splittery
+= (height
-m_height
);
1098 new_splittery
= height
- wxPGMAN_DEFAULT_NEGATIVE_SPLITTER_Y
;
1099 if ( new_splittery
< 32 )
1103 // Check if beyond minimum.
1104 int nspy_min
= propgridY
+ m_pPropGrid
->m_lineHeight
;
1105 if ( new_splittery
< nspy_min
)
1106 new_splittery
= nspy_min
;
1108 propgridBottomY
= new_splittery
;
1110 UpdateDescriptionBox( new_splittery
, width
, height
);
1113 if ( m_iFlags
& wxPG_FL_INITIALIZED
)
1115 int pgh
= propgridBottomY
- propgridY
;
1118 m_pPropGrid
->SetSize( 0, propgridY
, width
, pgh
);
1120 m_extraHeight
= height
- pgh
;
1127 // -----------------------------------------------------------------------
1129 void wxPropertyGridManager::SetDescBoxHeight( int ht
, bool refresh
)
1131 if ( m_windowStyle
& wxPG_DESCRIPTION
)
1133 if ( ht
!= GetDescBoxHeight() )
1135 m_nextDescBoxSize
= ht
;
1137 RecalculatePositions(m_width
, m_height
);
1142 // -----------------------------------------------------------------------
1144 int wxPropertyGridManager::GetDescBoxHeight() const
1146 return GetClientSize().y
- m_splitterY
- m_splitterHeight
;
1149 // -----------------------------------------------------------------------
1151 void wxPropertyGridManager::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1155 // Update everything inside the box
1156 wxRect r
= GetUpdateRegion().GetBox();
1158 // Repaint splitter and any other description box decorations
1159 if ( (r
.y
+ r
.height
) >= m_splitterY
)
1160 RepaintDescBoxDecorations( dc
, m_splitterY
, m_width
, m_height
);
1163 // -----------------------------------------------------------------------
1165 void wxPropertyGridManager::Refresh(bool eraseBackground
, const wxRect
* rect
)
1167 m_pPropGrid
->Refresh(eraseBackground
);
1168 wxWindow::Refresh(eraseBackground
,rect
);
1171 // -----------------------------------------------------------------------
1173 void wxPropertyGridManager::RefreshProperty( wxPGProperty
* p
)
1175 wxPropertyGrid
* grid
= p
->GetGrid();
1177 if ( GetPage(m_selPage
)->GetStatePtr() == p
->GetParent()->GetParentState() )
1178 grid
->RefreshProperty(p
);
1181 // -----------------------------------------------------------------------
1183 void wxPropertyGridManager::RecreateControls()
1186 bool was_shown
= IsShown();
1190 wxWindowID baseId
= m_pPropGrid
->GetId();
1192 baseId
= wxPG_MAN_ALTERNATE_BASE_ID
;
1195 if ( m_windowStyle
& wxPG_TOOLBAR
)
1200 m_pToolbar
= new wxToolBar(this,baseId
+ID_ADVTOOLBAR_OFFSET
,
1201 wxDefaultPosition
,wxDefaultSize
,
1202 ((GetExtraStyle()&wxPG_EX_NO_FLAT_TOOLBAR
)?0:wxTB_FLAT
)
1203 /*| wxTB_HORIZONTAL | wxNO_BORDER*/ );
1204 m_pToolbar
->SetToolBitmapSize(wxSize(16, 15));
1206 #if defined(__WXMSW__)
1207 // Eliminate toolbar flicker on XP
1208 // NOTE: Not enabled since it corrupts drawing somewhat.
1211 #ifndef WS_EX_COMPOSITED
1212 #define WS_EX_COMPOSITED 0x02000000L
1215 HWND hWnd = (HWND)m_pToolbar->GetHWND();
1217 ::SetWindowLong( hWnd, GWL_EXSTYLE,
1218 ::GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_COMPOSITED );
1223 m_pToolbar
->SetCursor ( *wxSTANDARD_CURSOR
);
1225 if ( (GetExtraStyle()&wxPG_EX_MODE_BUTTONS
) )
1227 wxString
desc1(_("Categorized Mode"));
1228 wxString
desc2(_("Alphabetic Mode"));
1229 m_pToolbar
->AddTool(baseId
+ID_ADVTBITEMSBASE_OFFSET
+0,
1230 desc1
,wxBitmap ( (const char**)gs_xpm_catmode
),
1231 desc1
,wxITEM_RADIO
);
1232 m_pToolbar
->AddTool(baseId
+ID_ADVTBITEMSBASE_OFFSET
+1,
1233 desc2
,wxBitmap ( (const char**)gs_xpm_noncatmode
),
1234 desc2
,wxITEM_RADIO
);
1235 m_pToolbar
->Realize();
1240 if ( (GetExtraStyle()&wxPG_EX_MODE_BUTTONS
) )
1242 // Toggle correct mode button.
1243 // TODO: This doesn't work in wxMSW (when changing,
1244 // both items will get toggled).
1245 int toggle_but_on_ind
= ID_ADVTBITEMSBASE_OFFSET
+0;
1246 int toggle_but_off_ind
= ID_ADVTBITEMSBASE_OFFSET
+1;
1247 if ( m_pPropGrid
->m_pState
->IsInNonCatMode() )
1249 toggle_but_on_ind
++;
1250 toggle_but_off_ind
--;
1253 m_pToolbar
->ToggleTool(baseId
+toggle_but_on_ind
,true);
1254 m_pToolbar
->ToggleTool(baseId
+toggle_but_off_ind
,false);
1262 m_pToolbar
->Destroy();
1267 if ( m_windowStyle
& wxPG_DESCRIPTION
)
1270 m_pPropGrid
->m_iFlags
|= (wxPG_FL_NOSTATUSBARHELP
);
1272 if ( !m_pTxtHelpCaption
)
1274 m_pTxtHelpCaption
= new wxStaticText(this,
1275 baseId
+ID_ADVHELPCAPTION_OFFSET
,
1279 wxALIGN_LEFT
|wxST_NO_AUTORESIZE
);
1280 m_pTxtHelpCaption
->SetFont( m_pPropGrid
->m_captionFont
);
1281 m_pTxtHelpCaption
->SetCursor( *wxSTANDARD_CURSOR
);
1283 if ( !m_pTxtHelpContent
)
1285 m_pTxtHelpContent
= new wxStaticText(this,
1286 baseId
+ID_ADVHELPCONTENT_OFFSET
,
1290 wxALIGN_LEFT
|wxST_NO_AUTORESIZE
);
1291 m_pTxtHelpContent
->SetCursor( *wxSTANDARD_CURSOR
);
1294 SetDescribedProperty(GetSelection());
1299 m_pPropGrid
->m_iFlags
&= ~(wxPG_FL_NOSTATUSBARHELP
);
1301 if ( m_pTxtHelpCaption
)
1302 m_pTxtHelpCaption
->Destroy();
1304 m_pTxtHelpCaption
= NULL
;
1306 if ( m_pTxtHelpContent
)
1307 m_pTxtHelpContent
->Destroy();
1309 m_pTxtHelpContent
= NULL
;
1314 GetClientSize(&width
,&height
);
1316 RecalculatePositions(width
,height
);
1322 // -----------------------------------------------------------------------
1324 wxPGProperty
* wxPropertyGridManager::DoGetPropertyByName( const wxString
& name
) const
1327 for ( i
=0; i
<GetPageCount(); i
++ )
1329 wxPropertyGridPageState
* pState
= m_arrPages
[i
]->GetStatePtr();
1330 wxPGProperty
* p
= pState
->BaseGetPropertyByName(name
);
1339 // -----------------------------------------------------------------------
1341 bool wxPropertyGridManager::EnsureVisible( wxPGPropArg id
)
1343 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1345 wxPropertyGridPageState
* parentState
= p
->GetParentState();
1347 // Select correct page.
1348 if ( m_pPropGrid
->m_pState
!= parentState
)
1349 DoSelectPage( GetPageByState(parentState
) );
1351 return m_pPropGrid
->EnsureVisible(id
);
1354 // -----------------------------------------------------------------------
1356 void wxPropertyGridManager::OnToolbarClick( wxCommandEvent
&event
)
1358 int id
= event
.GetId();
1361 int baseId
= m_pPropGrid
->GetId();
1363 baseId
= wxPG_MAN_ALTERNATE_BASE_ID
;
1365 if ( id
== ( baseId
+ ID_ADVTBITEMSBASE_OFFSET
+ 0 ) )
1367 // Categorized mode.
1368 if ( m_pPropGrid
->m_windowStyle
& wxPG_HIDE_CATEGORIES
)
1370 if ( !m_pPropGrid
->HasInternalFlag(wxPG_FL_CATMODE_AUTO_SORT
) )
1371 m_pPropGrid
->m_windowStyle
&= ~wxPG_AUTO_SORT
;
1372 m_pPropGrid
->EnableCategories( true );
1375 else if ( id
== ( baseId
+ ID_ADVTBITEMSBASE_OFFSET
+ 1 ) )
1378 if ( !(m_pPropGrid
->m_windowStyle
& wxPG_HIDE_CATEGORIES
) )
1380 if ( m_pPropGrid
->HasFlag(wxPG_AUTO_SORT
) )
1381 m_pPropGrid
->SetInternalFlag(wxPG_FL_CATMODE_AUTO_SORT
);
1383 m_pPropGrid
->ClearInternalFlag(wxPG_FL_CATMODE_AUTO_SORT
);
1385 m_pPropGrid
->m_windowStyle
|= wxPG_AUTO_SORT
;
1386 m_pPropGrid
->EnableCategories( false );
1395 wxPropertyGridPage
* pdc
;
1397 // Find page with given id.
1398 for ( i
=0; i
<GetPageCount(); i
++ )
1400 pdc
= m_arrPages
[i
];
1401 if ( pdc
->m_id
== id
)
1408 wxASSERT( index
>= 0 );
1410 if ( DoSelectPage( index
) )
1413 // Event dispatching must be last.
1414 m_pPropGrid
->SendEvent( wxEVT_PG_PAGE_CHANGED
, NULL
);
1419 // TODO: Depress the old button on toolbar.
1426 // -----------------------------------------------------------------------
1428 bool wxPropertyGridManager::SetEditableStateItem( const wxString
& name
, wxVariant value
)
1430 if ( name
== wxS("descboxheight") )
1432 SetDescBoxHeight(value
.GetLong(), true);
1438 // -----------------------------------------------------------------------
1440 wxVariant
wxPropertyGridManager::GetEditableStateItem( const wxString
& name
) const
1442 if ( name
== wxS("descboxheight") )
1444 return (long) GetDescBoxHeight();
1446 return wxNullVariant
;
1449 // -----------------------------------------------------------------------
1451 void wxPropertyGridManager::SetDescription( const wxString
& label
, const wxString
& content
)
1453 if ( m_pTxtHelpCaption
)
1455 wxSize osz1
= m_pTxtHelpCaption
->GetSize();
1456 wxSize osz2
= m_pTxtHelpContent
->GetSize();
1458 m_pTxtHelpCaption
->SetLabel(label
);
1459 m_pTxtHelpContent
->SetLabel(content
);
1461 m_pTxtHelpCaption
->SetSize(-1,osz1
.y
);
1462 m_pTxtHelpContent
->SetSize(-1,osz2
.y
);
1464 UpdateDescriptionBox( m_splitterY
, m_width
, m_height
);
1468 // -----------------------------------------------------------------------
1470 void wxPropertyGridManager::SetDescribedProperty( wxPGProperty
* p
)
1472 if ( m_pTxtHelpCaption
)
1476 SetDescription( p
->GetLabel(), p
->GetHelpString() );
1480 SetDescription( wxEmptyString
, wxEmptyString
);
1485 // -----------------------------------------------------------------------
1487 void wxPropertyGridManager::SetSplitterLeft( bool subProps
, bool allPages
)
1491 m_pPropGrid
->SetSplitterLeft(subProps
);
1495 wxClientDC
dc(this);
1496 dc
.SetFont(m_pPropGrid
->GetFont());
1501 for ( i
=0; i
<GetPageCount(); i
++ )
1503 int maxW
= m_pState
->GetColumnFitWidth(dc
, m_arrPages
[i
]->m_properties
, 0, subProps
);
1504 maxW
+= m_pPropGrid
->m_marginWidth
;
1505 if ( maxW
> highest
)
1510 m_pPropGrid
->SetSplitterPosition( highest
);
1512 m_pPropGrid
->m_iFlags
|= wxPG_FL_DONT_CENTER_SPLITTER
;
1516 // -----------------------------------------------------------------------
1518 void wxPropertyGridManager::OnPropertyGridSelect( wxPropertyGridEvent
& event
)
1521 wxASSERT_MSG( GetId() == m_pPropGrid
->GetId(),
1522 wxT("wxPropertyGridManager id must be set with wxPropertyGridManager::SetId (not wxWindow::SetId).") );
1524 SetDescribedProperty(event
.GetProperty());
1528 // -----------------------------------------------------------------------
1530 void wxPropertyGridManager::OnResize( wxSizeEvent
& WXUNUSED(event
) )
1534 GetClientSize(&width
,&height
);
1536 if ( m_width
== -12345 )
1539 RecalculatePositions(width
,height
);
1542 // -----------------------------------------------------------------------
1544 void wxPropertyGridManager::OnMouseEntry( wxMouseEvent
& WXUNUSED(event
) )
1546 // Correct cursor. This is required atleast for wxGTK, for which
1547 // setting button's cursor to *wxSTANDARD_CURSOR does not work.
1548 SetCursor( wxNullCursor
);
1552 // -----------------------------------------------------------------------
1554 void wxPropertyGridManager::OnMouseMove( wxMouseEvent
&event
)
1556 if ( !m_pTxtHelpCaption
)
1561 if ( m_dragStatus
> 0 )
1563 int sy
= y
- m_dragOffset
;
1565 // Calculate drag limits
1566 int bottom_limit
= m_height
- m_splitterHeight
+ 1;
1567 int top_limit
= m_pPropGrid
->m_lineHeight
;
1569 if ( m_pToolbar
) top_limit
+= m_pToolbar
->GetSize().y
;
1572 if ( sy
>= top_limit
&& sy
< bottom_limit
)
1575 int change
= sy
- m_splitterY
;
1580 m_pPropGrid
->SetSize( m_width
, m_splitterY
- m_pPropGrid
->GetPosition().y
);
1581 UpdateDescriptionBox( m_splitterY
, m_width
, m_height
);
1583 m_extraHeight
-= change
;
1584 InvalidateBestSize();
1592 if ( y
>= m_splitterY
&& y
< (m_splitterY
+m_splitterHeight
+2) )
1594 SetCursor ( m_cursorSizeNS
);
1601 SetCursor ( wxNullCursor
);
1608 // -----------------------------------------------------------------------
1610 void wxPropertyGridManager::OnMouseClick( wxMouseEvent
&event
)
1614 // Click on splitter.
1615 if ( y
>= m_splitterY
&& y
< (m_splitterY
+m_splitterHeight
+2) )
1617 if ( m_dragStatus
== 0 )
1620 // Begin draggin the splitter
1627 m_dragOffset
= y
- m_splitterY
;
1633 // -----------------------------------------------------------------------
1635 void wxPropertyGridManager::OnMouseUp( wxMouseEvent
&event
)
1637 // No event type check - basicly calling this method should
1638 // just stop dragging.
1640 if ( m_dragStatus
>= 1 )
1643 // End Splitter Dragging
1648 // DO NOT ENABLE FOLLOWING LINE!
1649 // (it is only here as a reminder to not to do it)
1652 // This is necessary to return cursor
1655 // Set back the default cursor, if necessary
1656 if ( y
< m_splitterY
|| y
>= (m_splitterY
+m_splitterHeight
+2) )
1658 SetCursor ( wxNullCursor
);
1665 // -----------------------------------------------------------------------
1667 void wxPropertyGridManager::SetSplitterPosition( int pos
, int splitterColumn
)
1669 wxASSERT_MSG( GetPageCount(),
1670 wxT("SetSplitterPosition() has no effect until pages have been added") );
1673 for ( i
=0; i
<GetPageCount(); i
++ )
1675 wxPropertyGridPage
* page
= GetPage(i
);
1676 page
->DoSetSplitterPosition( pos
, splitterColumn
, false );
1679 m_pPropGrid
->SetInternalFlag(wxPG_FL_SPLITTER_PRE_SET
);
1682 // -----------------------------------------------------------------------
1683 // wxPGVIterator_Manager
1684 // -----------------------------------------------------------------------
1686 // Default returned by wxPropertyGridInterface::CreateVIterator().
1687 class wxPGVIteratorBase_Manager
: public wxPGVIteratorBase
1690 wxPGVIteratorBase_Manager( wxPropertyGridManager
* manager
, int flags
)
1691 : m_manager(manager
), m_flags(flags
), m_curPage(0)
1693 m_it
.Init(manager
->GetPage(0), flags
);
1695 virtual ~wxPGVIteratorBase_Manager() { }
1704 if ( m_curPage
< m_manager
->GetPageCount() )
1705 m_it
.Init( m_manager
->GetPage(m_curPage
), m_flags
);
1709 wxPropertyGridManager
* m_manager
;
1711 unsigned int m_curPage
;
1714 wxPGVIterator
wxPropertyGridManager::GetVIterator( int flags
) const
1716 return wxPGVIterator( new wxPGVIteratorBase_Manager( (wxPropertyGridManager
*)this, flags
) );
1719 #endif // wxUSE_PROPGRID