1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/propgrid/propgrid.cpp
3 // Purpose: wxPropertyGrid sample
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 // * Examples of custom property classes are in sampleprops.cpp.
18 // * Additional ones can be found below.
20 // * Currently there is no example of a custom property editor. However,
21 // SpinCtrl editor sample is well-commented. It can be found in
22 // src/propgrid/advprops.cpp.
24 // * To find code that populates the grid with properties, search for
25 // string "::Populate".
27 // * To find code that handles property grid changes, search for string
28 // "::OnPropertyGridChange".
31 // For compilers that support precompilation, includes "wx/wx.h".
32 #include "wx/wxprec.h"
38 // for all others, include the necessary headers (this file is usually all you
39 // need because it includes almost all "standard" wxWidgets headers)
45 #error "Please set wxUSE_PROPGRID to 1 and rebuild the library."
48 #include <wx/numdlg.h>
50 // -----------------------------------------------------------------------
53 // Main propertygrid header.
54 #include <wx/propgrid/propgrid.h>
56 // Extra property classes.
57 #include <wx/propgrid/advprops.h>
59 // This defines wxPropertyGridManager.
60 #include <wx/propgrid/manager.h>
63 #include "sampleprops.h"
65 #if wxUSE_DATEPICKCTRL
66 #include <wx/datectrl.h>
69 #include <wx/artprov.h>
72 #include "../sample.xpm"
75 // -----------------------------------------------------------------------
76 // wxSampleMultiButtonEditor
77 // A sample editor class that has multiple buttons.
78 // -----------------------------------------------------------------------
80 class wxSampleMultiButtonEditor
: public wxPGTextCtrlEditor
82 DECLARE_DYNAMIC_CLASS(wxSampleMultiButtonEditor
)
84 wxSampleMultiButtonEditor() {}
85 virtual ~wxSampleMultiButtonEditor() {}
87 virtual wxPGWindowList
CreateControls( wxPropertyGrid
* propGrid
,
88 wxPGProperty
* property
,
90 const wxSize
& sz
) const;
91 virtual bool OnEvent( wxPropertyGrid
* propGrid
,
92 wxPGProperty
* property
,
94 wxEvent
& event
) const;
97 IMPLEMENT_DYNAMIC_CLASS(wxSampleMultiButtonEditor
, wxPGTextCtrlEditor
)
99 wxPGWindowList
wxSampleMultiButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
100 wxPGProperty
* property
,
102 const wxSize
& sz
) const
104 // Create and populate buttons-subwindow
105 wxPGMultiButton
* buttons
= new wxPGMultiButton( propGrid
, sz
);
107 // Add two regular buttons
108 buttons
->Add( "..." );
110 // Add a bitmap button
111 buttons
->Add( wxArtProvider::GetBitmap(wxART_FOLDER
) );
113 // Create the 'primary' editor control (textctrl in this case)
114 wxPGWindowList wndList
= wxPGTextCtrlEditor::CreateControls
115 ( propGrid
, property
, pos
,
116 buttons
->GetPrimarySize() );
118 // Finally, move buttons-subwindow to correct position and make sure
119 // returned wxPGWindowList contains our custom button list.
120 buttons
->Finalize(propGrid
, pos
);
122 wndList
.SetSecondary( buttons
);
126 bool wxSampleMultiButtonEditor::OnEvent( wxPropertyGrid
* propGrid
,
127 wxPGProperty
* property
,
129 wxEvent
& event
) const
131 if ( event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
133 wxPGMultiButton
* buttons
= (wxPGMultiButton
*) propGrid
->GetEditorControlSecondary();
135 if ( event
.GetId() == buttons
->GetButtonId(0) )
137 // Do something when first button is pressed
138 wxLogDebug("First button pressed");
141 if ( event
.GetId() == buttons
->GetButtonId(1) )
143 // Do something when second button is pressed
144 wxLogDebug("Second button pressed");
147 if ( event
.GetId() == buttons
->GetButtonId(2) )
149 // Do something when third button is pressed
150 wxLogDebug("Third button pressed");
154 return wxPGTextCtrlEditor::OnEvent(propGrid
, property
, ctrl
, event
);
157 // -----------------------------------------------------------------------
158 // Validator for wxValidator use sample
159 // -----------------------------------------------------------------------
163 // wxValidator for testing
165 class wxInvalidWordValidator
: public wxValidator
169 wxInvalidWordValidator( const wxString
& invalidWord
)
170 : wxValidator(), m_invalidWord(invalidWord
)
174 virtual wxObject
* Clone() const
176 return new wxInvalidWordValidator(m_invalidWord
);
179 virtual bool Validate(wxWindow
* WXUNUSED(parent
))
181 wxTextCtrl
* tc
= wxDynamicCast(GetWindow(), wxTextCtrl
);
182 wxCHECK_MSG(tc
, true, wxT("validator window must be wxTextCtrl"));
184 wxString val
= tc
->GetValue();
186 if ( val
.find(m_invalidWord
) == wxString::npos
)
189 ::wxMessageBox(wxString::Format(wxT("%s is not allowed word"),m_invalidWord
.c_str()),
190 wxT("Validation Failure"));
196 wxString m_invalidWord
;
199 #endif // wxUSE_VALIDATORS
201 // -----------------------------------------------------------------------
202 // AdvImageFile Property
203 // -----------------------------------------------------------------------
207 WX_DECLARE_OBJARRAY(wxMyImageInfo
, wxArrayMyImageInfo
);
213 wxBitmap
* m_pThumbnail1
; // smaller thumbnail
214 wxBitmap
* m_pThumbnail2
; // larger thumbnail
216 wxMyImageInfo ( const wxString
& str
)
219 m_pThumbnail1
= (wxBitmap
*) NULL
;
220 m_pThumbnail2
= (wxBitmap
*) NULL
;
222 virtual ~wxMyImageInfo()
225 delete m_pThumbnail1
;
227 delete m_pThumbnail2
;
233 #include <wx/arrimpl.cpp>
234 WX_DEFINE_OBJARRAY(wxArrayMyImageInfo
);
236 wxArrayMyImageInfo g_myImageArray
;
239 // Preferred thumbnail height.
240 #define PREF_THUMBNAIL_HEIGHT 64
243 wxPGChoices
wxAdvImageFileProperty::ms_choices
;
245 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxAdvImageFileProperty
,wxFileProperty
,
246 wxString
,const wxString
&,ChoiceAndButton
)
249 wxAdvImageFileProperty::wxAdvImageFileProperty( const wxString
& label
,
250 const wxString
& name
,
251 const wxString
& value
)
252 : wxFileProperty(label
,name
,value
)
254 m_wildcard
= wxPGGetDefaultImageWildcard();
258 m_pImage
= (wxImage
*) NULL
;
261 m_flags
&= ~(wxPG_PROP_SHOW_FULL_FILENAME
);
264 wxAdvImageFileProperty::~wxAdvImageFileProperty ()
270 m_pImage
= (wxImage
*) NULL
;
274 void wxAdvImageFileProperty::OnSetValue()
276 wxFileProperty::OnSetValue();
282 m_pImage
= (wxImage
*) NULL
;
285 wxString imagename
= GetValueAsString(0);
287 if ( imagename
.length() )
289 wxFileName filename
= GetFileName();
290 size_t prevCount
= g_myImageArray
.GetCount();
291 int index
= ms_choices
.Index(imagename
);
293 // If not in table, add now.
294 if ( index
== wxNOT_FOUND
)
296 ms_choices
.Add( imagename
);
297 g_myImageArray
.Add( new wxMyImageInfo( filename
.GetFullPath() ) );
299 index
= g_myImageArray
.GetCount() - 1;
302 // If no thumbnail ready, then need to load image.
303 if ( !g_myImageArray
[index
].m_pThumbnail2
)
305 // Load if file exists.
306 if ( filename
.FileExists() )
307 m_pImage
= new wxImage( filename
.GetFullPath() );
312 wxPropertyGrid
* pg
= GetGrid();
313 wxWindow
* control
= pg
->GetEditorControl();
315 if ( pg
->GetSelection() == this && control
)
317 wxString name
= GetValueAsString(0);
319 if ( g_myImageArray
.GetCount() != prevCount
)
321 wxASSERT( g_myImageArray
.GetCount() == (prevCount
+1) );
323 // Add to the control's array.
324 // (should be added to own array earlier)
327 GetEditorClass()->InsertItem(control
, name
, -1);
331 GetEditorClass()->UpdateControl(this, control
);
338 bool wxAdvImageFileProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
340 wxASSERT( number
>= 0 );
341 return StringToValue( variant
, ms_choices
.GetLabel(number
), wxPG_FULL_VALUE
);
344 bool wxAdvImageFileProperty::OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* primary
,
347 if ( propgrid
->IsMainButtonEvent(event
) )
349 return wxFileProperty::OnEvent(propgrid
,primary
,event
);
354 wxSize
wxAdvImageFileProperty::OnMeasureImage( int item
) const
357 return wxPG_DEFAULT_IMAGE_SIZE
;
359 return wxSize(PREF_THUMBNAIL_HEIGHT
,PREF_THUMBNAIL_HEIGHT
);
362 void wxAdvImageFileProperty::LoadThumbnails( size_t index
)
364 wxMyImageInfo
& mii
= g_myImageArray
[index
];
366 if ( !mii
.m_pThumbnail2
)
368 wxFileName filename
= GetFileName();
370 if ( !m_pImage
|| !m_pImage
->Ok() ||
371 filename
!= mii
.m_path
376 m_pImage
= new wxImage( mii
.m_path
);
379 if ( m_pImage
&& m_pImage
->Ok() )
381 int im_wid
= m_pImage
->GetWidth();
382 int im_hei
= m_pImage
->GetHeight();
383 if ( im_hei
> PREF_THUMBNAIL_HEIGHT
)
386 im_wid
= (PREF_THUMBNAIL_HEIGHT
*m_pImage
->GetWidth())/m_pImage
->GetHeight();
387 im_hei
= PREF_THUMBNAIL_HEIGHT
;
390 m_pImage
->Rescale( im_wid
, im_hei
);
392 mii
.m_pThumbnail2
= new wxBitmap( *m_pImage
);
394 wxSize cis
= GetParentState()->GetGrid()->GetImageSize();
395 m_pImage
->Rescale ( cis
.x
, cis
.y
);
397 mii
.m_pThumbnail1
= new wxBitmap( *m_pImage
);
404 m_pImage
= (wxImage
*) NULL
;
409 void wxAdvImageFileProperty::OnCustomPaint( wxDC
& dc
,
414 if ( pd
.m_choiceItem
>= 0 )
415 index
= pd
.m_choiceItem
;
417 //wxLogDebug(wxT("%i"),index);
421 LoadThumbnails(index
);
423 // Is this a measure item call?
427 //pd.m_drawnHeight = PREF_THUMBNAIL_HEIGHT;
428 wxBitmap
* pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
430 pd
.m_drawnHeight
= pBitmap
->GetHeight();
432 pd
.m_drawnHeight
= 16;
436 // Draw the thumbnail
440 if ( pd
.m_choiceItem
>= 0 )
441 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
443 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail1
;
447 dc
.DrawBitmap ( *pBitmap
, rect
.x
, rect
.y
, FALSE
);
449 // Tell the caller how wide we drew.
450 pd
.m_drawnWidth
= pBitmap
->GetWidth();
456 // No valid file - just draw a white box.
457 dc
.SetBrush ( *wxWHITE_BRUSH
);
458 dc
.DrawRectangle ( rect
);
462 // -----------------------------------------------------------------------
464 // -----------------------------------------------------------------------
466 // See propgridsample.h for wxVector3f class
468 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxVector3f
)
470 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxVectorProperty
,wxPGProperty
,
471 wxVector3f
,const wxVector3f
&,TextCtrl
)
474 wxVectorProperty::wxVectorProperty( const wxString
& label
,
475 const wxString
& name
,
476 const wxVector3f
& value
)
477 : wxPGProperty(label
,name
)
479 SetValue( WXVARIANT(value
) );
480 SetParentalType(wxPG_PROP_AGGREGATE
);
481 AddChild( new wxFloatProperty(wxT("X"),wxPG_LABEL
,value
.x
) );
482 AddChild( new wxFloatProperty(wxT("Y"),wxPG_LABEL
,value
.y
) );
483 AddChild( new wxFloatProperty(wxT("Z"),wxPG_LABEL
,value
.z
) );
486 wxVectorProperty::~wxVectorProperty() { }
488 void wxVectorProperty::RefreshChildren()
490 if ( !GetChildCount() ) return;
491 const wxVector3f
& vector
= wxVector3fRefFromVariant(m_value
);
492 Item(0)->SetValue( vector
.x
);
493 Item(1)->SetValue( vector
.y
);
494 Item(2)->SetValue( vector
.z
);
497 void wxVectorProperty::ChildChanged( wxVariant
& thisValue
, int childIndex
, wxVariant
& childValue
) const
501 switch ( childIndex
)
503 case 0: vector
.x
= childValue
.GetDouble(); break;
504 case 1: vector
.y
= childValue
.GetDouble(); break;
505 case 2: vector
.z
= childValue
.GetDouble(); break;
511 // -----------------------------------------------------------------------
512 // wxTriangleProperty
513 // -----------------------------------------------------------------------
515 // See propgridsample.h for wxTriangle class
517 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxTriangle
)
519 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxTriangleProperty
,wxPGProperty
,
520 wxTriangle
,const wxTriangle
&,TextCtrl
)
523 wxTriangleProperty::wxTriangleProperty( const wxString
& label
,
524 const wxString
& name
,
525 const wxTriangle
& value
)
526 : wxPGProperty(label
,name
)
528 SetValue( WXVARIANT(value
) );
529 SetParentalType(wxPG_PROP_AGGREGATE
);
530 AddChild( new wxVectorProperty(wxT("A"),wxPG_LABEL
,value
.a
) );
531 AddChild( new wxVectorProperty(wxT("B"),wxPG_LABEL
,value
.b
) );
532 AddChild( new wxVectorProperty(wxT("C"),wxPG_LABEL
,value
.c
) );
535 wxTriangleProperty::~wxTriangleProperty() { }
537 void wxTriangleProperty::RefreshChildren()
539 if ( !GetChildCount() ) return;
540 const wxTriangle
& triangle
= wxTriangleRefFromVariant(m_value
);
541 Item(0)->SetValue( WXVARIANT(triangle
.a
) );
542 Item(1)->SetValue( WXVARIANT(triangle
.b
) );
543 Item(2)->SetValue( WXVARIANT(triangle
.c
) );
546 void wxTriangleProperty::ChildChanged( wxVariant
& thisValue
, int childIndex
, wxVariant
& childValue
) const
549 triangle
<< thisValue
;
550 const wxVector3f
& vector
= wxVector3fRefFromVariant(childValue
);
551 switch ( childIndex
)
553 case 0: triangle
.a
= vector
; break;
554 case 1: triangle
.b
= vector
; break;
555 case 2: triangle
.c
= vector
; break;
557 thisValue
<< triangle
;
561 // -----------------------------------------------------------------------
562 // wxSingleChoiceDialogAdapter (wxPGEditorDialogAdapter sample)
563 // -----------------------------------------------------------------------
565 class wxSingleChoiceDialogAdapter
: public wxPGEditorDialogAdapter
569 wxSingleChoiceDialogAdapter( const wxPGChoices
& choices
)
570 : wxPGEditorDialogAdapter(), m_choices(choices
)
574 virtual bool DoShowDialog( wxPropertyGrid
* WXUNUSED(propGrid
),
575 wxPGProperty
* WXUNUSED(property
) )
577 wxString s
= ::wxGetSingleChoice(wxT("Message"),
579 m_choices
.GetLabels());
590 const wxPGChoices
& m_choices
;
594 class SingleChoiceProperty
: public wxStringProperty
598 SingleChoiceProperty( const wxString
& label
,
599 const wxString
& name
= wxPG_LABEL
,
600 const wxString
& value
= wxEmptyString
)
601 : wxStringProperty(label
, name
, value
)
604 m_choices
.Add(wxT("Cat"));
605 m_choices
.Add(wxT("Dog"));
606 m_choices
.Add(wxT("Gibbon"));
607 m_choices
.Add(wxT("Otter"));
610 // Set editor to have button
611 virtual const wxPGEditor
* DoGetEditorClass() const
613 return wxPGEditor_TextCtrlAndButton
;
616 // Set what happens on button click
617 virtual wxPGEditorDialogAdapter
* GetEditorDialog() const
619 return new wxSingleChoiceDialogAdapter(m_choices
);
623 wxPGChoices m_choices
;
626 // -----------------------------------------------------------------------
628 // -----------------------------------------------------------------------
675 ID_SETSPINCTRLEDITOR
,
680 ID_ENABLECOMMONVALUES
,
687 // -----------------------------------------------------------------------
689 // -----------------------------------------------------------------------
691 BEGIN_EVENT_TABLE(FormMain
, wxFrame
)
692 EVT_IDLE(FormMain::OnIdle
)
693 EVT_MOVE(FormMain::OnMove
)
694 EVT_SIZE(FormMain::OnResize
)
696 // This occurs when a property is selected
697 EVT_PG_SELECTED( PGID
, FormMain::OnPropertyGridSelect
)
698 // This occurs when a property value changes
699 EVT_PG_CHANGED( PGID
, FormMain::OnPropertyGridChange
)
700 // This occurs just prior a property value is changed
701 EVT_PG_CHANGING( PGID
, FormMain::OnPropertyGridChanging
)
702 // This occurs when a mouse moves over another property
703 EVT_PG_HIGHLIGHTED( PGID
, FormMain::OnPropertyGridHighlight
)
704 // This occurs when mouse is right-clicked.
705 EVT_PG_RIGHT_CLICK( PGID
, FormMain::OnPropertyGridItemRightClick
)
706 // This occurs when mouse is double-clicked.
707 EVT_PG_DOUBLE_CLICK( PGID
, FormMain::OnPropertyGridItemDoubleClick
)
708 // This occurs when propgridmanager's page changes.
709 EVT_PG_PAGE_CHANGED( PGID
, FormMain::OnPropertyGridPageChange
)
710 // This occurs when property's editor button (if any) is clicked.
711 EVT_BUTTON( PGID
, FormMain::OnPropertyGridButtonClick
)
713 EVT_PG_ITEM_COLLAPSED( PGID
, FormMain::OnPropertyGridItemCollapse
)
714 EVT_PG_ITEM_EXPANDED( PGID
, FormMain::OnPropertyGridItemExpand
)
716 EVT_TEXT( PGID
, FormMain::OnPropertyGridTextUpdate
)
719 // Rest of the events are not property grid specific
720 EVT_KEY_DOWN( FormMain::OnPropertyGridKeyEvent
)
721 EVT_KEY_UP( FormMain::OnPropertyGridKeyEvent
)
723 EVT_MENU( ID_APPENDPROP
, FormMain::OnAppendPropClick
)
724 EVT_MENU( ID_APPENDCAT
, FormMain::OnAppendCatClick
)
725 EVT_MENU( ID_INSERTPROP
, FormMain::OnInsertPropClick
)
726 EVT_MENU( ID_INSERTCAT
, FormMain::OnInsertCatClick
)
727 EVT_MENU( ID_DELETE
, FormMain::OnDelPropClick
)
728 EVT_MENU( ID_DELETER
, FormMain::OnDelPropRClick
)
729 EVT_MENU( ID_UNSPECIFY
, FormMain::OnMisc
)
730 EVT_MENU( ID_DELETEALL
, FormMain::OnClearClick
)
731 EVT_MENU( ID_ENABLE
, FormMain::OnEnableDisable
)
732 EVT_MENU( ID_HIDE
, FormMain::OnHideShow
)
734 EVT_MENU( ID_ITERATE1
, FormMain::OnIterate1Click
)
735 EVT_MENU( ID_ITERATE2
, FormMain::OnIterate2Click
)
736 EVT_MENU( ID_ITERATE3
, FormMain::OnIterate3Click
)
737 EVT_MENU( ID_ITERATE4
, FormMain::OnIterate4Click
)
738 EVT_MENU( ID_SETBGCOLOUR
, FormMain::OnSetBackgroundColour
)
739 EVT_MENU( ID_SETBGCOLOURRECUR
, FormMain::OnSetBackgroundColour
)
740 EVT_MENU( ID_CLEARMODIF
, FormMain::OnClearModifyStatusClick
)
741 EVT_MENU( ID_FREEZE
, FormMain::OnFreezeClick
)
742 EVT_MENU( ID_DUMPLIST
, FormMain::OnDumpList
)
744 EVT_MENU( ID_COLOURSCHEME1
, FormMain::OnColourScheme
)
745 EVT_MENU( ID_COLOURSCHEME2
, FormMain::OnColourScheme
)
746 EVT_MENU( ID_COLOURSCHEME3
, FormMain::OnColourScheme
)
747 EVT_MENU( ID_COLOURSCHEME4
, FormMain::OnColourScheme
)
749 EVT_MENU( ID_ABOUT
, FormMain::OnAbout
)
750 EVT_MENU( ID_QUIT
, FormMain::OnCloseClick
)
752 EVT_MENU( ID_CATCOLOURS
, FormMain::OnCatColours
)
753 EVT_MENU( ID_SETCOLUMNS
, FormMain::OnSetColumns
)
754 EVT_MENU( ID_TESTXRC
, FormMain::OnTestXRC
)
755 EVT_MENU( ID_ENABLECOMMONVALUES
, FormMain::OnEnableCommonValues
)
756 EVT_MENU( ID_SELECTSTYLE
, FormMain::OnSelectStyle
)
758 EVT_MENU( ID_STATICLAYOUT
, FormMain::OnMisc
)
759 EVT_MENU( ID_COLLAPSE
, FormMain::OnMisc
)
760 EVT_MENU( ID_COLLAPSEALL
, FormMain::OnMisc
)
762 EVT_MENU( ID_POPULATE1
, FormMain::OnPopulateClick
)
763 EVT_MENU( ID_POPULATE2
, FormMain::OnPopulateClick
)
765 EVT_MENU( ID_GETVALUES
, FormMain::OnMisc
)
766 EVT_MENU( ID_SETVALUES
, FormMain::OnMisc
)
767 EVT_MENU( ID_SETVALUES2
, FormMain::OnMisc
)
769 EVT_MENU( ID_FITCOLUMNS
, FormMain::OnFitColumnsClick
)
771 EVT_MENU( ID_CHANGEFLAGSITEMS
, FormMain::OnChangeFlagsPropItemsClick
)
773 EVT_MENU( ID_RUNTESTFULL
, FormMain::OnMisc
)
774 EVT_MENU( ID_RUNTESTPARTIAL
, FormMain::OnMisc
)
776 EVT_MENU( ID_TESTINSERTCHOICE
, FormMain::OnInsertChoice
)
777 EVT_MENU( ID_TESTDELETECHOICE
, FormMain::OnDeleteChoice
)
779 EVT_MENU( ID_INSERTPAGE
, FormMain::OnInsertPage
)
780 EVT_MENU( ID_REMOVEPAGE
, FormMain::OnRemovePage
)
782 EVT_MENU( ID_SAVESTATE
, FormMain::OnSaveState
)
783 EVT_MENU( ID_RESTORESTATE
, FormMain::OnRestoreState
)
785 EVT_MENU( ID_SETSPINCTRLEDITOR
, FormMain::OnSetSpinCtrlEditorClick
)
786 EVT_MENU( ID_TESTREPLACE
, FormMain::OnTestReplaceClick
)
787 EVT_MENU( ID_SETPROPERTYVALUE
, FormMain::OnSetPropertyValue
)
789 EVT_MENU( ID_RUNMINIMAL
, FormMain::OnRunMinimalClick
)
791 EVT_CONTEXT_MENU( FormMain::OnContextMenu
)
794 // -----------------------------------------------------------------------
796 void FormMain::OnMove( wxMoveEvent
& event
)
798 if ( !m_pPropGridManager
)
800 // this check is here so the frame layout can be tested
801 // without creating propertygrid
806 // Update position properties
812 // Must check if properties exist (as they may be deleted).
814 // Using m_pPropGridManager, we can scan all pages automatically.
815 id
= m_pPropGridManager
->GetPropertyByName( wxT("X") );
817 m_pPropGridManager
->SetPropertyValue( id
, x
);
819 id
= m_pPropGridManager
->GetPropertyByName( wxT("Y") );
821 m_pPropGridManager
->SetPropertyValue( id
, y
);
823 id
= m_pPropGridManager
->GetPropertyByName( wxT("Position") );
825 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxPoint(x
,y
)) );
827 // Should always call event.Skip() in frame's MoveEvent handler
831 // -----------------------------------------------------------------------
833 void FormMain::OnResize( wxSizeEvent
& event
)
835 if ( !m_pPropGridManager
)
837 // this check is here so the frame layout can be tested
838 // without creating propertygrid
843 // Update size properties
850 // Must check if properties exist (as they may be deleted).
852 // Using m_pPropGridManager, we can scan all pages automatically.
853 p
= m_pPropGridManager
->GetPropertyByName( wxT("Width") );
854 if ( p
&& !p
->IsValueUnspecified() )
855 m_pPropGridManager
->SetPropertyValue( p
, w
);
857 p
= m_pPropGridManager
->GetPropertyByName( wxT("Height") );
858 if ( p
&& !p
->IsValueUnspecified() )
859 m_pPropGridManager
->SetPropertyValue( p
, h
);
861 id
= m_pPropGridManager
->GetPropertyByName ( wxT("Size") );
863 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxSize(w
,h
)) );
865 // Should always call event.Skip() in frame's SizeEvent handler
869 // -----------------------------------------------------------------------
871 void FormMain::OnPropertyGridChanging( wxPropertyGridEvent
& event
)
873 wxPGProperty
* p
= event
.GetProperty();
875 if ( p
->GetName() == wxT("Font") )
878 wxMessageBox(wxString::Format(wxT("'%s' is about to change (to variant of type '%s')\n\nAllow or deny?"),
879 p
->GetName().c_str(),event
.GetValue().GetType().c_str()),
880 wxT("Testing wxEVT_PG_CHANGING"), wxYES_NO
, m_pPropGridManager
);
884 wxASSERT(event
.CanVeto());
888 // Since we ask a question, it is better if we omit any validation
890 event
.SetValidationFailureBehavior(0);
896 // Note how we use three types of value getting in this method:
897 // A) event.GetPropertyValueAsXXX
898 // B) event.GetPropertValue, and then variant's GetXXX
899 // C) grid's GetPropertyValueAsXXX(id)
901 void FormMain::OnPropertyGridChange( wxPropertyGridEvent
& event
)
903 wxPGProperty
* property
= event
.GetProperty();
905 const wxString
& name
= property
->GetName();
906 wxVariant value
= property
->GetValue();
908 // Don't handle 'unspecified' values
909 if ( value
.IsNull() )
912 // Some settings are disabled outside Windows platform
913 if ( name
== wxT("X") )
914 SetSize ( m_pPropGridManager
->GetPropertyValueAsInt(property
), -1, -1, -1, wxSIZE_USE_EXISTING
);
915 else if ( name
== wxT("Y") )
916 // wxPGVariantToInt is safe long int value getter
917 SetSize ( -1, wxPGVariantToInt(value
), -1, -1, wxSIZE_USE_EXISTING
);
918 else if ( name
== wxT("Width") )
919 SetSize ( -1, -1, m_pPropGridManager
->GetPropertyValueAsInt(property
), -1, wxSIZE_USE_EXISTING
);
920 else if ( name
== wxT("Height") )
921 SetSize ( -1, -1, -1, wxPGVariantToInt(value
), wxSIZE_USE_EXISTING
);
922 else if ( name
== wxT("Label") )
924 SetTitle ( m_pPropGridManager
->GetPropertyValueAsString(property
) );
926 else if ( name
== wxT("Password") )
928 static int pwdMode
= 0;
930 //m_pPropGridManager->SetPropertyAttribute(property, wxPG_STRING_PASSWORD, (long)pwdMode);
936 if ( name
== wxT("Font") )
940 wxASSERT( font
.Ok() );
942 m_pPropGridManager
->SetFont( font
);
945 if ( name
== wxT("Margin Colour") )
947 wxColourPropertyValue cpv
;
949 m_pPropGridManager
->GetGrid()->SetMarginColour( cpv
.m_colour
);
951 else if ( name
== wxT("Cell Colour") )
953 wxColourPropertyValue cpv
;
955 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( cpv
.m_colour
);
957 else if ( name
== wxT("Line Colour") )
959 wxColourPropertyValue cpv
;
961 m_pPropGridManager
->GetGrid()->SetLineColour( cpv
.m_colour
);
963 else if ( name
== wxT("Cell Text Colour") )
965 wxColourPropertyValue cpv
;
967 m_pPropGridManager
->GetGrid()->SetCellTextColour( cpv
.m_colour
);
971 // -----------------------------------------------------------------------
973 void FormMain::OnPropertyGridSelect( wxPropertyGridEvent
& event
)
975 wxPGProperty
* property
= event
.GetProperty();
978 m_itemEnable
->Enable( TRUE
);
979 if ( property
->IsEnabled() )
980 m_itemEnable
->SetItemLabel( wxT("Disable") );
982 m_itemEnable
->SetItemLabel( wxT("Enable") );
986 m_itemEnable
->Enable( FALSE
);
990 wxPGProperty
* prop
= event
.GetProperty();
991 wxStatusBar
* sb
= GetStatusBar();
994 wxString
text(wxT("Selected: "));
995 text
+= m_pPropGridManager
->GetPropertyLabel( prop
);
996 sb
->SetStatusText ( text
);
1001 // -----------------------------------------------------------------------
1003 void FormMain::OnPropertyGridPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1006 wxStatusBar
* sb
= GetStatusBar();
1007 wxString
text(wxT("Page Changed: "));
1008 text
+= m_pPropGridManager
->GetPageName(m_pPropGridManager
->GetSelectedPage());
1009 sb
->SetStatusText( text
);
1013 // -----------------------------------------------------------------------
1015 void FormMain::OnPropertyGridHighlight( wxPropertyGridEvent
& WXUNUSED(event
) )
1019 // -----------------------------------------------------------------------
1021 void FormMain::OnPropertyGridItemRightClick( wxPropertyGridEvent
& event
)
1024 wxPGProperty
* prop
= event
.GetProperty();
1025 wxStatusBar
* sb
= GetStatusBar();
1028 wxString
text(wxT("Right-clicked: "));
1029 text
+= prop
->GetLabel();
1030 text
+= wxT(", name=");
1031 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1032 sb
->SetStatusText( text
);
1036 sb
->SetStatusText( wxEmptyString
);
1041 // -----------------------------------------------------------------------
1043 void FormMain::OnPropertyGridItemDoubleClick( wxPropertyGridEvent
& event
)
1046 wxPGProperty
* prop
= event
.GetProperty();
1047 wxStatusBar
* sb
= GetStatusBar();
1050 wxString
text(wxT("Double-clicked: "));
1051 text
+= prop
->GetLabel();
1052 text
+= wxT(", name=");
1053 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1054 sb
->SetStatusText ( text
);
1058 sb
->SetStatusText ( wxEmptyString
);
1063 // -----------------------------------------------------------------------
1065 void FormMain::OnPropertyGridButtonClick ( wxCommandEvent
& )
1068 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1069 wxStatusBar
* sb
= GetStatusBar();
1072 wxString
text(wxT("Button clicked: "));
1073 text
+= m_pPropGridManager
->GetPropertyLabel(prop
);
1074 text
+= wxT(", name=");
1075 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1076 sb
->SetStatusText( text
);
1080 ::wxMessageBox(wxT("SHOULD NOT HAPPEN!!!"));
1085 // -----------------------------------------------------------------------
1087 void FormMain::OnPropertyGridItemCollapse( wxPropertyGridEvent
& )
1089 wxLogDebug(wxT("Item was Collapsed"));
1092 // -----------------------------------------------------------------------
1094 void FormMain::OnPropertyGridItemExpand( wxPropertyGridEvent
& )
1096 wxLogDebug(wxT("Item was Expanded"));
1099 // -----------------------------------------------------------------------
1101 // EVT_TEXT handling
1102 void FormMain::OnPropertyGridTextUpdate( wxCommandEvent
& event
)
1107 // -----------------------------------------------------------------------
1109 void FormMain::OnPropertyGridKeyEvent( wxKeyEvent
& WXUNUSED(event
) )
1111 // Occurs on wxGTK mostly, but not wxMSW.
1114 // -----------------------------------------------------------------------
1116 void FormMain::OnLabelTextChange( wxCommandEvent
& WXUNUSED(event
) )
1118 // Uncomment following to allow property label modify in real-time
1119 // wxPGProperty& p = m_pPropGridManager->GetGrid()->GetSelection();
1120 // if ( !p.IsOk() ) return;
1121 // m_pPropGridManager->SetPropertyLabel( p, m_tcPropLabel->DoGetValue() );
1124 // -----------------------------------------------------------------------
1126 static const wxChar
* _fs_windowstyle_labels
[] = {
1127 wxT("wxSIMPLE_BORDER"),
1128 wxT("wxDOUBLE_BORDER"),
1129 wxT("wxSUNKEN_BORDER"),
1130 wxT("wxRAISED_BORDER"),
1132 wxT("wxTRANSPARENT_WINDOW"),
1133 wxT("wxTAB_TRAVERSAL"),
1134 wxT("wxWANTS_CHARS"),
1135 #if wxNO_FULL_REPAINT_ON_RESIZE
1136 wxT("wxNO_FULL_REPAINT_ON_RESIZE"),
1139 wxT("wxALWAYS_SHOW_SB"),
1140 wxT("wxCLIP_CHILDREN"),
1141 #if wxFULL_REPAINT_ON_RESIZE
1142 wxT("wxFULL_REPAINT_ON_RESIZE"),
1144 (const wxChar
*) NULL
// terminator is always needed
1147 static const long _fs_windowstyle_values
[] = {
1153 wxTRANSPARENT_WINDOW
,
1156 #if wxNO_FULL_REPAINT_ON_RESIZE
1157 wxNO_FULL_REPAINT_ON_RESIZE
,
1162 #if wxFULL_REPAINT_ON_RESIZE
1163 wxFULL_REPAINT_ON_RESIZE
1167 static const wxChar
* _fs_framestyle_labels
[] = {
1172 wxT("wxSTAY_ON_TOP"),
1173 wxT("wxSYSTEM_MENU"),
1174 wxT("wxRESIZE_BORDER"),
1175 wxT("wxFRAME_TOOL_WINDOW"),
1176 wxT("wxFRAME_NO_TASKBAR"),
1177 wxT("wxFRAME_FLOAT_ON_PARENT"),
1178 wxT("wxFRAME_SHAPED"),
1179 (const wxChar
*) NULL
1182 static const long _fs_framestyle_values
[] = {
1190 wxFRAME_TOOL_WINDOW
,
1192 wxFRAME_FLOAT_ON_PARENT
,
1196 // -----------------------------------------------------------------------
1198 void FormMain::OnTestXRC(wxCommandEvent
& WXUNUSED(event
))
1200 wxMessageBox(wxT("Sorrt, not yet implemented"));
1203 void FormMain::OnEnableCommonValues(wxCommandEvent
& WXUNUSED(event
))
1205 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1207 prop
->EnableCommonValue();
1209 wxMessageBox(wxT("First select a property"));
1212 void FormMain::PopulateWithStandardItems ()
1214 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1215 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Standard Items"));
1217 // Append is ideal way to add items to wxPropertyGrid.
1218 pg
->Append( new wxPropertyCategory(wxT("Appearance"),wxPG_LABEL
) );
1220 pg
->Append( new wxStringProperty(wxT("Label"),wxPG_LABEL
,GetTitle()) );
1221 pg
->Append( new wxFontProperty(wxT("Font"),wxPG_LABEL
) );
1222 pg
->SetPropertyHelpString ( wxT("Font"), wxT("Editing this will change font used in the property grid.") );
1224 pg
->Append( new wxSystemColourProperty(wxT("Margin Colour"),wxPG_LABEL
,
1225 pg
->GetGrid()->GetMarginColour()) );
1227 pg
->Append( new wxSystemColourProperty(wxT("Cell Colour"),wxPG_LABEL
,
1228 pg
->GetGrid()->GetCellBackgroundColour()) );
1229 pg
->Append( new wxSystemColourProperty(wxT("Cell Text Colour"),wxPG_LABEL
,
1230 pg
->GetGrid()->GetCellTextColour()) );
1231 pg
->Append( new wxSystemColourProperty(wxT("Line Colour"),wxPG_LABEL
,
1232 pg
->GetGrid()->GetLineColour()) );
1233 pg
->Append( new wxFlagsProperty(wxT("Window Styles"),wxPG_LABEL
,
1234 m_combinedFlags
, GetWindowStyle()) );
1236 //pg->SetPropertyAttribute(wxT("Window Styles"),wxPG_BOOL_USE_CHECKBOX,true,wxPG_RECURSE);
1238 pg
->Append( new wxCursorProperty(wxT("Cursor"),wxPG_LABEL
) );
1240 pg
->Append( new wxPropertyCategory(wxT("Position"),wxT("PositionCategory")) );
1241 pg
->SetPropertyHelpString( wxT("PositionCategory"), wxT("Change in items in this category will cause respective changes in frame.") );
1243 // Let's demonstrate 'Units' attribute here
1245 // Note that we use many attribute constants instead of strings here
1246 // (for instance, wxPG_ATTR_MIN, instead of wxT("min")).
1247 // Using constant may reduce binary size.
1249 pg
->Append( new wxIntProperty(wxT("Height"),wxPG_LABEL
,480) );
1250 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MIN
, (long)10 );
1251 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MAX
, (long)2048 );
1252 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1254 // Set value to unspecified so that InlineHelp attribute will be demonstrated
1255 pg
->SetPropertyValueUnspecified(wxT("Height"));
1256 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_INLINE_HELP
, wxT("Enter new height for window") );
1257 pg
->SetPropertyHelpString(wxT("Height"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1259 pg
->Append( new wxIntProperty(wxT("Width"),wxPG_LABEL
,640) );
1260 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MIN
, (long)10 );
1261 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MAX
, (long)2048 );
1262 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1264 pg
->SetPropertyValueUnspecified(wxT("Width"));
1265 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_INLINE_HELP
, wxT("Enter new width for window") );
1266 pg
->SetPropertyHelpString(wxT("Width"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1268 pg
->Append( new wxIntProperty(wxT("X"),wxPG_LABEL
,10) );
1269 pg
->SetPropertyAttribute(wxT("X"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1270 pg
->SetPropertyHelpString(wxT("X"), wxT("This property uses \"Units\" attribute.") );
1272 pg
->Append( new wxIntProperty(wxT("Y"),wxPG_LABEL
,10) );
1273 pg
->SetPropertyAttribute(wxT("Y"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1274 pg
->SetPropertyHelpString(wxT("Y"), wxT("This property uses \"Units\" attribute.") );
1276 const wxChar
* disabledHelpString
= wxT("This property is simply disabled. Inorder to have label disabled as well, ")
1277 wxT("you need to set wxPG_EX_GREY_LABEL_WHEN_DISABLED using SetExtraStyle.");
1279 pg
->Append( new wxPropertyCategory(wxT("Environment"),wxPG_LABEL
) );
1280 pg
->Append( new wxStringProperty(wxT("Operating System"),wxPG_LABEL
,::wxGetOsDescription()) );
1282 pg
->Append( new wxStringProperty(wxT("User Id"),wxPG_LABEL
,::wxGetUserId()) );
1283 pg
->Append( new wxDirProperty(wxT("User Home"),wxPG_LABEL
,::wxGetUserHome()) );
1284 pg
->Append( new wxStringProperty(wxT("User Name"),wxPG_LABEL
,::wxGetUserName()) );
1286 // Disable some of them
1287 pg
->DisableProperty( wxT("Operating System") );
1288 pg
->DisableProperty( wxT("User Id") );
1289 pg
->DisableProperty( wxT("User Name") );
1291 pg
->SetPropertyHelpString( wxT("Operating System"), disabledHelpString
);
1292 pg
->SetPropertyHelpString( wxT("User Id"), disabledHelpString
);
1293 pg
->SetPropertyHelpString( wxT("User Name"), disabledHelpString
);
1295 pg
->Append( new wxPropertyCategory(wxT("More Examples"),wxPG_LABEL
) );
1297 pg
->Append( new wxFontDataProperty( wxT("FontDataProperty"), wxPG_LABEL
) );
1298 pg
->SetPropertyHelpString( wxT("FontDataProperty"),
1299 wxT("This demonstrates wxFontDataProperty class defined in this sample app. ")
1300 wxT("It is exactly like wxFontProperty from the library, but also has colour sub-property.")
1303 pg
->Append( new wxDirsProperty(wxT("DirsProperty"),wxPG_LABEL
) );
1304 pg
->SetPropertyHelpString( wxT("DirsProperty"),
1305 wxT("This demonstrates wxDirsProperty class defined in this sample app. ")
1306 wxT("It is built with WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR macro, ")
1307 wxT("with custom action (dir dialog popup) defined.")
1310 pg
->Append( new wxAdvImageFileProperty(wxT("AdvImageFileProperty"),wxPG_LABEL
) );
1311 pg
->SetPropertyHelpString( wxT("AdvImageFileProperty"),
1312 wxT("This demonstrates wxAdvImageFileProperty class defined in this sample app. ")
1313 wxT("Button can be used to add new images to the popup list.")
1316 wxArrayDouble arrdbl
;
1323 pg
->Append( new wxArrayDoubleProperty(wxT("ArrayDoubleProperty"),wxPG_LABEL
,arrdbl
) );
1324 //pg->SetPropertyAttribute(wxT("ArrayDoubleProperty"),wxPG_FLOAT_PRECISION,(long)2);
1325 pg
->SetPropertyHelpString( wxT("ArrayDoubleProperty"),
1326 wxT("This demonstrates wxArrayDoubleProperty class defined in this sample app. ")
1327 wxT("It is an example of a custom list editor property.")
1330 pg
->Append( new wxLongStringProperty(wxT("Information"),wxPG_LABEL
,
1331 wxT("Editing properties will have immediate effect on this window, ")
1332 wxT("and vice versa (atleast in most cases, that is).")
1334 pg
->SetPropertyHelpString( wxT("Information"),
1335 wxT("This property is read-only.") );
1337 pg
->SetPropertyReadOnly( wxT("Information"), true );
1340 // Set test information for cells in columns 3 and 4
1341 // (reserve column 2 for displaying units)
1342 wxPropertyGridIterator it
;
1343 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_FOLDER
);
1345 for ( it
= pg
->GetGrid()->GetIterator();
1349 wxPGProperty
* p
= *it
;
1350 if ( p
->IsCategory() )
1353 pg
->SetPropertyCell( p
, 3, wxT("Cell 3"), bmp
);
1354 pg
->SetPropertyCell( p
, 4, wxT("Cell 4"), wxNullBitmap
, *wxWHITE
, *wxBLACK
);
1358 // -----------------------------------------------------------------------
1360 void FormMain::PopulateWithExamples ()
1362 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1363 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Examples"));
1367 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1368 //pg->SetPropertyHelpString ( wxT("Examples"), wxT("This category has example of (almost) every built-in property class.") );
1371 pg
->Append( new wxIntProperty ( wxT("SpinCtrl"), wxPG_LABEL
, 0 ) );
1373 pg
->SetPropertyEditor( wxT("SpinCtrl"), wxPGEditor_SpinCtrl
);
1374 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MIN
, (long)-10 ); // Use constants instead of string
1375 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MAX
, (long)16384 ); // for reduced binary size.
1376 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Step"), (long)2 );
1377 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("MotionSpin"), true );
1378 //pg->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Wrap"), true );
1380 pg
->SetPropertyHelpString( wxT("SpinCtrl"),
1381 wxT("This is regular wxIntProperty, which editor has been ")
1382 wxT("changed to wxPGEditor_SpinCtrl. Note however that ")
1383 wxT("static wxPropertyGrid::RegisterAdditionalEditors() ")
1384 wxT("needs to be called prior to using it."));
1388 // Add bool property
1389 pg
->Append( new wxBoolProperty( wxT("BoolProperty"), wxPG_LABEL
, false ) );
1391 // Add bool property with check box
1392 pg
->Append( new wxBoolProperty( wxT("BoolProperty with CheckBox"), wxPG_LABEL
, false ) );
1393 pg
->SetPropertyAttribute( wxT("BoolProperty with CheckBox"),
1394 wxPG_BOOL_USE_CHECKBOX
,
1397 pg
->SetPropertyHelpString( wxT("BoolProperty with CheckBox"),
1398 wxT("Property attribute wxPG_BOOL_USE_CHECKBOX has been set to true.") );
1400 pid
= pg
->Append( new wxFloatProperty( wxT("FloatProperty"),
1404 // A string property that can be edited in a separate editor dialog.
1405 pg
->Append( new wxLongStringProperty( wxT("LongStringProperty"), wxT("LongStringProp"),
1406 wxT("This is much longer string than the first one. Edit it by clicking the button.") ) );
1408 // A property that edits a wxArrayString.
1409 wxArrayString example_array
;
1410 example_array
.Add( wxT("String 1"));
1411 example_array
.Add( wxT("String 2"));
1412 example_array
.Add( wxT("String 3"));
1413 pg
->Append( new wxArrayStringProperty( wxT("ArrayStringProperty"), wxPG_LABEL
,
1416 // Test adding same category multiple times ( should not actually create a new one )
1417 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1419 // A file selector property. Note that argument between name
1420 // and initial value is wildcard (format same as in wxFileDialog).
1421 prop
= new wxFileProperty( wxT("FileProperty"), wxT("TextFile") );
1424 prop
->SetAttribute(wxPG_FILE_WILDCARD
,wxT("Text Files (*.txt)|*.txt"));
1425 prop
->SetAttribute(wxPG_FILE_DIALOG_TITLE
,wxT("Custom File Dialog Title"));
1426 prop
->SetAttribute(wxPG_FILE_SHOW_FULL_PATH
,false);
1429 prop
->SetAttribute(wxPG_FILE_SHOW_RELATIVE_PATH
,wxT("C:\\Windows"));
1430 pg
->SetPropertyValue(prop
,wxT("C:\\Windows\\System32\\msvcrt71.dll"));
1434 // An image file property. Arguments are just like for FileProperty, but
1435 // wildcard is missing (it is autogenerated from supported image formats).
1436 // If you really need to override it, create property separately, and call
1437 // its SetWildcard method.
1438 pg
->Append( new wxImageFileProperty( wxT("ImageFile"), wxPG_LABEL
) );
1441 pid
= pg
->Append( new wxColourProperty(wxT("ColourProperty"),wxPG_LABEL
,*wxRED
) );
1442 //pg->SetPropertyAttribute(pid,wxPG_COLOUR_ALLOW_CUSTOM,false);
1443 pg
->SetPropertyEditor( wxT("ColourProperty"), wxPGEditor_ComboBox
);
1444 pg
->GetProperty(wxT("ColourProperty"))->SetFlag(wxPG_PROP_AUTO_UNSPECIFIED
);
1445 pg
->SetPropertyHelpString( wxT("ColourProperty"),
1446 wxT("wxPropertyGrid::SetPropertyEditor method has been used to change ")
1447 wxT("editor of this property to wxPGEditor_ComboBox)"));
1450 // This demonstrates using alternative editor for colour property
1451 // to trigger colour dialog directly from button.
1452 pg
->Append( new wxColourProperty(wxT("ColourProperty2"),wxPG_LABEL
,*wxGREEN
) );
1455 // wxEnumProperty does not store strings or even list of strings
1456 // ( so that's why they are static in function ).
1457 static const wxChar
* enum_prop_labels
[] = { wxT("One Item"),
1458 wxT("Another Item"), wxT("One More"), wxT("This Is Last"), NULL
};
1460 // this value array would be optional if values matched string indexes
1461 static long enum_prop_values
[] = { 40, 80, 120, 160 };
1463 // note that the initial value (the last argument) is the actual value,
1464 // not index or anything like that. Thus, our value selects "Another Item".
1466 // 0 before value is number of items. If it is 0, like in our example,
1467 // number of items is calculated, and this requires that the string pointer
1468 // array is terminated with NULL.
1469 pg
->Append( new wxEnumProperty(wxT("EnumProperty"),wxPG_LABEL
,
1470 enum_prop_labels
, enum_prop_values
, 80 ) );
1474 // use basic table from our previous example
1475 // can also set/add wxArrayStrings and wxArrayInts directly.
1476 soc
.Set( enum_prop_labels
, enum_prop_values
);
1479 soc
.Add( wxT("Look, it continues"), 200 );
1480 soc
.Add( wxT("Even More"), 240 );
1481 soc
.Add( wxT("And More"), 280 );
1482 soc
.Add( wxT("True End of the List"), 320 );
1484 // Test custom colours ([] operator of wxPGChoices returns
1485 // references to wxPGChoiceEntry).
1486 soc
[1].SetFgCol(*wxRED
);
1487 soc
[1].SetBgCol(*wxLIGHT_GREY
);
1488 soc
[2].SetFgCol(*wxGREEN
);
1489 soc
[2].SetBgCol(*wxLIGHT_GREY
);
1490 soc
[3].SetFgCol(*wxBLUE
);
1491 soc
[3].SetBgCol(*wxLIGHT_GREY
);
1492 soc
[4].SetBitmap(wxArtProvider::GetBitmap(wxART_FOLDER
));
1494 pg
->Append( new wxEnumProperty(wxT("EnumProperty 2"),
1498 pg
->GetProperty(wxT("EnumProperty 2"))->AddChoice(wxT("Testing Extra"), 360);
1500 // Here we only display the original 'soc' choices
1501 pg
->Append( new wxEnumProperty(wxT("EnumProperty 3"),wxPG_LABEL
,
1504 // 'soc' plus one exclusive extra choice "4th only"
1505 pg
->Append( new wxEnumProperty(wxT("EnumProperty 4"),wxPG_LABEL
,
1507 pg
->GetProperty(wxT("EnumProperty 4"))->AddChoice(wxT("4th only"), 360);
1509 pg
->SetPropertyHelpString(wxT("EnumProperty 4"),
1510 wxT("Should have one extra item when compared to EnumProperty 3"));
1512 // Password property example.
1513 pg
->Append( new wxStringProperty(wxT("Password"),wxPG_LABEL
, wxT("password")) );
1514 pg
->SetPropertyAttribute( wxT("Password"), wxPG_STRING_PASSWORD
, true );
1515 pg
->SetPropertyHelpString( wxT("Password"),
1516 wxT("Has attribute wxPG_STRING_PASSWORD set to true") );
1518 // String editor with dir selector button. Uses wxEmptyString as name, which
1519 // is allowed (naturally, in this case property cannot be accessed by name).
1520 pg
->Append( new wxDirProperty( wxT("DirProperty"), wxPG_LABEL
, ::wxGetUserHome()) );
1521 pg
->SetPropertyAttribute( wxT("DirProperty"),
1522 wxPG_DIR_DIALOG_MESSAGE
,
1523 wxT("This is a custom dir dialog message") );
1525 // Add string property - first arg is label, second name, and third initial value
1526 pg
->Append( new wxStringProperty ( wxT("StringProperty"), wxPG_LABEL
) );
1527 pg
->SetPropertyMaxLength( wxT("StringProperty"), 6 );
1528 pg
->SetPropertyHelpString( wxT("StringProperty"),
1529 wxT("Max length of this text has been limited to 6, using wxPropertyGrid::SetPropertyMaxLength.") );
1531 // Set value after limiting so that it will be applied
1532 pg
->SetPropertyValue( wxT("StringProperty"), wxT("some text") );
1535 // this value array would be optional if values matched string indexes
1536 //long flags_prop_values[] = { wxICONIZE, wxCAPTION, wxMINIMIZE_BOX, wxMAXIMIZE_BOX };
1538 //pg->Append( wxFlagsProperty(wxT("Example of FlagsProperty"),wxT("FlagsProp"),
1539 // flags_prop_labels, flags_prop_values, 0, GetWindowStyle() ) );
1542 // Multi choice dialog.
1543 wxArrayString tchoices
;
1544 tchoices
.Add(wxT("Cabbage"));
1545 tchoices
.Add(wxT("Carrot"));
1546 tchoices
.Add(wxT("Onion"));
1547 tchoices
.Add(wxT("Potato"));
1548 tchoices
.Add(wxT("Strawberry"));
1550 wxArrayString tchoicesValues
;
1551 tchoicesValues
.Add(wxT("Carrot"));
1552 tchoicesValues
.Add(wxT("Potato"));
1554 pg
->Append( new wxEnumProperty(wxT("EnumProperty X"),wxPG_LABEL
, tchoices
) );
1556 pg
->Append( new wxMultiChoiceProperty( wxT("MultiChoiceProperty"), wxPG_LABEL
,
1557 tchoices
, tchoicesValues
) );
1558 pg
->SetPropertyAttribute( wxT("MultiChoiceProperty"), wxT("UserStringMode"), true );
1560 pg
->Append( new wxSizeProperty( wxT("SizeProperty"), wxT("Size"), GetSize() ) );
1561 pg
->Append( new wxPointProperty( wxT("PointProperty"), wxT("Position"), GetPosition() ) );
1564 pg
->Append( new wxUIntProperty( wxT("UIntProperty"), wxPG_LABEL
, wxULongLong(wxULL(0xFEEEFEEEFEEE))));
1565 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX
, wxPG_PREFIX_NONE
);
1566 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE
, wxPG_BASE_HEX
);
1567 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX, wxPG_PREFIX_NONE );
1568 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE, wxPG_BASE_OCT );
1571 // wxEditEnumProperty
1573 eech
.Add(wxT("Choice 1"));
1574 eech
.Add(wxT("Choice 2"));
1575 eech
.Add(wxT("Choice 3"));
1576 pg
->Append( new wxEditEnumProperty(wxT("EditEnumProperty"), wxPG_LABEL
, eech
) ); // , wxT("Choice 2")
1579 //wxTextValidator validator1(wxFILTER_NUMERIC,&v_);
1580 //pg->SetPropertyValidator( wxT("EditEnumProperty"), validator1 );
1584 // wxDateTimeProperty
1585 pg
->Append( new wxDateProperty(wxT("DateProperty"), wxPG_LABEL
, wxDateTime::Now() ) );
1587 #if wxUSE_DATEPICKCTRL
1588 pg
->SetPropertyAttribute( wxT("DateProperty"), wxPG_DATE_PICKER_STYLE
,
1589 (long)(wxDP_DROPDOWN
|
1593 pg
->SetPropertyHelpString( wxT("DateProperty"),
1594 wxT("Attribute wxPG_DATE_PICKER_STYLE has been set to (long)")
1595 wxT("(wxDP_DROPDOWN | wxDP_SHOWCENTURY | wxDP_ALLOWNONE).") );
1601 // Add Triangle properties as both wxTriangleProperty and
1602 // a generic parent property (using wxStringProperty).
1604 wxPGProperty
* topId
= pg
->Append( new wxStringProperty(wxT("3D Object"), wxPG_LABEL
, wxT("<composed>")) );
1606 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 1"), wxT("Triangle 1"), wxT("<composed>")) );
1607 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1608 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1609 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1611 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 2"), wxT("Triangle 2") ) );
1613 pg
->SetPropertyHelpString( wxT("3D Object"),
1614 wxT("3D Object is wxStringProperty with value \"<composed>\". Two of its children are similar wxStringProperties with ")
1615 wxT("three wxVectorProperty children, and other two are custom wxTriangleProperties.") );
1617 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 3"), wxT("Triangle 3"), wxT("<composed>")) );
1618 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1619 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1620 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1622 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 4"), wxT("Triangle 4") ) );
1625 // This snippet is a doc sample test
1627 wxPGProperty
* carProp
= pg
->Append(new wxStringProperty(wxT("Car"),
1629 wxT("<composed>")));
1631 pg
->AppendIn(carProp
, new wxStringProperty(wxT("Model"),
1633 wxT("Lamborghini Diablo SV")));
1635 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Engine Size (cc)"),
1639 wxPGProperty
* speedsProp
= pg
->AppendIn(carProp
,
1640 new wxStringProperty(wxT("Speeds"),
1642 wxT("<composed>")));
1644 pg
->AppendIn( speedsProp
, new wxIntProperty(wxT("Max. Speed (mph)"),
1646 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("0-100 mph (sec)"),
1648 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("1/4 mile (sec)"),
1651 // This is how child property can be referred to by name
1652 pg
->SetPropertyValue( wxT("Car.Speeds.Max. Speed (mph)"), 300 );
1654 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Price ($)"),
1658 pg
->AppendIn(carProp
, new wxBoolProperty(wxT("Convertible"),
1662 // Displayed value of "Car" property is now very close to this:
1663 // "Lamborghini Diablo SV; 5707 [300; 3.9; 8.6] 300000"
1666 // Test wxSampleMultiButtonEditor
1667 pg
->Append( new wxLongStringProperty(wxT("MultipleButtons"), wxPG_LABEL
) );
1668 pg
->SetPropertyEditor(wxT("MultipleButtons"), m_pSampleMultiButtonEditor
);
1670 // Test SingleChoiceProperty
1671 pg
->Append( new SingleChoiceProperty(wxT("SingleChoiceProperty")) );
1675 // Test adding variable height bitmaps in wxPGChoices
1678 bc
.Add(wxT("Wee"), wxBitmap(16, 16));
1679 bc
.Add(wxT("Not so wee"), wxBitmap(32, 32));
1680 bc
.Add(wxT("Friggin' huge"), wxBitmap(64, 64));
1682 pg
->Append( new wxEnumProperty(wxT("Variable Height Bitmaps"),
1688 // Test how non-editable composite strings appear
1689 pid
= new wxStringProperty(wxT("wxWidgets Traits"), wxPG_LABEL
, wxT("<composed>"));
1690 pg
->SetPropertyReadOnly(pid
);
1693 // For testing purposes, combine two methods of adding children
1696 // AddChild() requires that we call this
1697 pid
->SetParentalType(wxPG_PROP_MISC_PARENT
);
1699 pid
->AddChild( new wxStringProperty(wxT("Latest Release"), wxPG_LABEL
, wxT("2.8.8")));
1700 pid
->AddChild( new wxBoolProperty(wxT("Win API"), wxPG_LABEL
, true) );
1704 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1705 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Cocoa"), wxPG_LABEL
, true) );
1706 pg
->AppendIn(pid
, new wxBoolProperty(wxT("BeOS"), wxPG_LABEL
, false) );
1707 pg
->AppendIn(pid
, new wxStringProperty(wxT("SVN Trunk Version"), wxPG_LABEL
, wxT("2.9.0")) );
1708 pg
->AppendIn(pid
, new wxBoolProperty(wxT("GTK+"), wxPG_LABEL
, true) );
1709 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Sky OS"), wxPG_LABEL
, false) );
1710 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1712 AddTestProperties(pg
);
1715 // -----------------------------------------------------------------------
1717 void FormMain::PopulateWithLibraryConfig ()
1719 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1720 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("wxWidgets Library Config"));
1724 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_REPORT_VIEW
);
1728 #define ADD_WX_LIB_CONF_GROUP(A) \
1729 cat = pg->AppendIn( pid, new wxPropertyCategory(A) ); \
1730 pg->SetPropertyCell( cat, 0, wxPG_LABEL, bmp );
1732 #define ADD_WX_LIB_CONF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)((A>0)?true:false)));
1733 #define ADD_WX_LIB_CONF_NODEF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)false) ); \
1734 pg->DisableProperty(wxT(#A));
1736 pid
= pg
->Append( new wxPropertyCategory( wxT("wxWidgets Library Configuration") ) );
1737 pg
->SetPropertyCell( pid
, 0, wxPG_LABEL
, bmp
);
1739 ADD_WX_LIB_CONF_GROUP(wxT("Global Settings"))
1740 ADD_WX_LIB_CONF( wxUSE_GUI
)
1742 ADD_WX_LIB_CONF_GROUP(wxT("Compatibility Settings"))
1743 #if defined(WXWIN_COMPATIBILITY_2_2)
1744 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_2
)
1746 #if defined(WXWIN_COMPATIBILITY_2_4)
1747 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_4
)
1749 #if defined(WXWIN_COMPATIBILITY_2_6)
1750 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_6
)
1752 #if defined(WXWIN_COMPATIBILITY_2_8)
1753 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_8
)
1755 #ifdef wxFONT_SIZE_COMPATIBILITY
1756 ADD_WX_LIB_CONF( wxFONT_SIZE_COMPATIBILITY
)
1758 ADD_WX_LIB_CONF_NODEF ( wxFONT_SIZE_COMPATIBILITY
)
1760 #ifdef wxDIALOG_UNIT_COMPATIBILITY
1761 ADD_WX_LIB_CONF( wxDIALOG_UNIT_COMPATIBILITY
)
1763 ADD_WX_LIB_CONF_NODEF ( wxDIALOG_UNIT_COMPATIBILITY
)
1766 ADD_WX_LIB_CONF_GROUP(wxT("Debugging Settings"))
1767 ADD_WX_LIB_CONF( wxUSE_DEBUG_CONTEXT
)
1768 ADD_WX_LIB_CONF( wxUSE_MEMORY_TRACING
)
1769 ADD_WX_LIB_CONF( wxUSE_GLOBAL_MEMORY_OPERATORS
)
1770 ADD_WX_LIB_CONF( wxUSE_DEBUG_NEW_ALWAYS
)
1771 ADD_WX_LIB_CONF( wxUSE_ON_FATAL_EXCEPTION
)
1773 ADD_WX_LIB_CONF_GROUP(wxT("Unicode Support"))
1774 ADD_WX_LIB_CONF( wxUSE_UNICODE
)
1775 ADD_WX_LIB_CONF( wxUSE_UNICODE_MSLU
)
1776 ADD_WX_LIB_CONF( wxUSE_WCHAR_T
)
1778 ADD_WX_LIB_CONF_GROUP(wxT("Global Features"))
1779 ADD_WX_LIB_CONF( wxUSE_EXCEPTIONS
)
1780 ADD_WX_LIB_CONF( wxUSE_EXTENDED_RTTI
)
1781 ADD_WX_LIB_CONF( wxUSE_STL
)
1782 ADD_WX_LIB_CONF( wxUSE_LOG
)
1783 ADD_WX_LIB_CONF( wxUSE_LOGWINDOW
)
1784 ADD_WX_LIB_CONF( wxUSE_LOGGUI
)
1785 ADD_WX_LIB_CONF( wxUSE_LOG_DIALOG
)
1786 ADD_WX_LIB_CONF( wxUSE_CMDLINE_PARSER
)
1787 ADD_WX_LIB_CONF( wxUSE_THREADS
)
1788 ADD_WX_LIB_CONF( wxUSE_STREAMS
)
1789 ADD_WX_LIB_CONF( wxUSE_STD_IOSTREAM
)
1791 ADD_WX_LIB_CONF_GROUP(wxT("Non-GUI Features"))
1792 ADD_WX_LIB_CONF( wxUSE_LONGLONG
)
1793 ADD_WX_LIB_CONF( wxUSE_FILE
)
1794 ADD_WX_LIB_CONF( wxUSE_FFILE
)
1795 ADD_WX_LIB_CONF( wxUSE_FSVOLUME
)
1796 ADD_WX_LIB_CONF( wxUSE_TEXTBUFFER
)
1797 ADD_WX_LIB_CONF( wxUSE_TEXTFILE
)
1798 ADD_WX_LIB_CONF( wxUSE_INTL
)
1799 ADD_WX_LIB_CONF( wxUSE_DATETIME
)
1800 ADD_WX_LIB_CONF( wxUSE_TIMER
)
1801 ADD_WX_LIB_CONF( wxUSE_STOPWATCH
)
1802 ADD_WX_LIB_CONF( wxUSE_CONFIG
)
1803 #ifdef wxUSE_CONFIG_NATIVE
1804 ADD_WX_LIB_CONF( wxUSE_CONFIG_NATIVE
)
1806 ADD_WX_LIB_CONF_NODEF ( wxUSE_CONFIG_NATIVE
)
1808 ADD_WX_LIB_CONF( wxUSE_DIALUP_MANAGER
)
1809 ADD_WX_LIB_CONF( wxUSE_DYNLIB_CLASS
)
1810 ADD_WX_LIB_CONF( wxUSE_DYNAMIC_LOADER
)
1811 ADD_WX_LIB_CONF( wxUSE_SOCKETS
)
1812 ADD_WX_LIB_CONF( wxUSE_FILESYSTEM
)
1813 ADD_WX_LIB_CONF( wxUSE_FS_ZIP
)
1814 ADD_WX_LIB_CONF( wxUSE_FS_INET
)
1815 ADD_WX_LIB_CONF( wxUSE_ZIPSTREAM
)
1816 ADD_WX_LIB_CONF( wxUSE_ZLIB
)
1817 ADD_WX_LIB_CONF( wxUSE_APPLE_IEEE
)
1818 ADD_WX_LIB_CONF( wxUSE_JOYSTICK
)
1819 ADD_WX_LIB_CONF( wxUSE_FONTMAP
)
1820 ADD_WX_LIB_CONF( wxUSE_MIMETYPE
)
1821 ADD_WX_LIB_CONF( wxUSE_PROTOCOL
)
1822 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FILE
)
1823 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FTP
)
1824 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_HTTP
)
1825 ADD_WX_LIB_CONF( wxUSE_URL
)
1826 #ifdef wxUSE_URL_NATIVE
1827 ADD_WX_LIB_CONF( wxUSE_URL_NATIVE
)
1829 ADD_WX_LIB_CONF_NODEF ( wxUSE_URL_NATIVE
)
1831 ADD_WX_LIB_CONF( wxUSE_REGEX
)
1832 ADD_WX_LIB_CONF( wxUSE_SYSTEM_OPTIONS
)
1833 ADD_WX_LIB_CONF( wxUSE_SOUND
)
1835 ADD_WX_LIB_CONF( wxUSE_XRC
)
1837 ADD_WX_LIB_CONF_NODEF ( wxUSE_XRC
)
1839 ADD_WX_LIB_CONF( wxUSE_XML
)
1841 // Set them to use check box.
1842 pg
->SetPropertyAttribute(pid
,wxPG_BOOL_USE_CHECKBOX
,true,wxPG_RECURSE
);
1847 // Handle events of the third page here.
1848 class wxMyPropertyGridPage
: public wxPropertyGridPage
1852 // Return false here to indicate unhandled events should be
1853 // propagated to manager's parent, as normal.
1854 virtual bool IsHandlingAllEvents() const { return false; }
1858 virtual wxPGProperty
* DoInsert( wxPGProperty
* parent
,
1860 wxPGProperty
* property
)
1862 return wxPropertyGridPage::DoInsert(parent
,index
,property
);
1865 void OnPropertySelect( wxPropertyGridEvent
& event
);
1866 void OnPropertyChanging( wxPropertyGridEvent
& event
);
1867 void OnPropertyChange( wxPropertyGridEvent
& event
);
1868 void OnPageChange( wxPropertyGridEvent
& event
);
1871 DECLARE_EVENT_TABLE()
1875 BEGIN_EVENT_TABLE(wxMyPropertyGridPage
, wxPropertyGridPage
)
1876 EVT_PG_SELECTED( wxID_ANY
, wxMyPropertyGridPage::OnPropertySelect
)
1877 EVT_PG_CHANGING( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChanging
)
1878 EVT_PG_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChange
)
1879 EVT_PG_PAGE_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPageChange
)
1883 void wxMyPropertyGridPage::OnPropertySelect( wxPropertyGridEvent
& WXUNUSED(event
) )
1885 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertySelect()"));
1888 void wxMyPropertyGridPage::OnPropertyChange( wxPropertyGridEvent
& event
)
1890 wxPGProperty
* p
= event
.GetProperty();
1891 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChange('%s', to value '%s')"),
1892 p
->GetName().c_str(),
1893 p
->GetDisplayedString().c_str());
1896 void wxMyPropertyGridPage::OnPropertyChanging( wxPropertyGridEvent
& event
)
1898 wxPGProperty
* p
= event
.GetProperty();
1899 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChanging('%s', to value '%s')"),
1900 p
->GetName().c_str(),
1901 event
.GetValue().GetString().c_str());
1904 void wxMyPropertyGridPage::OnPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1906 wxLogDebug(wxT("wxMyPropertyGridPage::OnPageChange()"));
1910 class wxPGKeyHandler
: public wxEvtHandler
1914 void OnKeyEvent( wxKeyEvent
& event
)
1916 wxMessageBox(wxString::Format(wxT("%i"),event
.GetKeyCode()));
1920 DECLARE_EVENT_TABLE()
1923 BEGIN_EVENT_TABLE(wxPGKeyHandler
,wxEvtHandler
)
1924 EVT_KEY_DOWN( wxPGKeyHandler::OnKeyEvent
)
1928 // -----------------------------------------------------------------------
1930 void FormMain::InitPanel()
1935 wxWindow
* panel
= new wxPanel(this, wxID_ANY
,
1936 wxPoint(0, 0), wxSize(400, 400),
1941 wxBoxSizer
* topSizer
= new wxBoxSizer ( wxVERTICAL
);
1943 m_topSizer
= topSizer
;
1946 void FormMain::FinalizePanel( bool wasCreated
)
1948 // Button for tab traversal testing
1949 m_topSizer
->Add( new wxButton(m_panel
, wxID_ANY
,
1950 wxS("Should be able to move here with Tab")),
1953 m_panel
->SetSizer( m_topSizer
);
1954 m_topSizer
->SetSizeHints( m_panel
);
1956 wxBoxSizer
* panelSizer
= new wxBoxSizer( wxHORIZONTAL
);
1957 panelSizer
->Add( m_panel
, 1, wxEXPAND
|wxFIXED_MINSIZE
);
1959 SetSizer( panelSizer
);
1960 panelSizer
->SetSizeHints( this );
1963 FinalizeFramePosition();
1966 void FormMain::PopulateGrid()
1968 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1969 pgman
->AddPage(wxT("Standard Items"));
1971 PopulateWithStandardItems();
1973 pgman
->AddPage(wxT("wxWidgets Library Config"));
1975 PopulateWithLibraryConfig();
1977 wxPropertyGridPage
* myPage
= new wxMyPropertyGridPage();
1978 myPage
->Append( new wxIntProperty ( wxT("IntProperty"), wxPG_LABEL
, 12345678 ) );
1980 // Use wxMyPropertyGridPage (see above) to test the
1981 // custom wxPropertyGridPage feature.
1982 pgman
->AddPage(wxT("Examples"),wxNullBitmap
,myPage
);
1984 PopulateWithExamples();
1987 void FormMain::CreateGrid( int style
, int extraStyle
)
1990 // This function (re)creates the property grid in our sample
1994 style
= // default style
1995 wxPG_BOLD_MODIFIED
|
1996 wxPG_SPLITTER_AUTO_CENTER
|
1998 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2000 //wxPG_HIDE_CATEGORIES |
2001 //wxPG_LIMITED_EDITING |
2005 if ( extraStyle
== -1 )
2006 // default extra style
2007 extraStyle
= wxPG_EX_MODE_BUTTONS
;
2008 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2009 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2010 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2011 //| wxPG_EX_HELP_AS_TOOLTIPS
2013 bool wasCreated
= m_panel
? false : true;
2018 // This shows how to combine two static choice descriptors
2019 m_combinedFlags
.Add( _fs_windowstyle_labels
, _fs_windowstyle_values
);
2020 m_combinedFlags
.Add( _fs_framestyle_labels
, _fs_framestyle_values
);
2022 wxPropertyGridManager
* pgman
= m_pPropGridManager
=
2023 new wxPropertyGridManager(m_panel
,
2024 // Don't change this into wxID_ANY in the sample, or the
2025 // event handling will obviously be broken.
2031 m_propGrid
= pgman
->GetGrid();
2033 pgman
->SetExtraStyle(extraStyle
);
2035 m_pPropGridManager
->SetValidationFailureBehavior( wxPG_VFB_BEEP
| wxPG_VFB_MARK_CELL
| wxPG_VFB_SHOW_MESSAGE
);
2037 m_pPropGridManager
->GetGrid()->SetVerticalSpacing( 2 );
2041 // Change some attributes in all properties
2042 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING,true);
2043 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_CHECKBOX,true);
2045 //m_pPropGridManager->SetSplitterLeft(true);
2046 //m_pPropGridManager->SetSplitterPosition(137);
2049 // This would setup event handling without event table entries
2050 Connect(m_pPropGridManager->GetId(), wxEVT_PG_SELECTED,
2051 wxPropertyGridEventHandler(FormMain::OnPropertyGridSelect) );
2052 Connect(m_pPropGridManager->GetId(), wxEVT_PG_CHANGED,
2053 wxPropertyGridEventHandler(FormMain::OnPropertyGridChange) );
2056 m_topSizer
->Add( m_pPropGridManager
, 1, wxEXPAND
);
2058 FinalizePanel(wasCreated
);
2061 // -----------------------------------------------------------------------
2063 FormMain::FormMain(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
) :
2064 wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
,
2065 (wxMINIMIZE_BOX
|wxMAXIMIZE_BOX
|wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|
2066 wxTAB_TRAVERSAL
|wxCLOSE_BOX
|wxNO_FULL_REPAINT_ON_RESIZE
) )
2068 SetIcon(wxICON(sample
));
2074 // we need this in order to allow the about menu relocation, since ABOUT is
2075 // not the default id of the about menu
2076 wxApp::s_macAboutMenuItemId
= ID_ABOUT
;
2080 // This is here to really test the wxImageFileProperty.
2081 wxInitAllImageHandlers();
2084 // Register all editors (SpinCtrl etc.)
2085 m_pPropGridManager
->RegisterAdditionalEditors();
2087 // Register our sample custom editors
2088 m_pSampleMultiButtonEditor
=
2089 wxPropertyGrid::RegisterEditorClass(new wxSampleMultiButtonEditor());
2091 CreateGrid( // style
2092 wxPG_BOLD_MODIFIED
|
2093 wxPG_SPLITTER_AUTO_CENTER
|
2095 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2097 //wxPG_HIDE_CATEGORIES |
2098 //wxPG_LIMITED_EDITING |
2102 wxPG_EX_MODE_BUTTONS
2103 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2104 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2105 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2106 //| wxPG_EX_HELP_AS_TOOLTIPS
2111 wxMenu
*menuFile
= new wxMenu(wxEmptyString
, wxMENU_TEAROFF
);
2112 wxMenu
*menuTry
= new wxMenu
;
2113 wxMenu
*menuTools1
= new wxMenu
;
2114 wxMenu
*menuTools2
= new wxMenu
;
2115 wxMenu
*menuHelp
= new wxMenu
;
2117 menuHelp
->Append(ID_ABOUT
, wxT("&About..."), wxT("Show about dialog") );
2119 menuTools1
->Append(ID_APPENDPROP
, wxT("Append New Property") );
2120 menuTools1
->Append(ID_APPENDCAT
, wxT("Append New Category\tCtrl-S") );
2121 menuTools1
->AppendSeparator();
2122 menuTools1
->Append(ID_INSERTPROP
, wxT("Insert New Property\tCtrl-Q") );
2123 menuTools1
->Append(ID_INSERTCAT
, wxT("Insert New Category\tCtrl-W") );
2124 menuTools1
->AppendSeparator();
2125 menuTools1
->Append(ID_DELETE
, wxT("Delete Selected") );
2126 menuTools1
->Append(ID_DELETER
, wxT("Delete Random") );
2127 menuTools1
->Append(ID_DELETEALL
, wxT("Delete All") );
2128 menuTools1
->AppendSeparator();
2129 menuTools1
->Append(ID_SETBGCOLOUR
, wxT("Set Bg Colour") );
2130 menuTools1
->Append(ID_SETBGCOLOURRECUR
, wxT("Set Bg Colour (Recursively)") );
2131 menuTools1
->Append(ID_UNSPECIFY
, wxT("Set to Unspecified") );
2132 menuTools1
->AppendSeparator();
2133 m_itemEnable
= menuTools1
->Append(ID_ENABLE
, wxT("Enable"),
2134 wxT("Toggles item's enabled state.") );
2135 m_itemEnable
->Enable( FALSE
);
2136 menuTools1
->Append(ID_HIDE
, wxT("Hide"), wxT("Shows or hides a property") );
2138 menuTools2
->Append(ID_ITERATE1
, wxT("Iterate Over Properties") );
2139 menuTools2
->Append(ID_ITERATE2
, wxT("Iterate Over Visible Items") );
2140 menuTools2
->Append(ID_ITERATE3
, wxT("Reverse Iterate Over Properties") );
2141 menuTools2
->Append(ID_ITERATE4
, wxT("Iterate Over Categories") );
2142 menuTools2
->AppendSeparator();
2143 menuTools2
->Append(ID_SETPROPERTYVALUE
, wxT("Set Property Value") );
2144 menuTools2
->Append(ID_CLEARMODIF
, wxT("Clear Modified Status"), wxT("Clears wxPG_MODIFIED flag from all properties.") );
2145 menuTools2
->AppendSeparator();
2146 m_itemFreeze
= menuTools2
->AppendCheckItem(ID_FREEZE
, wxT("Freeze"),
2147 wxT("Disables painting, auto-sorting, etc.") );
2148 menuTools2
->AppendSeparator();
2149 menuTools2
->Append(ID_DUMPLIST
, wxT("Display Values as wxVariant List"), wxT("Tests GetAllValues method and wxVariant conversion.") );
2150 menuTools2
->AppendSeparator();
2151 menuTools2
->Append(ID_GETVALUES
, wxT("Get Property Values"), wxT("Stores all property values.") );
2152 menuTools2
->Append(ID_SETVALUES
, wxT("Set Property Values"), wxT("Reverts property values to those last stored.") );
2153 menuTools2
->Append(ID_SETVALUES2
, wxT("Set Property Values 2"), wxT("Adds property values that should not initially be as items (so new items are created).") );
2154 menuTools2
->AppendSeparator();
2155 menuTools2
->Append(ID_SAVESTATE
, wxT("Save Editable State") );
2156 menuTools2
->Append(ID_RESTORESTATE
, wxT("Restore Editable State") );
2157 menuTools2
->AppendSeparator();
2158 menuTools2
->Append(ID_ENABLECOMMONVALUES
, wxT("Enable Common Value"),
2159 wxT("Enable values that are common to all properties, for selected property."));
2160 menuTools2
->AppendSeparator();
2161 menuTools2
->Append(ID_COLLAPSE
, wxT("Collapse Selected") );
2162 menuTools2
->Append(ID_COLLAPSEALL
, wxT("Collapse All") );
2163 menuTools2
->AppendSeparator();
2164 menuTools2
->Append(ID_INSERTPAGE
, wxT("Add Page") );
2165 menuTools2
->Append(ID_REMOVEPAGE
, wxT("Remove Page") );
2166 menuTools2
->AppendSeparator();
2167 menuTools2
->Append(ID_FITCOLUMNS
, wxT("Fit Columns") );
2168 menuTools2
->AppendSeparator();
2169 menuTools2
->Append(ID_CHANGEFLAGSITEMS
, wxT("Change Children of FlagsProp") );
2170 menuTools2
->AppendSeparator();
2171 menuTools2
->Append(ID_TESTINSERTCHOICE
, wxT("Test InsertPropertyChoice") );
2172 menuTools2
->Append(ID_TESTDELETECHOICE
, wxT("Test DeletePropertyChoice") );
2173 menuTools2
->AppendSeparator();
2174 menuTools2
->Append(ID_SETSPINCTRLEDITOR
, wxT("Use SpinCtrl Editor") );
2175 menuTools2
->Append(ID_TESTREPLACE
, wxT("Test ReplaceProperty") );
2177 menuTry
->Append(ID_SELECTSTYLE
, wxT("Set Window Style"),
2178 wxT("Select window style flags used by the grid."));
2179 menuTry
->AppendSeparator();
2180 menuTry
->AppendRadioItem( ID_COLOURSCHEME1
, wxT("Standard Colour Scheme") );
2181 menuTry
->AppendRadioItem( ID_COLOURSCHEME2
, wxT("White Colour Scheme") );
2182 menuTry
->AppendRadioItem( ID_COLOURSCHEME3
, wxT(".NET Colour Scheme") );
2183 menuTry
->AppendRadioItem( ID_COLOURSCHEME4
, wxT("Cream Colour Scheme") );
2184 menuTry
->AppendSeparator();
2185 m_itemCatColours
= menuTry
->AppendCheckItem(ID_CATCOLOURS
, wxT("Category Specific Colours"),
2186 wxT("Switches between category-specific cell colours and default scheme (actually done using SetPropertyTextColour and SetPropertyBackgroundColour).") );
2187 menuTry
->AppendSeparator();
2188 menuTry
->AppendCheckItem(ID_STATICLAYOUT
, wxT("Static Layout"),
2189 wxT("Switches between user-modifiedable and static layouts.") );
2190 menuTry
->Append(ID_SETCOLUMNS
, wxT("Set Number of Columns") );
2191 menuTry
->AppendSeparator();
2192 menuTry
->Append(ID_TESTXRC
, wxT("Display XRC sample") );
2193 menuTry
->AppendSeparator();
2194 menuTry
->Append(ID_RUNTESTFULL
, wxT("Run Tests (full)") );
2195 menuTry
->Append(ID_RUNTESTPARTIAL
, wxT("Run Tests (fast)") );
2197 menuFile
->Append(ID_RUNMINIMAL
, wxT("Run Minimal Sample") );
2198 menuFile
->AppendSeparator();
2199 menuFile
->Append(ID_QUIT
, wxT("E&xit\tAlt-X"), wxT("Quit this program") );
2201 // Now append the freshly created menu to the menu bar...
2202 wxMenuBar
*menuBar
= new wxMenuBar();
2203 menuBar
->Append(menuFile
, wxT("&File") );
2204 menuBar
->Append(menuTry
, wxT("&Try These!") );
2205 menuBar
->Append(menuTools1
, wxT("&Basic") );
2206 menuBar
->Append(menuTools2
, wxT("&Advanced") );
2207 menuBar
->Append(menuHelp
, wxT("&Help") );
2209 // ... and attach this menu bar to the frame
2210 SetMenuBar(menuBar
);
2213 // create a status bar
2215 SetStatusText(wxEmptyString
);
2216 #endif // wxUSE_STATUSBAR
2218 FinalizeFramePosition();
2221 void FormMain::FinalizeFramePosition()
2223 wxSize
frameSize((wxSystemSettings::GetMetric(wxSYS_SCREEN_X
)/10)*4,
2224 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
)/10)*8);
2226 if ( frameSize
.x
> 500 )
2235 // Normally, wxPropertyGrid does not check whether item with identical
2236 // label already exists. However, since in this sample we use labels for
2237 // identifying properties, we have to be sure not to generate identical
2240 void GenerateUniquePropertyLabel( wxPropertyGridManager
* pg
, wxString
& baselabel
)
2245 if ( pg
->GetPropertyByLabel( baselabel
) )
2250 newlabel
.Printf(wxT("%s%i"),baselabel
.c_str(),count
);
2251 if ( !pg
->GetPropertyByLabel( newlabel
) ) break;
2257 baselabel
= newlabel
;
2261 // -----------------------------------------------------------------------
2263 void FormMain::OnInsertPropClick( wxCommandEvent
& WXUNUSED(event
) )
2267 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2269 wxMessageBox(wxT("No items to relate - first add some with Append."));
2273 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2276 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2279 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2281 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2283 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2284 id
->GetIndexInParent(),
2285 new wxStringProperty(propLabel
) );
2289 // -----------------------------------------------------------------------
2291 void FormMain::OnAppendPropClick( wxCommandEvent
& WXUNUSED(event
) )
2295 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2297 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2299 m_pPropGridManager
->Append( new wxStringProperty(propLabel
) );
2301 m_pPropGridManager
->Refresh();
2304 // -----------------------------------------------------------------------
2306 void FormMain::OnClearClick( wxCommandEvent
& WXUNUSED(event
) )
2308 m_pPropGridManager
->GetGrid()->Clear();
2311 // -----------------------------------------------------------------------
2313 void FormMain::OnAppendCatClick( wxCommandEvent
& WXUNUSED(event
) )
2317 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2319 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2321 m_pPropGridManager
->Append( new wxPropertyCategory (propLabel
) );
2323 m_pPropGridManager
->Refresh();
2327 // -----------------------------------------------------------------------
2329 void FormMain::OnInsertCatClick( wxCommandEvent
& WXUNUSED(event
) )
2333 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2335 wxMessageBox(wxT("No items to relate - first add some with Append."));
2339 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2342 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2346 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2348 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2350 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2351 id
->GetIndexInParent(),
2352 new wxPropertyCategory (propLabel
) );
2355 // -----------------------------------------------------------------------
2357 void FormMain::OnDelPropClick( wxCommandEvent
& WXUNUSED(event
) )
2359 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2362 wxMessageBox(wxT("First select a property."));
2366 m_pPropGridManager
->DeleteProperty( id
);
2369 // -----------------------------------------------------------------------
2371 void FormMain::OnDelPropRClick( wxCommandEvent
& WXUNUSED(event
) )
2373 // Delete random property
2374 wxPGProperty
* p
= m_pPropGridManager
->GetGrid()->GetRoot();
2378 if ( !p
->IsCategory() )
2380 m_pPropGridManager
->DeleteProperty( p
);
2384 if ( !p
->GetChildCount() )
2387 int n
= rand() % ((int)p
->GetChildCount());
2393 // -----------------------------------------------------------------------
2395 void FormMain::OnContextMenu( wxContextMenuEvent
& event
)
2397 wxLogDebug(wxT("FormMain::OnContextMenu(%i,%i)"),
2398 event
.GetPosition().x
,event
.GetPosition().y
);
2403 // -----------------------------------------------------------------------
2405 void FormMain::OnCloseClick( wxCommandEvent
& WXUNUSED(event
) )
2407 /*#ifdef __WXDEBUG__
2408 m_pPropGridManager->GetGrid()->DumpAllocatedChoiceSets();
2409 wxLogDebug(wxT("\\-> Don't worry, this is perfectly normal in this sample."));
2415 // -----------------------------------------------------------------------
2417 int IterateMessage( wxPGProperty
* prop
)
2421 s
.Printf( wxT("\"%s\" class = %s, valuetype = %s"), prop
->GetLabel().c_str(),
2422 prop
->GetClassInfo()->GetClassName(), prop
->GetValueType().c_str() );
2424 return wxMessageBox( s
, wxT("Iterating... (press CANCEL to end)"), wxOK
|wxCANCEL
);
2427 // -----------------------------------------------------------------------
2429 void FormMain::OnIterate1Click( wxCommandEvent
& WXUNUSED(event
) )
2431 wxPropertyGridIterator it
;
2433 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2438 wxPGProperty
* p
= *it
;
2439 int res
= IterateMessage( p
);
2440 if ( res
== wxCANCEL
) break;
2444 // -----------------------------------------------------------------------
2446 void FormMain::OnIterate2Click( wxCommandEvent
& WXUNUSED(event
) )
2448 wxPropertyGridIterator it
;
2450 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2451 GetIterator( wxPG_ITERATE_VISIBLE
);
2455 wxPGProperty
* p
= *it
;
2457 int res
= IterateMessage( p
);
2458 if ( res
== wxCANCEL
) break;
2462 // -----------------------------------------------------------------------
2464 void FormMain::OnIterate3Click( wxCommandEvent
& WXUNUSED(event
) )
2466 // iterate over items in reverse order
2467 wxPropertyGridIterator it
;
2469 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2470 GetIterator( wxPG_ITERATE_DEFAULT
, wxBOTTOM
);
2474 wxPGProperty
* p
= *it
;
2476 int res
= IterateMessage( p
);
2477 if ( res
== wxCANCEL
) break;
2481 // -----------------------------------------------------------------------
2483 void FormMain::OnIterate4Click( wxCommandEvent
& WXUNUSED(event
) )
2485 wxPropertyGridIterator it
;
2487 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2488 GetIterator( wxPG_ITERATE_CATEGORIES
);
2492 wxPGProperty
* p
= *it
;
2494 int res
= IterateMessage( p
);
2495 if ( res
== wxCANCEL
) break;
2499 // -----------------------------------------------------------------------
2501 void FormMain::OnFitColumnsClick( wxCommandEvent
& WXUNUSED(event
) )
2503 wxPropertyGridPage
* page
= m_pPropGridManager
->GetCurrentPage();
2505 // Remove auto-centering
2506 m_pPropGridManager
->SetWindowStyle( m_pPropGridManager
->GetWindowStyle() & ~wxPG_SPLITTER_AUTO_CENTER
);
2508 // Grow manager size just prior fit - otherwise
2509 // column information may be lost.
2510 wxSize oldGridSize
= m_pPropGridManager
->GetGrid()->GetClientSize();
2511 wxSize oldFullSize
= GetSize();
2512 SetSize(1000, oldFullSize
.y
);
2514 wxSize newSz
= page
->FitColumns();
2516 int dx
= oldFullSize
.x
- oldGridSize
.x
;
2517 int dy
= oldFullSize
.y
- oldGridSize
.y
;
2525 // -----------------------------------------------------------------------
2527 void FormMain::OnChangeFlagsPropItemsClick( wxCommandEvent
& WXUNUSED(event
) )
2529 wxPGProperty
* p
= m_pPropGridManager
->GetPropertyByName(wxT("Window Styles"));
2531 wxPGChoices newChoices
;
2533 newChoices
.Add(wxT("Fast"),0x1);
2534 newChoices
.Add(wxT("Powerful"),0x2);
2535 newChoices
.Add(wxT("Safe"),0x4);
2536 newChoices
.Add(wxT("Sleek"),0x8);
2538 p
->SetChoices(newChoices
);
2541 // -----------------------------------------------------------------------
2543 void FormMain::OnEnableDisable( wxCommandEvent
& )
2545 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2548 wxMessageBox(wxT("First select a property."));
2552 if ( m_pPropGridManager
->IsPropertyEnabled( id
) )
2554 m_pPropGridManager
->DisableProperty ( id
);
2555 m_itemEnable
->SetItemLabel( wxT("Enable") );
2559 m_pPropGridManager
->EnableProperty ( id
);
2560 m_itemEnable
->SetItemLabel( wxT("Disable") );
2564 // -----------------------------------------------------------------------
2566 void FormMain::OnHideShow( wxCommandEvent
& WXUNUSED(event
) )
2568 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2571 wxMessageBox(wxT("First select a property."));
2575 if ( m_pPropGridManager
->IsPropertyShown( id
) )
2577 m_pPropGridManager
->HideProperty( id
, true );
2578 m_itemEnable
->SetItemLabel( wxT("Show") );
2582 m_pPropGridManager
->HideProperty( id
, false );
2583 m_itemEnable
->SetItemLabel( wxT("Hide") );
2586 wxPropertyGridPage
* curPage
= m_pPropGridManager
->GetCurrentPage();
2588 // Check for bottomY precalculation validity
2589 unsigned int byPre
= curPage
->GetVirtualHeight();
2590 unsigned int byAct
= curPage
->GetActualVirtualHeight();
2592 if ( byPre
!= byAct
)
2594 wxLogDebug(wxT("VirtualHeight is %u, should be %u"), byPre
, byAct
);
2598 // -----------------------------------------------------------------------
2600 #include "wx/colordlg.h"
2603 FormMain::OnSetBackgroundColour( wxCommandEvent
& event
)
2605 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2606 wxPGProperty
* prop
= pg
->GetSelection();
2609 wxMessageBox(wxT("First select a property."));
2613 wxColour col
= ::wxGetColourFromUser(this, *wxWHITE
, "Choose colour");
2617 bool recursively
= (event
.GetId()==ID_SETBGCOLOURRECUR
) ? true : false;
2618 pg
->SetPropertyBackgroundColour(prop
, col
, recursively
);
2622 // -----------------------------------------------------------------------
2624 void FormMain::OnInsertPage( wxCommandEvent
& WXUNUSED(event
) )
2626 m_pPropGridManager
->AddPage(wxT("New Page"));
2629 // -----------------------------------------------------------------------
2631 void FormMain::OnRemovePage( wxCommandEvent
& WXUNUSED(event
) )
2633 m_pPropGridManager
->RemovePage(m_pPropGridManager
->GetSelectedPage());
2636 // -----------------------------------------------------------------------
2638 void FormMain::OnSaveState( wxCommandEvent
& WXUNUSED(event
) )
2640 m_savedState
= m_pPropGridManager
->SaveEditableState();
2641 wxLogDebug(wxT("Saved editable state string: \"%s\""), m_savedState
.c_str());
2644 // -----------------------------------------------------------------------
2646 void FormMain::OnRestoreState( wxCommandEvent
& WXUNUSED(event
) )
2648 m_pPropGridManager
->RestoreEditableState(m_savedState
);
2651 // -----------------------------------------------------------------------
2653 void FormMain::OnSetSpinCtrlEditorClick( wxCommandEvent
& WXUNUSED(event
) )
2656 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2658 m_pPropGridManager
->SetPropertyEditor( pgId
, wxPGEditor_SpinCtrl
);
2660 wxMessageBox(wxT("First select a property"));
2664 // -----------------------------------------------------------------------
2666 void FormMain::OnTestReplaceClick( wxCommandEvent
& WXUNUSED(event
) )
2668 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2671 wxPGChoices choices
;
2672 choices
.Add(wxT("Flag 0"),0x0001);
2673 choices
.Add(wxT("Flag 1"),0x0002);
2674 choices
.Add(wxT("Flag 2"),0x0004);
2675 choices
.Add(wxT("Flag 3"),0x0008);
2676 wxPGProperty
* newId
= m_pPropGridManager
->ReplaceProperty( pgId
,
2677 new wxFlagsProperty(wxT("ReplaceFlagsProperty"), wxPG_LABEL
, choices
, 0x0003) );
2678 m_pPropGridManager
->SetPropertyAttribute( newId
,
2679 wxPG_BOOL_USE_CHECKBOX
,
2684 wxMessageBox(wxT("First select a property"));
2687 // -----------------------------------------------------------------------
2689 void FormMain::OnClearModifyStatusClick( wxCommandEvent
& WXUNUSED(event
) )
2691 m_pPropGridManager
->ClearModifiedStatus();
2694 // -----------------------------------------------------------------------
2696 // Freeze check-box checked?
2697 void FormMain::OnFreezeClick( wxCommandEvent
& event
)
2699 if ( !m_pPropGridManager
) return;
2701 if ( event
.IsChecked() )
2703 if ( !m_pPropGridManager
->IsFrozen() )
2705 m_pPropGridManager
->Freeze();
2710 if ( m_pPropGridManager
->IsFrozen() )
2712 m_pPropGridManager
->Thaw();
2713 m_pPropGridManager
->Refresh();
2718 // -----------------------------------------------------------------------
2720 void FormMain::OnAbout(wxCommandEvent
& WXUNUSED(event
))
2723 msg
.Printf( wxT("wxPropertyGrid Sample")
2725 #if defined(wxUSE_UNICODE_UTF8) && wxUSE_UNICODE_UTF8
2739 wxT("Programmed by %s\n\n")
2740 wxT("Using %s\n\n"),
2741 wxT("Jaakko Salli"), wxVERSION_STRING
2744 wxMessageBox(msg
, _T("About"), wxOK
| wxICON_INFORMATION
, this);
2747 // -----------------------------------------------------------------------
2749 void FormMain::OnColourScheme( wxCommandEvent
& event
)
2751 int id
= event
.GetId();
2752 if ( id
== ID_COLOURSCHEME1
)
2754 m_pPropGridManager
->GetGrid()->ResetColours();
2756 else if ( id
== ID_COLOURSCHEME2
)
2759 wxColour
my_grey_1(212,208,200);
2760 wxColour
my_grey_3(113,111,100);
2761 m_pPropGridManager
->Freeze();
2762 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2763 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2764 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( *wxWHITE
);
2765 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2766 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
); //wxColour(160,160,160)
2767 m_pPropGridManager
->Thaw();
2769 else if ( id
== ID_COLOURSCHEME3
)
2772 wxColour
my_grey_1(212,208,200);
2773 wxColour
my_grey_2(236,233,216);
2774 m_pPropGridManager
->Freeze();
2775 m_pPropGridManager
->GetGrid()->SetMarginColour( my_grey_1
);
2776 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( my_grey_1
);
2777 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2778 m_pPropGridManager
->Thaw();
2780 else if ( id
== ID_COLOURSCHEME4
)
2784 wxColour
my_grey_1(212,208,200);
2785 wxColour
my_grey_2(241,239,226);
2786 wxColour
my_grey_3(113,111,100);
2787 m_pPropGridManager
->Freeze();
2788 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2789 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2790 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2791 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2792 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2793 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2794 m_pPropGridManager
->Thaw();
2798 // -----------------------------------------------------------------------
2800 void FormMain::OnCatColours( wxCommandEvent
& event
)
2802 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2803 m_pPropGridManager
->Freeze();
2805 if ( event
.IsChecked() )
2807 // Set custom colours.
2808 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,0), false );
2809 pg
->SetPropertyBackgroundColour( wxT("Appearance"), wxColour(255,255,183) );
2810 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,183) );
2811 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(0,255,0), false );
2812 pg
->SetPropertyBackgroundColour( wxT("PositionCategory"), wxColour(255,226,190) );
2813 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(255,0,190) );
2814 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(0,0,255), false );
2815 pg
->SetPropertyBackgroundColour( wxT("Environment"), wxColour(208,240,175) );
2816 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(255,255,255) );
2817 pg
->SetPropertyBackgroundColour( wxT("More Examples"), wxColour(172,237,255) );
2818 pg
->SetPropertyTextColour( wxT("More Examples"), wxColour(172,0,255) );
2822 // Revert to original.
2823 pg
->SetPropertyColoursToDefault( wxT("Appearance") );
2824 pg
->SetPropertyColoursToDefault( wxT("PositionCategory") );
2825 pg
->SetPropertyColoursToDefault( wxT("Environment") );
2826 pg
->SetPropertyColoursToDefault( wxT("More Examples") );
2828 m_pPropGridManager
->Thaw();
2829 m_pPropGridManager
->Refresh();
2832 // -----------------------------------------------------------------------
2834 #define ADD_FLAG(FLAG) \
2835 chs.Add(wxT(#FLAG)); \
2837 if ( (flags & FLAG) == FLAG ) sel.Add(ind); \
2840 void FormMain::OnSelectStyle( wxCommandEvent
& WXUNUSED(event
) )
2849 unsigned int ind
= 0;
2850 int flags
= m_pPropGridManager
->GetWindowStyle();
2851 ADD_FLAG(wxPG_HIDE_CATEGORIES
)
2852 ADD_FLAG(wxPG_AUTO_SORT
)
2853 ADD_FLAG(wxPG_BOLD_MODIFIED
)
2854 ADD_FLAG(wxPG_SPLITTER_AUTO_CENTER
)
2855 ADD_FLAG(wxPG_TOOLTIPS
)
2856 ADD_FLAG(wxPG_STATIC_SPLITTER
)
2857 ADD_FLAG(wxPG_HIDE_MARGIN
)
2858 ADD_FLAG(wxPG_LIMITED_EDITING
)
2859 ADD_FLAG(wxPG_TOOLBAR
)
2860 ADD_FLAG(wxPG_DESCRIPTION
)
2861 wxMultiChoiceDialog
dlg( this, wxT("Select window styles to use"),
2862 wxT("wxPropertyGrid Window Style"), chs
);
2863 dlg
.SetSelections(sel
);
2864 if ( dlg
.ShowModal() == wxID_CANCEL
)
2868 sel
= dlg
.GetSelections();
2869 for ( ind
= 0; ind
< sel
.size(); ind
++ )
2870 flags
|= vls
[sel
[ind
]];
2879 unsigned int ind
= 0;
2880 int flags
= m_pPropGridManager
->GetExtraStyle();
2881 ADD_FLAG(wxPG_EX_INIT_NOCAT
)
2882 ADD_FLAG(wxPG_EX_NO_FLAT_TOOLBAR
)
2883 ADD_FLAG(wxPG_EX_MODE_BUTTONS
)
2884 ADD_FLAG(wxPG_EX_HELP_AS_TOOLTIPS
)
2885 ADD_FLAG(wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
2886 ADD_FLAG(wxPG_EX_AUTO_UNSPECIFIED_VALUES
)
2887 ADD_FLAG(wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
)
2888 wxMultiChoiceDialog
dlg( this, wxT("Select extra window styles to use"),
2889 wxT("wxPropertyGrid Extra Style"), chs
);
2890 dlg
.SetSelections(sel
);
2891 if ( dlg
.ShowModal() == wxID_CANCEL
)
2895 sel
= dlg
.GetSelections();
2896 for ( ind
= 0; ind
< sel
.size(); ind
++ )
2897 flags
|= vls
[sel
[ind
]];
2902 CreateGrid( style
, extraStyle
);
2904 FinalizeFramePosition();
2907 // -----------------------------------------------------------------------
2909 void FormMain::OnSetColumns( wxCommandEvent
& WXUNUSED(event
) )
2911 long colCount
= ::wxGetNumberFromUser(wxT("Enter number of columns (2-20)."),wxT("Columns:"),
2912 wxT("Change Columns"),m_pPropGridManager
->GetColumnCount(),
2915 if ( colCount
>= 2 )
2917 m_pPropGridManager
->SetColumnCount(colCount
);
2921 // -----------------------------------------------------------------------
2923 void FormMain::OnSetPropertyValue( wxCommandEvent
& WXUNUSED(event
) )
2925 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2926 wxPGProperty
* selected
= pg
->GetSelection();
2930 wxString value
= ::wxGetTextFromUser( wxT("Enter new value:") );
2931 pg
->SetPropertyValue( selected
, value
);
2935 // -----------------------------------------------------------------------
2937 void FormMain::OnInsertChoice( wxCommandEvent
& WXUNUSED(event
) )
2939 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2941 wxPGProperty
* selected
= pg
->GetSelection();
2942 const wxPGChoices
& choices
= selected
->GetChoices();
2944 // Insert new choice to the center of list
2946 if ( choices
.IsOk() )
2948 int pos
= choices
.GetCount() / 2;
2949 selected
->InsertChoice(wxT("New Choice"), pos
);
2953 ::wxMessageBox(wxT("First select a property with some choices."));
2957 // -----------------------------------------------------------------------
2959 void FormMain::OnDeleteChoice( wxCommandEvent
& WXUNUSED(event
) )
2961 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2963 wxPGProperty
* selected
= pg
->GetSelection();
2964 const wxPGChoices
& choices
= selected
->GetChoices();
2966 // Deletes choice from the center of list
2968 if ( choices
.IsOk() )
2970 int pos
= choices
.GetCount() / 2;
2971 selected
->DeleteChoice(pos
);
2975 ::wxMessageBox(wxT("First select a property with some choices."));
2979 // -----------------------------------------------------------------------
2981 #include <wx/colordlg.h>
2983 void FormMain::OnMisc ( wxCommandEvent
& event
)
2985 int id
= event
.GetId();
2986 if ( id
== ID_STATICLAYOUT
)
2988 long wsf
= m_pPropGridManager
->GetWindowStyleFlag();
2989 if ( event
.IsChecked() ) m_pPropGridManager
->SetWindowStyleFlag( wsf
|wxPG_STATIC_LAYOUT
);
2990 else m_pPropGridManager
->SetWindowStyleFlag( wsf
&~(wxPG_STATIC_LAYOUT
) );
2992 else if ( id
== ID_COLLAPSEALL
)
2995 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2997 for ( it
= pg
->GetVIterator( wxPG_ITERATE_ALL
); !it
.AtEnd(); it
.Next() )
2998 it
.GetProperty()->SetExpanded( false );
3002 else if ( id
== ID_GETVALUES
)
3004 m_storedValues
= m_pPropGridManager
->GetGrid()->GetPropertyValues(wxT("Test"),
3005 m_pPropGridManager
->GetGrid()->GetRoot(),
3006 wxPG_KEEP_STRUCTURE
|wxPG_INC_ATTRIBUTES
);
3008 else if ( id
== ID_SETVALUES
)
3010 if ( m_storedValues
.GetType() == wxT("list") )
3012 m_pPropGridManager
->GetGrid()->SetPropertyValues(m_storedValues
);
3015 wxMessageBox(wxT("First use Get Property Values."));
3017 else if ( id
== ID_SETVALUES2
)
3021 list
.Append( wxVariant((long)1234,wxT("VariantLong")) );
3022 list
.Append( wxVariant((bool)TRUE
,wxT("VariantBool")) );
3023 list
.Append( wxVariant(wxT("Test Text"),wxT("VariantString")) );
3024 m_pPropGridManager
->GetGrid()->SetPropertyValues(list
);
3026 else if ( id
== ID_COLLAPSE
)
3028 // Collapses selected.
3029 wxPGProperty
* id
= m_pPropGridManager
->GetSelection();
3032 m_pPropGridManager
->Collapse(id
);
3035 else if ( id
== ID_RUNTESTFULL
)
3037 // Runs a regression test.
3040 else if ( id
== ID_RUNTESTPARTIAL
)
3042 // Runs a regression test.
3045 else if ( id
== ID_UNSPECIFY
)
3047 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
3050 m_pPropGridManager
->SetPropertyValueUnspecified(prop
);
3051 prop
->RefreshEditor();
3056 // -----------------------------------------------------------------------
3058 void FormMain::OnPopulateClick( wxCommandEvent
& event
)
3060 int id
= event
.GetId();
3061 m_propGrid
->Clear();
3062 m_propGrid
->Freeze();
3063 if ( id
== ID_POPULATE1
)
3065 PopulateWithStandardItems();
3067 else if ( id
== ID_POPULATE2
)
3069 PopulateWithLibraryConfig();
3074 // -----------------------------------------------------------------------
3076 void DisplayMinimalFrame(wxWindow
* parent
); // in minimal.cpp
3078 void FormMain::OnRunMinimalClick( wxCommandEvent
& WXUNUSED(event
) )
3080 DisplayMinimalFrame(this);
3083 // -----------------------------------------------------------------------
3085 FormMain::~FormMain()
3089 // -----------------------------------------------------------------------
3091 IMPLEMENT_APP(cxApplication
)
3093 bool cxApplication::OnInit()
3096 //Locale.Init(wxLANGUAGE_FINNISH);
3098 FormMain
* frame
= Form1
= new FormMain( wxT("wxPropertyGrid Sample"), wxPoint(0,0), wxSize(300,500) );
3102 // Parse command-line
3103 wxApp
& app
= wxGetApp();
3106 wxString s
= app
.argv
[1];
3107 if ( s
== wxT("--run-tests") )
3111 bool testResult
= frame
->RunTests(true);
3121 // -----------------------------------------------------------------------
3123 void FormMain::OnIdle( wxIdleEvent
& event
)
3126 // This code is useful for debugging focus problems
3127 static wxWindow* last_focus = (wxWindow*) NULL;
3129 wxWindow* cur_focus = ::wxWindow::FindFocus();
3131 if ( cur_focus != last_focus )
3133 const wxChar* class_name = wxT("<none>");
3135 class_name = cur_focus->GetClassInfo()->GetClassName();
3136 last_focus = cur_focus;
3137 wxLogDebug( wxT("FOCUSED: %s %X"),
3139 (unsigned int)cur_focus);
3146 // -----------------------------------------------------------------------