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 // contrib/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".
30 // * At the end of file there is example code for using the owner-drawn combo
31 // box independently outside the wxPropertyGrid.
35 // For compilers that support precompilation, includes "wx/wx.h".
36 #include "wx/wxprec.h"
42 // for all others, include the necessary headers (this file is usually all you
43 // need because it includes almost all "standard" wxWidgets headers)
49 #error "Please set wxUSE_PROPGRID to 1 and rebuild the library."
52 #include <wx/numdlg.h>
54 // -----------------------------------------------------------------------
57 // Main propertygrid header.
58 #include <wx/propgrid/propgrid.h>
60 // Extra property classes.
61 #include <wx/propgrid/advprops.h>
63 // This defines wxPropertyGridManager.
64 #include <wx/propgrid/manager.h>
67 #include "sampleprops.h"
69 #if wxUSE_DATEPICKCTRL
70 #include <wx/datectrl.h>
73 #include <wx/artprov.h>
76 // -----------------------------------------------------------------------
77 // wxSampleMultiButtonEditor
78 // A sample editor class that has multiple buttons.
79 // -----------------------------------------------------------------------
81 class wxSampleMultiButtonEditor
: public wxPGTextCtrlEditor
83 DECLARE_DYNAMIC_CLASS(wxSampleMultiButtonEditor
)
85 wxSampleMultiButtonEditor() {}
86 virtual ~wxSampleMultiButtonEditor() {}
88 virtual wxPGWindowList
CreateControls( wxPropertyGrid
* propGrid
,
89 wxPGProperty
* property
,
91 const wxSize
& sz
) const;
92 virtual bool OnEvent( wxPropertyGrid
* propGrid
,
93 wxPGProperty
* property
,
95 wxEvent
& event
) const;
98 IMPLEMENT_DYNAMIC_CLASS(wxSampleMultiButtonEditor
, wxPGTextCtrlEditor
)
100 wxPGWindowList
wxSampleMultiButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
101 wxPGProperty
* property
,
103 const wxSize
& sz
) const
105 // Create and populate buttons-subwindow
106 wxPGMultiButton
* buttons
= new wxPGMultiButton( propGrid
, sz
);
108 // Add two regular buttons
109 buttons
->Add( "..." );
111 // Add a bitmap button
112 buttons
->Add( wxArtProvider::GetBitmap(wxART_FOLDER
) );
114 // Create the 'primary' editor control (textctrl in this case)
115 wxPGWindowList wndList
= wxPGTextCtrlEditor::CreateControls
116 ( propGrid
, property
, pos
,
117 buttons
->GetPrimarySize() );
119 // Finally, move buttons-subwindow to correct position and make sure
120 // returned wxPGWindowList contains our custom button list.
121 buttons
->Finalize(propGrid
, pos
);
123 wndList
.SetSecondary( buttons
);
127 bool wxSampleMultiButtonEditor::OnEvent( wxPropertyGrid
* propGrid
,
128 wxPGProperty
* property
,
130 wxEvent
& event
) const
132 if ( event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
134 wxPGMultiButton
* buttons
= (wxPGMultiButton
*) propGrid
->GetEditorControlSecondary();
136 if ( event
.GetId() == buttons
->GetButtonId(0) )
138 // Do something when first button is pressed
139 wxLogDebug("First button pressed");
142 if ( event
.GetId() == buttons
->GetButtonId(1) )
144 // Do something when second button is pressed
145 wxLogDebug("Second button pressed");
148 if ( event
.GetId() == buttons
->GetButtonId(2) )
150 // Do something when third button is pressed
151 wxLogDebug("Third button pressed");
155 return wxPGTextCtrlEditor::OnEvent(propGrid
, property
, ctrl
, event
);
158 // -----------------------------------------------------------------------
159 // Validator for wxValidator use sample
160 // -----------------------------------------------------------------------
164 // wxValidator for testing
166 class wxInvalidWordValidator
: public wxValidator
170 wxInvalidWordValidator( const wxString
& invalidWord
)
171 : wxValidator(), m_invalidWord(invalidWord
)
175 virtual wxObject
* Clone() const
177 return new wxInvalidWordValidator(m_invalidWord
);
180 virtual bool Validate(wxWindow
* WXUNUSED(parent
))
182 wxTextCtrl
* tc
= wxDynamicCast(GetWindow(), wxTextCtrl
);
183 wxCHECK_MSG(tc
, true, wxT("validator window must be wxTextCtrl"));
185 wxString val
= tc
->GetValue();
187 if ( val
.find(m_invalidWord
) == wxString::npos
)
190 ::wxMessageBox(wxString::Format(wxT("%s is not allowed word"),m_invalidWord
.c_str()),
191 wxT("Validation Failure"));
197 wxString m_invalidWord
;
200 #endif // wxUSE_VALIDATORS
202 // -----------------------------------------------------------------------
203 // AdvImageFile Property
204 // -----------------------------------------------------------------------
208 WX_DECLARE_OBJARRAY(wxMyImageInfo
, wxArrayMyImageInfo
);
214 wxBitmap
* m_pThumbnail1
; // smaller thumbnail
215 wxBitmap
* m_pThumbnail2
; // larger thumbnail
217 wxMyImageInfo ( const wxString
& str
)
220 m_pThumbnail1
= (wxBitmap
*) NULL
;
221 m_pThumbnail2
= (wxBitmap
*) NULL
;
223 virtual ~wxMyImageInfo()
226 delete m_pThumbnail1
;
228 delete m_pThumbnail2
;
234 #include <wx/arrimpl.cpp>
235 WX_DEFINE_OBJARRAY(wxArrayMyImageInfo
);
237 wxArrayMyImageInfo g_myImageArray
;
240 // Preferred thumbnail height.
241 #define PREF_THUMBNAIL_HEIGHT 64
244 wxPGChoices
wxAdvImageFileProperty::ms_choices
;
246 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxAdvImageFileProperty
,wxFileProperty
,
247 wxString
,const wxString
&,ChoiceAndButton
)
250 wxAdvImageFileProperty::wxAdvImageFileProperty( const wxString
& label
,
251 const wxString
& name
,
252 const wxString
& value
)
253 : wxFileProperty(label
,name
,value
)
255 m_wildcard
= wxPGGetDefaultImageWildcard();
259 m_pImage
= (wxImage
*) NULL
;
262 m_flags
&= ~(wxPG_PROP_SHOW_FULL_FILENAME
);
265 wxAdvImageFileProperty::~wxAdvImageFileProperty ()
271 m_pImage
= (wxImage
*) NULL
;
275 void wxAdvImageFileProperty::OnSetValue()
277 wxFileProperty::OnSetValue();
283 m_pImage
= (wxImage
*) NULL
;
286 wxString imagename
= GetValueAsString(0);
288 if ( imagename
.length() )
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( m_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 ( m_filename
.FileExists() )
307 m_pImage
= new wxImage( m_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
)
369 if ( !m_pImage
|| !m_pImage
->Ok() ||
370 m_filename
!= mii
.m_path
375 m_pImage
= new wxImage( mii
.m_path
);
378 if ( m_pImage
&& m_pImage
->Ok() )
380 int im_wid
= m_pImage
->GetWidth();
381 int im_hei
= m_pImage
->GetHeight();
382 if ( im_hei
> PREF_THUMBNAIL_HEIGHT
)
385 im_wid
= (PREF_THUMBNAIL_HEIGHT
*m_pImage
->GetWidth())/m_pImage
->GetHeight();
386 im_hei
= PREF_THUMBNAIL_HEIGHT
;
389 m_pImage
->Rescale( im_wid
, im_hei
);
391 mii
.m_pThumbnail2
= new wxBitmap( *m_pImage
);
393 wxSize cis
= GetParentState()->GetGrid()->GetImageSize();
394 m_pImage
->Rescale ( cis
.x
, cis
.y
);
396 mii
.m_pThumbnail1
= new wxBitmap( *m_pImage
);
403 m_pImage
= (wxImage
*) NULL
;
408 void wxAdvImageFileProperty::OnCustomPaint( wxDC
& dc
,
413 if ( pd
.m_choiceItem
>= 0 )
414 index
= pd
.m_choiceItem
;
416 //wxLogDebug(wxT("%i"),index);
420 LoadThumbnails(index
);
422 // Is this a measure item call?
426 //pd.m_drawnHeight = PREF_THUMBNAIL_HEIGHT;
427 wxBitmap
* pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
429 pd
.m_drawnHeight
= pBitmap
->GetHeight();
431 pd
.m_drawnHeight
= 16;
435 // Draw the thumbnail
439 if ( pd
.m_choiceItem
>= 0 )
440 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
442 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail1
;
446 dc
.DrawBitmap ( *pBitmap
, rect
.x
, rect
.y
, FALSE
);
448 // Tell the caller how wide we drew.
449 pd
.m_drawnWidth
= pBitmap
->GetWidth();
455 // No valid file - just draw a white box.
456 dc
.SetBrush ( *wxWHITE_BRUSH
);
457 dc
.DrawRectangle ( rect
);
461 // -----------------------------------------------------------------------
463 // -----------------------------------------------------------------------
465 // See propgridsample.h for wxVector3f class
467 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxVector3f
)
469 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxVectorProperty
,wxPGProperty
,
470 wxVector3f
,const wxVector3f
&,TextCtrl
)
473 wxVectorProperty::wxVectorProperty( const wxString
& label
,
474 const wxString
& name
,
475 const wxVector3f
& value
)
476 : wxPGProperty(label
,name
)
478 SetValue( WXVARIANT(value
) );
479 AddChild( new wxFloatProperty(wxT("X"),wxPG_LABEL
,value
.x
) );
480 AddChild( new wxFloatProperty(wxT("Y"),wxPG_LABEL
,value
.y
) );
481 AddChild( new wxFloatProperty(wxT("Z"),wxPG_LABEL
,value
.z
) );
484 wxVectorProperty::~wxVectorProperty() { }
486 void wxVectorProperty::RefreshChildren()
488 if ( !GetChildCount() ) return;
489 const wxVector3f
& vector
= wxVector3fRefFromVariant(m_value
);
490 Item(0)->SetValue( vector
.x
);
491 Item(1)->SetValue( vector
.y
);
492 Item(2)->SetValue( vector
.z
);
495 void wxVectorProperty::ChildChanged( wxVariant
& thisValue
, int childIndex
, wxVariant
& childValue
) const
499 switch ( childIndex
)
501 case 0: vector
.x
= childValue
.GetDouble(); break;
502 case 1: vector
.y
= childValue
.GetDouble(); break;
503 case 2: vector
.z
= childValue
.GetDouble(); break;
509 // -----------------------------------------------------------------------
510 // wxTriangleProperty
511 // -----------------------------------------------------------------------
513 // See propgridsample.h for wxTriangle class
515 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxTriangle
)
517 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxTriangleProperty
,wxPGProperty
,
518 wxTriangle
,const wxTriangle
&,TextCtrl
)
521 wxTriangleProperty::wxTriangleProperty( const wxString
& label
,
522 const wxString
& name
,
523 const wxTriangle
& value
)
524 : wxPGProperty(label
,name
)
526 SetValue( WXVARIANT(value
) );
527 AddChild( new wxVectorProperty(wxT("A"),wxPG_LABEL
,value
.a
) );
528 AddChild( new wxVectorProperty(wxT("B"),wxPG_LABEL
,value
.b
) );
529 AddChild( new wxVectorProperty(wxT("C"),wxPG_LABEL
,value
.c
) );
532 wxTriangleProperty::~wxTriangleProperty() { }
534 void wxTriangleProperty::RefreshChildren()
536 if ( !GetChildCount() ) return;
537 const wxTriangle
& triangle
= wxTriangleRefFromVariant(m_value
);
538 Item(0)->SetValue( WXVARIANT(triangle
.a
) );
539 Item(1)->SetValue( WXVARIANT(triangle
.b
) );
540 Item(2)->SetValue( WXVARIANT(triangle
.c
) );
543 void wxTriangleProperty::ChildChanged( wxVariant
& thisValue
, int childIndex
, wxVariant
& childValue
) const
546 triangle
<< thisValue
;
547 const wxVector3f
& vector
= wxVector3fRefFromVariant(childValue
);
548 switch ( childIndex
)
550 case 0: triangle
.a
= vector
; break;
551 case 1: triangle
.b
= vector
; break;
552 case 2: triangle
.c
= vector
; break;
554 thisValue
<< triangle
;
558 // -----------------------------------------------------------------------
559 // wxSingleChoiceDialogAdapter (wxPGEditorDialogAdapter sample)
560 // -----------------------------------------------------------------------
562 class wxSingleChoiceDialogAdapter
: public wxPGEditorDialogAdapter
566 wxSingleChoiceDialogAdapter( const wxPGChoices
& choices
)
567 : wxPGEditorDialogAdapter(), m_choices(choices
)
571 virtual bool DoShowDialog( wxPropertyGrid
* WXUNUSED(propGrid
),
572 wxPGProperty
* WXUNUSED(property
) )
574 wxString s
= ::wxGetSingleChoice(wxT("Message"),
576 m_choices
.GetLabels());
587 const wxPGChoices
& m_choices
;
591 class SingleChoiceProperty
: public wxStringProperty
595 SingleChoiceProperty( const wxString
& label
,
596 const wxString
& name
= wxPG_LABEL
,
597 const wxString
& value
= wxEmptyString
)
598 : wxStringProperty(label
, name
, value
)
601 m_choices
.Add(wxT("Cat"));
602 m_choices
.Add(wxT("Dog"));
603 m_choices
.Add(wxT("Gibbon"));
604 m_choices
.Add(wxT("Otter"));
607 // Set editor to have button
608 virtual const wxPGEditor
* DoGetEditorClass() const
610 return wxPGEditor_TextCtrlAndButton
;
613 // Set what happens on button click
614 virtual wxPGEditorDialogAdapter
* GetEditorDialog() const
616 return new wxSingleChoiceDialogAdapter(m_choices
);
620 wxPGChoices m_choices
;
623 // -----------------------------------------------------------------------
625 // -----------------------------------------------------------------------
671 ID_SETSPINCTRLEDITOR
,
676 ID_ENABLECOMMONVALUES
,
683 // -----------------------------------------------------------------------
685 // -----------------------------------------------------------------------
687 BEGIN_EVENT_TABLE(FormMain
, wxFrame
)
688 EVT_IDLE(FormMain::OnIdle
)
689 EVT_MOVE(FormMain::OnMove
)
690 EVT_SIZE(FormMain::OnResize
)
692 // This occurs when a property is selected
693 EVT_PG_SELECTED( PGID
, FormMain::OnPropertyGridSelect
)
694 // This occurs when a property value changes
695 EVT_PG_CHANGED( PGID
, FormMain::OnPropertyGridChange
)
696 // This occurs just prior a property value is changed
697 EVT_PG_CHANGING( PGID
, FormMain::OnPropertyGridChanging
)
698 // This occurs when a mouse moves over another property
699 EVT_PG_HIGHLIGHTED( PGID
, FormMain::OnPropertyGridHighlight
)
700 // This occurs when mouse is right-clicked.
701 EVT_PG_RIGHT_CLICK( PGID
, FormMain::OnPropertyGridItemRightClick
)
702 // This occurs when mouse is double-clicked.
703 EVT_PG_DOUBLE_CLICK( PGID
, FormMain::OnPropertyGridItemDoubleClick
)
704 // This occurs when propgridmanager's page changes.
705 EVT_PG_PAGE_CHANGED( PGID
, FormMain::OnPropertyGridPageChange
)
706 // This occurs when property's editor button (if any) is clicked.
707 EVT_BUTTON( PGID
, FormMain::OnPropertyGridButtonClick
)
709 EVT_PG_ITEM_COLLAPSED( PGID
, FormMain::OnPropertyGridItemCollapse
)
710 EVT_PG_ITEM_EXPANDED( PGID
, FormMain::OnPropertyGridItemExpand
)
712 EVT_TEXT( PGID
, FormMain::OnPropertyGridTextUpdate
)
715 // Rest of the events are not property grid specific
716 EVT_KEY_DOWN( FormMain::OnPropertyGridKeyEvent
)
717 EVT_KEY_UP( FormMain::OnPropertyGridKeyEvent
)
719 EVT_MENU( ID_APPENDPROP
, FormMain::OnAppendPropClick
)
720 EVT_MENU( ID_APPENDCAT
, FormMain::OnAppendCatClick
)
721 EVT_MENU( ID_INSERTPROP
, FormMain::OnInsertPropClick
)
722 EVT_MENU( ID_INSERTCAT
, FormMain::OnInsertCatClick
)
723 EVT_MENU( ID_DELETE
, FormMain::OnDelPropClick
)
724 EVT_MENU( ID_DELETER
, FormMain::OnDelPropRClick
)
725 EVT_MENU( ID_UNSPECIFY
, FormMain::OnMisc
)
726 EVT_MENU( ID_DELETEALL
, FormMain::OnClearClick
)
727 EVT_MENU( ID_ENABLE
, FormMain::OnEnableDisable
)
728 EVT_MENU( ID_HIDE
, FormMain::OnHideShow
)
729 EVT_MENU( ID_ITERATE1
, FormMain::OnIterate1Click
)
730 EVT_MENU( ID_ITERATE2
, FormMain::OnIterate2Click
)
731 EVT_MENU( ID_ITERATE3
, FormMain::OnIterate3Click
)
732 EVT_MENU( ID_ITERATE4
, FormMain::OnIterate4Click
)
733 EVT_MENU( ID_SETCOLOUR
, FormMain::OnMisc
)
734 EVT_MENU( ID_CLEARMODIF
, FormMain::OnClearModifyStatusClick
)
735 EVT_MENU( ID_FREEZE
, FormMain::OnFreezeClick
)
736 EVT_MENU( ID_DUMPLIST
, FormMain::OnDumpList
)
738 EVT_MENU( ID_COLOURSCHEME1
, FormMain::OnColourScheme
)
739 EVT_MENU( ID_COLOURSCHEME2
, FormMain::OnColourScheme
)
740 EVT_MENU( ID_COLOURSCHEME3
, FormMain::OnColourScheme
)
741 EVT_MENU( ID_COLOURSCHEME4
, FormMain::OnColourScheme
)
743 EVT_MENU( ID_ABOUT
, FormMain::OnAbout
)
744 EVT_MENU( ID_QUIT
, FormMain::OnCloseClick
)
746 EVT_MENU( ID_CATCOLOURS
, FormMain::OnCatColours
)
747 EVT_MENU( ID_SETCOLUMNS
, FormMain::OnSetColumns
)
748 EVT_MENU( ID_TESTXRC
, FormMain::OnTestXRC
)
749 EVT_MENU( ID_ENABLECOMMONVALUES
, FormMain::OnEnableCommonValues
)
750 EVT_MENU( ID_SELECTSTYLE
, FormMain::OnSelectStyle
)
752 EVT_MENU( ID_STATICLAYOUT
, FormMain::OnMisc
)
753 EVT_MENU( ID_COLLAPSE
, FormMain::OnMisc
)
754 EVT_MENU( ID_COLLAPSEALL
, FormMain::OnMisc
)
756 EVT_MENU( ID_POPULATE1
, FormMain::OnPopulateClick
)
757 EVT_MENU( ID_POPULATE2
, FormMain::OnPopulateClick
)
759 EVT_MENU( ID_GETVALUES
, FormMain::OnMisc
)
760 EVT_MENU( ID_SETVALUES
, FormMain::OnMisc
)
761 EVT_MENU( ID_SETVALUES2
, FormMain::OnMisc
)
763 EVT_MENU( ID_FITCOLUMNS
, FormMain::OnFitColumnsClick
)
765 EVT_MENU( ID_CHANGEFLAGSITEMS
, FormMain::OnChangeFlagsPropItemsClick
)
767 EVT_MENU( ID_RUNTESTFULL
, FormMain::OnMisc
)
768 EVT_MENU( ID_RUNTESTPARTIAL
, FormMain::OnMisc
)
770 EVT_MENU( ID_TESTINSERTCHOICE
, FormMain::OnInsertChoice
)
771 EVT_MENU( ID_TESTDELETECHOICE
, FormMain::OnDeleteChoice
)
773 EVT_MENU( ID_INSERTPAGE
, FormMain::OnInsertPage
)
774 EVT_MENU( ID_REMOVEPAGE
, FormMain::OnRemovePage
)
776 EVT_MENU( ID_SAVESTATE
, FormMain::OnSaveState
)
777 EVT_MENU( ID_RESTORESTATE
, FormMain::OnRestoreState
)
779 EVT_MENU( ID_SETSPINCTRLEDITOR
, FormMain::OnSetSpinCtrlEditorClick
)
780 EVT_MENU( ID_TESTREPLACE
, FormMain::OnTestReplaceClick
)
781 EVT_MENU( ID_SETPROPERTYVALUE
, FormMain::OnSetPropertyValue
)
783 EVT_MENU( ID_RUNMINIMAL
, FormMain::OnRunMinimalClick
)
785 EVT_CONTEXT_MENU( FormMain::OnContextMenu
)
788 // -----------------------------------------------------------------------
790 void FormMain::OnMove( wxMoveEvent
& event
)
792 if ( !m_pPropGridManager
)
794 // this check is here so the frame layout can be tested
795 // without creating propertygrid
800 // Update position properties
806 // Must check if properties exist (as they may be deleted).
808 // Using m_pPropGridManager, we can scan all pages automatically.
809 id
= m_pPropGridManager
->GetPropertyByName( wxT("X") );
811 m_pPropGridManager
->SetPropertyValue( id
, x
);
813 id
= m_pPropGridManager
->GetPropertyByName( wxT("Y") );
815 m_pPropGridManager
->SetPropertyValue( id
, y
);
817 id
= m_pPropGridManager
->GetPropertyByName( wxT("Position") );
819 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxPoint(x
,y
)) );
821 // Should always call event.Skip() in frame's MoveEvent handler
825 // -----------------------------------------------------------------------
827 void FormMain::OnResize( wxSizeEvent
& event
)
829 if ( !m_pPropGridManager
)
831 // this check is here so the frame layout can be tested
832 // without creating propertygrid
837 // Update size properties
844 // Must check if properties exist (as they may be deleted).
846 // Using m_pPropGridManager, we can scan all pages automatically.
847 p
= m_pPropGridManager
->GetPropertyByName( wxT("Width") );
848 if ( p
&& !p
->IsValueUnspecified() )
849 m_pPropGridManager
->SetPropertyValue( p
, w
);
851 p
= m_pPropGridManager
->GetPropertyByName( wxT("Height") );
852 if ( p
&& !p
->IsValueUnspecified() )
853 m_pPropGridManager
->SetPropertyValue( p
, h
);
855 id
= m_pPropGridManager
->GetPropertyByName ( wxT("Size") );
857 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxSize(w
,h
)) );
859 // Should always call event.Skip() in frame's SizeEvent handler
863 // -----------------------------------------------------------------------
865 void FormMain::OnPropertyGridChanging( wxPropertyGridEvent
& event
)
867 wxPGProperty
* p
= event
.GetProperty();
869 if ( p
->GetName() == wxT("Font") )
872 wxMessageBox(wxString::Format(wxT("'%s' is about to change (to variant of type '%s')\n\nAllow or deny?"),
873 p
->GetName().c_str(),event
.GetValue().GetType().c_str()),
874 wxT("Testing wxEVT_PG_CHANGING"), wxYES_NO
, m_pPropGridManager
);
878 wxASSERT(event
.CanVeto());
882 // Since we ask a question, it is better if we omit any validation
884 event
.SetValidationFailureBehavior(0);
890 // Note how we use three types of value getting in this method:
891 // A) event.GetPropertyValueAsXXX
892 // B) event.GetPropertValue, and then variant's GetXXX
893 // C) grid's GetPropertyValueAsXXX(id)
895 void FormMain::OnPropertyGridChange( wxPropertyGridEvent
& event
)
897 wxPGProperty
* property
= event
.GetProperty();
899 const wxString
& name
= property
->GetName();
900 wxVariant value
= property
->GetValue();
902 // Don't handle 'unspecified' values
903 if ( value
.IsNull() )
906 // Some settings are disabled outside Windows platform
907 if ( name
== wxT("X") )
908 SetSize ( m_pPropGridManager
->GetPropertyValueAsInt(property
), -1, -1, -1, wxSIZE_USE_EXISTING
);
909 else if ( name
== wxT("Y") )
910 // wxPGVariantToInt is safe long int value getter
911 SetSize ( -1, wxPGVariantToInt(value
), -1, -1, wxSIZE_USE_EXISTING
);
912 else if ( name
== wxT("Width") )
913 SetSize ( -1, -1, m_pPropGridManager
->GetPropertyValueAsInt(property
), -1, wxSIZE_USE_EXISTING
);
914 else if ( name
== wxT("Height") )
915 SetSize ( -1, -1, -1, wxPGVariantToInt(value
), wxSIZE_USE_EXISTING
);
916 else if ( name
== wxT("Label") )
918 SetTitle ( m_pPropGridManager
->GetPropertyValueAsString(property
) );
920 else if ( name
== wxT("Password") )
922 static int pwdMode
= 0;
924 //m_pPropGridManager->SetPropertyAttribute(property, wxPG_STRING_PASSWORD, (long)pwdMode);
930 if ( name
== wxT("Font") )
934 wxASSERT( font
.Ok() );
936 m_pPropGridManager
->SetFont( font
);
939 if ( name
== wxT("Margin Colour") )
941 wxColourPropertyValue cpv
;
943 m_pPropGridManager
->GetGrid()->SetMarginColour( cpv
.m_colour
);
945 else if ( name
== wxT("Cell Colour") )
947 wxColourPropertyValue cpv
;
949 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( cpv
.m_colour
);
951 else if ( name
== wxT("Line Colour") )
953 wxColourPropertyValue cpv
;
955 m_pPropGridManager
->GetGrid()->SetLineColour( cpv
.m_colour
);
957 else if ( name
== wxT("Cell Text Colour") )
959 wxColourPropertyValue cpv
;
961 m_pPropGridManager
->GetGrid()->SetCellTextColour( cpv
.m_colour
);
965 // -----------------------------------------------------------------------
967 void FormMain::OnPropertyGridSelect( wxPropertyGridEvent
& event
)
969 wxPGProperty
* property
= event
.GetProperty();
972 m_itemEnable
->Enable( TRUE
);
973 if ( property
->IsEnabled() )
974 m_itemEnable
->SetItemLabel( wxT("Disable") );
976 m_itemEnable
->SetItemLabel( wxT("Enable") );
980 m_itemEnable
->Enable( FALSE
);
984 wxPGProperty
* prop
= event
.GetProperty();
985 wxStatusBar
* sb
= GetStatusBar();
988 wxString
text(wxT("Selected: "));
989 text
+= m_pPropGridManager
->GetPropertyLabel( prop
);
990 sb
->SetStatusText ( text
);
995 // -----------------------------------------------------------------------
997 void FormMain::OnPropertyGridPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1000 wxStatusBar
* sb
= GetStatusBar();
1001 wxString
text(wxT("Page Changed: "));
1002 text
+= m_pPropGridManager
->GetPageName(m_pPropGridManager
->GetSelectedPage());
1003 sb
->SetStatusText( text
);
1007 // -----------------------------------------------------------------------
1009 void FormMain::OnPropertyGridHighlight( wxPropertyGridEvent
& WXUNUSED(event
) )
1013 // -----------------------------------------------------------------------
1015 void FormMain::OnPropertyGridItemRightClick( wxPropertyGridEvent
& event
)
1018 wxPGProperty
* prop
= event
.GetProperty();
1019 wxStatusBar
* sb
= GetStatusBar();
1022 wxString
text(wxT("Right-clicked: "));
1023 text
+= prop
->GetLabel();
1024 text
+= wxT(", name=");
1025 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1026 sb
->SetStatusText( text
);
1030 sb
->SetStatusText( wxEmptyString
);
1035 // -----------------------------------------------------------------------
1037 void FormMain::OnPropertyGridItemDoubleClick( wxPropertyGridEvent
& event
)
1040 wxPGProperty
* prop
= event
.GetProperty();
1041 wxStatusBar
* sb
= GetStatusBar();
1044 wxString
text(wxT("Double-clicked: "));
1045 text
+= prop
->GetLabel();
1046 text
+= wxT(", name=");
1047 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1048 sb
->SetStatusText ( text
);
1052 sb
->SetStatusText ( wxEmptyString
);
1057 // -----------------------------------------------------------------------
1059 void FormMain::OnPropertyGridButtonClick ( wxCommandEvent
& )
1062 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1063 wxStatusBar
* sb
= GetStatusBar();
1066 wxString
text(wxT("Button clicked: "));
1067 text
+= m_pPropGridManager
->GetPropertyLabel(prop
);
1068 text
+= wxT(", name=");
1069 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1070 sb
->SetStatusText( text
);
1074 ::wxMessageBox(wxT("SHOULD NOT HAPPEN!!!"));
1079 // -----------------------------------------------------------------------
1081 void FormMain::OnPropertyGridItemCollapse( wxPropertyGridEvent
& )
1083 wxLogDebug(wxT("Item was Collapsed"));
1086 // -----------------------------------------------------------------------
1088 void FormMain::OnPropertyGridItemExpand( wxPropertyGridEvent
& )
1090 wxLogDebug(wxT("Item was Expanded"));
1093 // -----------------------------------------------------------------------
1095 // EVT_TEXT handling
1096 void FormMain::OnPropertyGridTextUpdate( wxCommandEvent
& event
)
1101 // -----------------------------------------------------------------------
1103 void FormMain::OnPropertyGridKeyEvent( wxKeyEvent
& WXUNUSED(event
) )
1105 // Occurs on wxGTK mostly, but not wxMSW.
1108 // -----------------------------------------------------------------------
1110 void FormMain::OnLabelTextChange( wxCommandEvent
& WXUNUSED(event
) )
1112 // Uncomment following to allow property label modify in real-time
1113 // wxPGProperty& p = m_pPropGridManager->GetGrid()->GetSelection();
1114 // if ( !p.IsOk() ) return;
1115 // m_pPropGridManager->SetPropertyLabel( p, m_tcPropLabel->DoGetValue() );
1118 // -----------------------------------------------------------------------
1120 static const wxChar
* _fs_windowstyle_labels
[] = {
1121 wxT("wxSIMPLE_BORDER"),
1122 wxT("wxDOUBLE_BORDER"),
1123 wxT("wxSUNKEN_BORDER"),
1124 wxT("wxRAISED_BORDER"),
1126 wxT("wxTRANSPARENT_WINDOW"),
1127 wxT("wxTAB_TRAVERSAL"),
1128 wxT("wxWANTS_CHARS"),
1129 #if wxNO_FULL_REPAINT_ON_RESIZE
1130 wxT("wxNO_FULL_REPAINT_ON_RESIZE"),
1133 wxT("wxALWAYS_SHOW_SB"),
1134 wxT("wxCLIP_CHILDREN"),
1135 #if wxFULL_REPAINT_ON_RESIZE
1136 wxT("wxFULL_REPAINT_ON_RESIZE"),
1138 (const wxChar
*) NULL
// terminator is always needed
1141 static const long _fs_windowstyle_values
[] = {
1147 wxTRANSPARENT_WINDOW
,
1150 #if wxNO_FULL_REPAINT_ON_RESIZE
1151 wxNO_FULL_REPAINT_ON_RESIZE
,
1156 #if wxFULL_REPAINT_ON_RESIZE
1157 wxFULL_REPAINT_ON_RESIZE
1161 static const wxChar
* _fs_framestyle_labels
[] = {
1166 wxT("wxSTAY_ON_TOP"),
1167 wxT("wxSYSTEM_MENU"),
1168 wxT("wxRESIZE_BORDER"),
1169 wxT("wxFRAME_TOOL_WINDOW"),
1170 wxT("wxFRAME_NO_TASKBAR"),
1171 wxT("wxFRAME_FLOAT_ON_PARENT"),
1172 wxT("wxFRAME_SHAPED"),
1173 (const wxChar
*) NULL
1176 static const long _fs_framestyle_values
[] = {
1184 wxFRAME_TOOL_WINDOW
,
1186 wxFRAME_FLOAT_ON_PARENT
,
1190 // -----------------------------------------------------------------------
1192 void FormMain::OnTestXRC(wxCommandEvent
& WXUNUSED(event
))
1194 wxMessageBox(wxT("Sorrt, not yet implemented"));
1197 void FormMain::OnEnableCommonValues(wxCommandEvent
& WXUNUSED(event
))
1199 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1201 prop
->EnableCommonValue();
1203 wxMessageBox(wxT("First select a property"));
1206 void FormMain::PopulateWithStandardItems ()
1208 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1209 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Standard Items"));
1211 // Append is ideal way to add items to wxPropertyGrid.
1212 pg
->Append( new wxPropertyCategory(wxT("Appearance"),wxPG_LABEL
) );
1214 pg
->Append( new wxStringProperty(wxT("Label"),wxPG_LABEL
,GetTitle()) );
1215 pg
->Append( new wxFontProperty(wxT("Font"),wxPG_LABEL
) );
1216 pg
->SetPropertyHelpString ( wxT("Font"), wxT("Editing this will change font used in the property grid.") );
1218 pg
->Append( new wxSystemColourProperty(wxT("Margin Colour"),wxPG_LABEL
,
1219 pg
->GetGrid()->GetMarginColour()) );
1221 pg
->Append( new wxSystemColourProperty(wxT("Cell Colour"),wxPG_LABEL
,
1222 pg
->GetGrid()->GetCellBackgroundColour()) );
1223 pg
->Append( new wxSystemColourProperty(wxT("Cell Text Colour"),wxPG_LABEL
,
1224 pg
->GetGrid()->GetCellTextColour()) );
1225 pg
->Append( new wxSystemColourProperty(wxT("Line Colour"),wxPG_LABEL
,
1226 pg
->GetGrid()->GetLineColour()) );
1227 pg
->Append( new wxFlagsProperty(wxT("Window Styles"),wxPG_LABEL
,
1228 m_combinedFlags
, GetWindowStyle()) );
1230 //pg->SetPropertyAttribute(wxT("Window Styles"),wxPG_BOOL_USE_CHECKBOX,true,wxPG_RECURSE);
1232 pg
->Append( new wxCursorProperty(wxT("Cursor"),wxPG_LABEL
) );
1234 pg
->Append( new wxPropertyCategory(wxT("Position"),wxT("PositionCategory")) );
1235 pg
->SetPropertyHelpString( wxT("PositionCategory"), wxT("Change in items in this category will cause respective changes in frame.") );
1237 // Let's demonstrate 'Units' attribute here
1239 // Note that we use many attribute constants instead of strings here
1240 // (for instance, wxPG_ATTR_MIN, instead of wxT("min")).
1241 // Using constant may reduce binary size.
1243 pg
->Append( new wxIntProperty(wxT("Height"),wxPG_LABEL
,480) );
1244 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MIN
, (long)10 );
1245 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MAX
, (long)2048 );
1246 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1248 // Set value to unspecified so that InlineHelp attribute will be demonstrated
1249 pg
->SetPropertyValueUnspecified(wxT("Height"));
1250 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_INLINE_HELP
, wxT("Enter new height for window") );
1251 pg
->SetPropertyHelpString(wxT("Height"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1253 pg
->Append( new wxIntProperty(wxT("Width"),wxPG_LABEL
,640) );
1254 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MIN
, (long)10 );
1255 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MAX
, (long)2048 );
1256 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1258 pg
->SetPropertyValueUnspecified(wxT("Width"));
1259 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_INLINE_HELP
, wxT("Enter new width for window") );
1260 pg
->SetPropertyHelpString(wxT("Width"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1262 pg
->Append( new wxIntProperty(wxT("X"),wxPG_LABEL
,10) );
1263 pg
->SetPropertyAttribute(wxT("X"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1264 pg
->SetPropertyHelpString(wxT("X"), wxT("This property uses \"Units\" attribute.") );
1266 pg
->Append( new wxIntProperty(wxT("Y"),wxPG_LABEL
,10) );
1267 pg
->SetPropertyAttribute(wxT("Y"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1268 pg
->SetPropertyHelpString(wxT("Y"), wxT("This property uses \"Units\" attribute.") );
1270 const wxChar
* disabledHelpString
= wxT("This property is simply disabled. Inorder to have label disabled as well, ")
1271 wxT("you need to set wxPG_EX_GREY_LABEL_WHEN_DISABLED using SetExtraStyle.");
1273 pg
->Append( new wxPropertyCategory(wxT("Environment"),wxPG_LABEL
) );
1274 pg
->Append( new wxStringProperty(wxT("Operating System"),wxPG_LABEL
,::wxGetOsDescription()) );
1276 pg
->Append( new wxStringProperty(wxT("User Id"),wxPG_LABEL
,::wxGetUserId()) );
1277 pg
->Append( new wxDirProperty(wxT("User Home"),wxPG_LABEL
,::wxGetUserHome()) );
1278 pg
->Append( new wxStringProperty(wxT("User Name"),wxPG_LABEL
,::wxGetUserName()) );
1280 // Disable some of them
1281 pg
->DisableProperty( wxT("Operating System") );
1282 pg
->DisableProperty( wxT("User Id") );
1283 pg
->DisableProperty( wxT("User Name") );
1285 pg
->SetPropertyHelpString( wxT("Operating System"), disabledHelpString
);
1286 pg
->SetPropertyHelpString( wxT("User Id"), disabledHelpString
);
1287 pg
->SetPropertyHelpString( wxT("User Name"), disabledHelpString
);
1289 pg
->Append( new wxPropertyCategory(wxT("More Examples"),wxPG_LABEL
) );
1291 pg
->Append( new wxFontDataProperty( wxT("FontDataProperty"), wxPG_LABEL
) );
1292 pg
->SetPropertyHelpString( wxT("FontDataProperty"),
1293 wxT("This demonstrates wxFontDataProperty class defined in this sample app. ")
1294 wxT("It is exactly like wxFontProperty from the library, but also has colour sub-property.")
1297 pg
->Append( new wxDirsProperty(wxT("DirsProperty"),wxPG_LABEL
) );
1298 pg
->SetPropertyHelpString( wxT("DirsProperty"),
1299 wxT("This demonstrates wxDirsProperty class defined in this sample app. ")
1300 wxT("It is built with WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR macro, ")
1301 wxT("with custom action (dir dialog popup) defined.")
1304 pg
->Append( new wxAdvImageFileProperty(wxT("AdvImageFileProperty"),wxPG_LABEL
) );
1305 pg
->SetPropertyHelpString( wxT("AdvImageFileProperty"),
1306 wxT("This demonstrates wxAdvImageFileProperty class defined in this sample app. ")
1307 wxT("Button can be used to add new images to the popup list.")
1310 wxArrayDouble arrdbl
;
1317 pg
->Append( new wxArrayDoubleProperty(wxT("ArrayDoubleProperty"),wxPG_LABEL
,arrdbl
) );
1318 //pg->SetPropertyAttribute(wxT("ArrayDoubleProperty"),wxPG_FLOAT_PRECISION,(long)2);
1319 pg
->SetPropertyHelpString( wxT("ArrayDoubleProperty"),
1320 wxT("This demonstrates wxArrayDoubleProperty class defined in this sample app. ")
1321 wxT("It is an example of a custom list editor property.")
1324 pg
->Append( new wxLongStringProperty(wxT("Information"),wxPG_LABEL
,
1325 wxT("Editing properties will have immediate effect on this window, ")
1326 wxT("and vice versa (atleast in most cases, that is).")
1328 pg
->SetPropertyHelpString( wxT("Information"),
1329 wxT("This property is read-only.") );
1331 pg
->SetPropertyReadOnly( wxT("Information"), true );
1334 // Set test information for cells in columns 3 and 4
1335 // (reserve column 2 for displaying units)
1336 wxPropertyGridIterator it
;
1337 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_FOLDER
);
1339 for ( it
= pg
->GetGrid()->GetIterator();
1343 wxPGProperty
* p
= *it
;
1344 if ( p
->IsCategory() )
1347 pg
->SetPropertyCell( p
, 3, wxT("Cell 3"), bmp
);
1348 pg
->SetPropertyCell( p
, 4, wxT("Cell 4"), wxNullBitmap
, *wxWHITE
, *wxBLACK
);
1352 // -----------------------------------------------------------------------
1354 void FormMain::PopulateWithExamples ()
1356 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1357 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Examples"));
1361 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1362 //pg->SetPropertyHelpString ( wxT("Examples"), wxT("This category has example of (almost) every built-in property class.") );
1365 pg
->Append( new wxIntProperty ( wxT("SpinCtrl"), wxPG_LABEL
, 0 ) );
1367 pg
->SetPropertyEditor( wxT("SpinCtrl"), wxPGEditor_SpinCtrl
);
1368 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MIN
, (long)-10 ); // Use constants instead of string
1369 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MAX
, (long)10 ); // for reduced binary size.
1370 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Step"), (long)2 );
1371 //pg->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Wrap"), true );
1373 pg
->SetPropertyHelpString( wxT("SpinCtrl"),
1374 wxT("This is regular wxIntProperty, which editor has been ")
1375 wxT("changed to wxPGEditor_SpinCtrl. Note however that ")
1376 wxT("static wxPropertyGrid::RegisterAdditionalEditors() ")
1377 wxT("needs to be called prior to using it."));
1381 // Add bool property
1382 pg
->Append( new wxBoolProperty( wxT("BoolProperty"), wxPG_LABEL
, false ) );
1384 // Add bool property with check box
1385 pg
->Append( new wxBoolProperty( wxT("BoolProperty with CheckBox"), wxPG_LABEL
, false ) );
1386 pg
->SetPropertyAttribute( wxT("BoolProperty with CheckBox"),
1387 wxPG_BOOL_USE_CHECKBOX
,
1390 pg
->SetPropertyHelpString( wxT("BoolProperty with CheckBox"),
1391 wxT("Property attribute wxPG_BOOL_USE_CHECKBOX has been set to true.") );
1393 pid
= pg
->Append( new wxFloatProperty( wxT("FloatProperty"),
1397 // A string property that can be edited in a separate editor dialog.
1398 pg
->Append( new wxLongStringProperty( wxT("LongStringProperty"), wxT("LongStringProp"),
1399 wxT("This is much longer string than the first one. Edit it by clicking the button.") ) );
1401 // A property that edits a wxArrayString.
1402 wxArrayString example_array
;
1403 example_array
.Add( wxT("String 1"));
1404 example_array
.Add( wxT("String 2"));
1405 example_array
.Add( wxT("String 3"));
1406 pg
->Append( new wxArrayStringProperty( wxT("ArrayStringProperty"), wxPG_LABEL
,
1409 // Test adding same category multiple times ( should not actually create a new one )
1410 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1412 // A file selector property. Note that argument between name
1413 // and initial value is wildcard (format same as in wxFileDialog).
1414 prop
= new wxFileProperty( wxT("FileProperty"), wxT("TextFile") );
1417 prop
->SetAttribute(wxPG_FILE_WILDCARD
,wxT("Text Files (*.txt)|*.txt"));
1418 prop
->SetAttribute(wxPG_FILE_DIALOG_TITLE
,wxT("Custom File Dialog Title"));
1419 prop
->SetAttribute(wxPG_FILE_SHOW_FULL_PATH
,false);
1422 prop
->SetAttribute(wxPG_FILE_SHOW_RELATIVE_PATH
,wxT("C:\\Windows"));
1423 pg
->SetPropertyValue(prop
,wxT("C:\\Windows\\System32\\msvcrt71.dll"));
1427 // An image file property. Arguments are just like for FileProperty, but
1428 // wildcard is missing (it is autogenerated from supported image formats).
1429 // If you really need to override it, create property separately, and call
1430 // its SetWildcard method.
1431 pg
->Append( new wxImageFileProperty( wxT("ImageFile"), wxPG_LABEL
) );
1434 pid
= pg
->Append( new wxColourProperty(wxT("ColourProperty"),wxPG_LABEL
,*wxRED
) );
1435 //pg->SetPropertyAttribute(pid,wxPG_COLOUR_ALLOW_CUSTOM,false);
1436 pg
->SetPropertyEditor( wxT("ColourProperty"), wxPGEditor_ComboBox
);
1437 pg
->GetProperty(wxT("ColourProperty"))->SetFlag(wxPG_PROP_AUTO_UNSPECIFIED
);
1438 pg
->SetPropertyHelpString( wxT("ColourProperty"),
1439 wxT("wxPropertyGrid::SetPropertyEditor method has been used to change ")
1440 wxT("editor of this property to wxPGEditor_ComboBox)"));
1443 // This demonstrates using alternative editor for colour property
1444 // to trigger colour dialog directly from button.
1445 pg
->Append( new wxColourProperty(wxT("ColourProperty2"),wxPG_LABEL
,*wxGREEN
) );
1448 // wxEnumProperty does not store strings or even list of strings
1449 // ( so that's why they are static in function ).
1450 static const wxChar
* enum_prop_labels
[] = { wxT("One Item"),
1451 wxT("Another Item"), wxT("One More"), wxT("This Is Last"), NULL
};
1453 // this value array would be optional if values matched string indexes
1454 static long enum_prop_values
[] = { 40, 80, 120, 160 };
1456 // note that the initial value (the last argument) is the actual value,
1457 // not index or anything like that. Thus, our value selects "Another Item".
1459 // 0 before value is number of items. If it is 0, like in our example,
1460 // number of items is calculated, and this requires that the string pointer
1461 // array is terminated with NULL.
1462 pg
->Append( new wxEnumProperty(wxT("EnumProperty"),wxPG_LABEL
,
1463 enum_prop_labels
, enum_prop_values
, 80 ) );
1467 // use basic table from our previous example
1468 // can also set/add wxArrayStrings and wxArrayInts directly.
1469 soc
.Set( enum_prop_labels
, enum_prop_values
);
1472 soc
.Add( wxT("Look, it continues"), 200 );
1473 soc
.Add( wxT("Even More"), 240 );
1474 soc
.Add( wxT("And More"), 280 );
1475 soc
.Add( wxT("True End of the List"), 320 );
1477 // Test custom colours ([] operator of wxPGChoices returns
1478 // references to wxPGChoiceEntry).
1479 soc
[1].SetFgCol(*wxRED
);
1480 soc
[1].SetBgCol(*wxLIGHT_GREY
);
1481 soc
[2].SetFgCol(*wxGREEN
);
1482 soc
[2].SetBgCol(*wxLIGHT_GREY
);
1483 soc
[3].SetFgCol(*wxBLUE
);
1484 soc
[3].SetBgCol(*wxLIGHT_GREY
);
1485 soc
[4].SetBitmap(wxArtProvider::GetBitmap(wxART_FOLDER
));
1487 pg
->Append( new wxEnumProperty(wxT("EnumProperty 2"),
1491 pg
->GetProperty(wxT("EnumProperty 2"))->AddChoice(wxT("Testing Extra"), 360);
1493 // Add a second time to test that the caching works. Also use
1494 // short form of constructor list + SetChoices.
1495 prop
= new wxEnumProperty(wxT("EnumProperty 3"), wxPG_LABEL
);
1497 prop
->SetChoices(soc
);
1498 prop
->SetValue(360);
1499 pg
->SetPropertyHelpString(prop
,
1500 wxT("Should have same choices as EnumProperty 2"));
1502 pg
->Append( new wxEnumProperty(wxT("EnumProperty 4"),wxPG_LABEL
,
1504 pg
->SetPropertyHelpString(wxT("EnumProperty 4"),
1505 wxT("Should have same choices as EnumProperty 2"));
1507 pg
->Append( new wxEnumProperty(wxT("EnumProperty 5"),wxPG_LABEL
,
1509 pg
->GetProperty(wxT("EnumProperty 5"))->SetChoicesExclusive();
1510 pg
->GetProperty(wxT("EnumProperty 5"))->AddChoice(wxT("5th only"), 360);
1512 pg
->SetPropertyHelpString(wxT("EnumProperty 5"),
1513 wxT("Should have one extra item when compared to EnumProperty 4"));
1515 // Password property example.
1516 pg
->Append( new wxStringProperty(wxT("Password"),wxPG_LABEL
, wxT("password")) );
1517 pg
->SetPropertyAttribute( wxT("Password"), wxPG_STRING_PASSWORD
, true );
1518 pg
->SetPropertyHelpString( wxT("Password"),
1519 wxT("Has attribute wxPG_STRING_PASSWORD set to true") );
1521 // String editor with dir selector button. Uses wxEmptyString as name, which
1522 // is allowed (naturally, in this case property cannot be accessed by name).
1523 pg
->Append( new wxDirProperty( wxT("DirProperty"), wxPG_LABEL
, ::wxGetUserHome()) );
1524 pg
->SetPropertyAttribute( wxT("DirProperty"),
1525 wxPG_DIR_DIALOG_MESSAGE
,
1526 wxT("This is a custom dir dialog message") );
1528 // Add string property - first arg is label, second name, and third initial value
1529 pg
->Append( new wxStringProperty ( wxT("StringProperty"), wxPG_LABEL
) );
1530 pg
->SetPropertyMaxLength( wxT("StringProperty"), 6 );
1531 pg
->SetPropertyHelpString( wxT("StringProperty"),
1532 wxT("Max length of this text has been limited to 6, using wxPropertyGrid::SetPropertyMaxLength.") );
1534 // Set value after limiting so that it will be applied
1535 pg
->SetPropertyValue( wxT("StringProperty"), wxT("some text") );
1538 // this value array would be optional if values matched string indexes
1539 //long flags_prop_values[] = { wxICONIZE, wxCAPTION, wxMINIMIZE_BOX, wxMAXIMIZE_BOX };
1541 //pg->Append( wxFlagsProperty(wxT("Example of FlagsProperty"),wxT("FlagsProp"),
1542 // flags_prop_labels, flags_prop_values, 0, GetWindowStyle() ) );
1545 // Multi choice dialog.
1546 wxArrayString tchoices
;
1547 tchoices
.Add(wxT("Cabbage"));
1548 tchoices
.Add(wxT("Carrot"));
1549 tchoices
.Add(wxT("Onion"));
1550 tchoices
.Add(wxT("Potato"));
1551 tchoices
.Add(wxT("Strawberry"));
1553 wxArrayString tchoicesValues
;
1554 tchoicesValues
.Add(wxT("Carrot"));
1555 tchoicesValues
.Add(wxT("Potato"));
1557 pg
->Append( new wxEnumProperty(wxT("EnumProperty X"),wxPG_LABEL
, tchoices
) );
1559 pg
->Append( new wxMultiChoiceProperty( wxT("MultiChoiceProperty"), wxPG_LABEL
,
1560 tchoices
, tchoicesValues
) );
1561 pg
->SetPropertyAttribute( wxT("MultiChoiceProperty"), wxT("UserStringMode"), true );
1563 pg
->Append( new wxSizeProperty( wxT("SizeProperty"), wxT("Size"), GetSize() ) );
1564 pg
->Append( new wxPointProperty( wxT("PointProperty"), wxT("Position"), GetPosition() ) );
1567 pg
->Append( new wxUIntProperty( wxT("UIntProperty"), wxPG_LABEL
, wxULongLong(wxULL(0xFEEEFEEEFEEE))));
1568 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX
, wxPG_PREFIX_NONE
);
1569 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE
, wxPG_BASE_HEX
);
1570 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX, wxPG_PREFIX_NONE );
1571 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE, wxPG_BASE_OCT );
1574 // wxEditEnumProperty
1576 eech
.Add(wxT("Choice 1"));
1577 eech
.Add(wxT("Choice 2"));
1578 eech
.Add(wxT("Choice 3"));
1579 pg
->Append( new wxEditEnumProperty(wxT("EditEnumProperty"), wxPG_LABEL
, eech
) ); // , wxT("Choice 2")
1582 //wxTextValidator validator1(wxFILTER_NUMERIC,&v_);
1583 //pg->SetPropertyValidator( wxT("EditEnumProperty"), validator1 );
1587 // wxDateTimeProperty
1588 pg
->Append( new wxDateProperty(wxT("DateProperty"), wxPG_LABEL
, wxDateTime::Now() ) );
1590 #if wxUSE_DATEPICKCTRL
1591 pg
->SetPropertyAttribute( wxT("DateProperty"), wxPG_DATE_PICKER_STYLE
,
1592 (long)(wxDP_DROPDOWN
| wxDP_SHOWCENTURY
) );
1594 pg
->SetPropertyHelpString( wxT("DateProperty"),
1595 wxT("Attribute wxPG_DATE_PICKER_STYLE has been set to (long)(wxDP_DROPDOWN | wxDP_SHOWCENTURY).")
1596 wxT("Also note that wxPG_ALLOW_WXADV needs to be defined inorder to use wxDatePickerCtrl.") );
1602 // Add Triangle properties as both wxTriangleProperty and
1603 // a generic parent property (using wxStringProperty).
1605 wxPGProperty
* topId
= pg
->Append( new wxStringProperty(wxT("3D Object"), wxPG_LABEL
, wxT("<composed>")) );
1607 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 1"), wxT("Triangle 1"), wxT("<composed>")) );
1608 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1609 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1610 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1612 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 2"), wxT("Triangle 2") ) );
1614 pg
->SetPropertyHelpString( wxT("3D Object"),
1615 wxT("3D Object is wxStringProperty with value \"<composed>\". Two of its children are similar wxStringProperties with ")
1616 wxT("three wxVectorProperty children, and other two are custom wxTriangleProperties.") );
1618 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 3"), wxT("Triangle 3"), wxT("<composed>")) );
1619 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1620 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1621 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1623 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 4"), wxT("Triangle 4") ) );
1626 // This snippet is a doc sample test
1628 wxPGProperty
* carProp
= pg
->Append(new wxStringProperty(wxT("Car"),
1630 wxT("<composed>")));
1632 pg
->AppendIn(carProp
, new wxStringProperty(wxT("Model"),
1634 wxT("Lamborghini Diablo SV")));
1636 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Engine Size (cc)"),
1640 wxPGProperty
* speedsProp
= pg
->AppendIn(carProp
,
1641 new wxStringProperty(wxT("Speeds"),
1643 wxT("<composed>")));
1645 pg
->AppendIn( speedsProp
, new wxIntProperty(wxT("Max. Speed (mph)"),
1647 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("0-100 mph (sec)"),
1649 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("1/4 mile (sec)"),
1652 // This is how child property can be referred to by name
1653 pg
->SetPropertyValue( wxT("Car.Speeds.Max. Speed (mph)"), 300 );
1655 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Price ($)"),
1659 // Displayed value of "Car" property is now very close to this:
1660 // "Lamborghini Diablo SV; 5707 [300; 3.9; 8.6] 300000"
1663 // Test wxSampleMultiButtonEditor
1664 pg
->Append( new wxLongStringProperty(wxT("MultipleButtons"), wxPG_LABEL
) );
1665 pg
->SetPropertyEditor(wxT("MultipleButtons"), m_pSampleMultiButtonEditor
);
1667 // Test SingleChoiceProperty
1668 pg
->Append( new SingleChoiceProperty(wxT("SingleChoiceProperty")) );
1672 // Test adding variable height bitmaps in wxPGChoices
1675 bc
.Add(wxT("Wee"), wxBitmap(16, 16));
1676 bc
.Add(wxT("Not so wee"), wxBitmap(32, 32));
1677 bc
.Add(wxT("Friggin' huge"), wxBitmap(64, 64));
1679 pg
->Append( new wxEnumProperty(wxT("Variable Height Bitmaps"),
1685 // Test how non-editable composite strings appear
1686 pid
= pg
->Append( new wxStringProperty(wxT("wxWidgets Traits"), wxPG_LABEL
, wxT("<composed>")) );
1687 pg
->SetPropertyReadOnly(pid
);
1689 pg
->AppendIn(pid
, new wxStringProperty(wxT("Latest Release"), wxPG_LABEL
, wxT("2.8.8")) );
1690 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Win API"), wxPG_LABEL
, true) );
1691 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1692 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Cocoa"), wxPG_LABEL
, true) );
1693 pg
->AppendIn(pid
, new wxBoolProperty(wxT("BeOS"), wxPG_LABEL
, false) );
1694 pg
->AppendIn(pid
, new wxStringProperty(wxT("SVN Trunk Version"), wxPG_LABEL
, wxT("2.9.0")) );
1695 pg
->AppendIn(pid
, new wxBoolProperty(wxT("GTK+"), wxPG_LABEL
, true) );
1696 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Sky OS"), wxPG_LABEL
, false) );
1697 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1699 AddTestProperties(pg
);
1702 // -----------------------------------------------------------------------
1704 void FormMain::PopulateWithLibraryConfig ()
1706 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1707 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("wxWidgets Library Config"));
1711 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_REPORT_VIEW
);
1715 #define ADD_WX_LIB_CONF_GROUP(A) \
1716 cat = pg->AppendIn( pid, new wxPropertyCategory(A) ); \
1717 pg->SetPropertyCell( cat, 0, wxPG_LABEL, bmp );
1719 #define ADD_WX_LIB_CONF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)((A>0)?true:false)));
1720 #define ADD_WX_LIB_CONF_NODEF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)false) ); \
1721 pg->DisableProperty(wxT(#A));
1723 pid
= pg
->Append( new wxPropertyCategory( wxT("wxWidgets Library Configuration") ) );
1724 pg
->SetPropertyCell( pid
, 0, wxPG_LABEL
, bmp
);
1726 ADD_WX_LIB_CONF_GROUP(wxT("Global Settings"))
1727 ADD_WX_LIB_CONF( wxUSE_GUI
)
1729 ADD_WX_LIB_CONF_GROUP(wxT("Compatibility Settings"))
1730 #if defined(WXWIN_COMPATIBILITY_2_2)
1731 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_2
)
1733 #if defined(WXWIN_COMPATIBILITY_2_4)
1734 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_4
)
1736 #if defined(WXWIN_COMPATIBILITY_2_6)
1737 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_6
)
1739 #if defined(WXWIN_COMPATIBILITY_2_8)
1740 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_8
)
1742 #ifdef wxFONT_SIZE_COMPATIBILITY
1743 ADD_WX_LIB_CONF( wxFONT_SIZE_COMPATIBILITY
)
1745 ADD_WX_LIB_CONF_NODEF ( wxFONT_SIZE_COMPATIBILITY
)
1747 #ifdef wxDIALOG_UNIT_COMPATIBILITY
1748 ADD_WX_LIB_CONF( wxDIALOG_UNIT_COMPATIBILITY
)
1750 ADD_WX_LIB_CONF_NODEF ( wxDIALOG_UNIT_COMPATIBILITY
)
1753 ADD_WX_LIB_CONF_GROUP(wxT("Debugging Settings"))
1754 ADD_WX_LIB_CONF( wxUSE_DEBUG_CONTEXT
)
1755 ADD_WX_LIB_CONF( wxUSE_MEMORY_TRACING
)
1756 ADD_WX_LIB_CONF( wxUSE_GLOBAL_MEMORY_OPERATORS
)
1757 ADD_WX_LIB_CONF( wxUSE_DEBUG_NEW_ALWAYS
)
1758 ADD_WX_LIB_CONF( wxUSE_ON_FATAL_EXCEPTION
)
1760 ADD_WX_LIB_CONF_GROUP(wxT("Unicode Support"))
1761 ADD_WX_LIB_CONF( wxUSE_UNICODE
)
1762 ADD_WX_LIB_CONF( wxUSE_UNICODE_MSLU
)
1763 ADD_WX_LIB_CONF( wxUSE_WCHAR_T
)
1765 ADD_WX_LIB_CONF_GROUP(wxT("Global Features"))
1766 ADD_WX_LIB_CONF( wxUSE_EXCEPTIONS
)
1767 ADD_WX_LIB_CONF( wxUSE_EXTENDED_RTTI
)
1768 ADD_WX_LIB_CONF( wxUSE_STL
)
1769 ADD_WX_LIB_CONF( wxUSE_LOG
)
1770 ADD_WX_LIB_CONF( wxUSE_LOGWINDOW
)
1771 ADD_WX_LIB_CONF( wxUSE_LOGGUI
)
1772 ADD_WX_LIB_CONF( wxUSE_LOG_DIALOG
)
1773 ADD_WX_LIB_CONF( wxUSE_CMDLINE_PARSER
)
1774 ADD_WX_LIB_CONF( wxUSE_THREADS
)
1775 ADD_WX_LIB_CONF( wxUSE_STREAMS
)
1776 ADD_WX_LIB_CONF( wxUSE_STD_IOSTREAM
)
1778 ADD_WX_LIB_CONF_GROUP(wxT("Non-GUI Features"))
1779 ADD_WX_LIB_CONF( wxUSE_LONGLONG
)
1780 ADD_WX_LIB_CONF( wxUSE_FILE
)
1781 ADD_WX_LIB_CONF( wxUSE_FFILE
)
1782 ADD_WX_LIB_CONF( wxUSE_FSVOLUME
)
1783 ADD_WX_LIB_CONF( wxUSE_TEXTBUFFER
)
1784 ADD_WX_LIB_CONF( wxUSE_TEXTFILE
)
1785 ADD_WX_LIB_CONF( wxUSE_INTL
)
1786 ADD_WX_LIB_CONF( wxUSE_DATETIME
)
1787 ADD_WX_LIB_CONF( wxUSE_TIMER
)
1788 ADD_WX_LIB_CONF( wxUSE_STOPWATCH
)
1789 ADD_WX_LIB_CONF( wxUSE_CONFIG
)
1790 #ifdef wxUSE_CONFIG_NATIVE
1791 ADD_WX_LIB_CONF( wxUSE_CONFIG_NATIVE
)
1793 ADD_WX_LIB_CONF_NODEF ( wxUSE_CONFIG_NATIVE
)
1795 ADD_WX_LIB_CONF( wxUSE_DIALUP_MANAGER
)
1796 ADD_WX_LIB_CONF( wxUSE_DYNLIB_CLASS
)
1797 ADD_WX_LIB_CONF( wxUSE_DYNAMIC_LOADER
)
1798 ADD_WX_LIB_CONF( wxUSE_SOCKETS
)
1799 ADD_WX_LIB_CONF( wxUSE_FILESYSTEM
)
1800 ADD_WX_LIB_CONF( wxUSE_FS_ZIP
)
1801 ADD_WX_LIB_CONF( wxUSE_FS_INET
)
1802 ADD_WX_LIB_CONF( wxUSE_ZIPSTREAM
)
1803 ADD_WX_LIB_CONF( wxUSE_ZLIB
)
1804 ADD_WX_LIB_CONF( wxUSE_APPLE_IEEE
)
1805 ADD_WX_LIB_CONF( wxUSE_JOYSTICK
)
1806 ADD_WX_LIB_CONF( wxUSE_FONTMAP
)
1807 ADD_WX_LIB_CONF( wxUSE_MIMETYPE
)
1808 ADD_WX_LIB_CONF( wxUSE_PROTOCOL
)
1809 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FILE
)
1810 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FTP
)
1811 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_HTTP
)
1812 ADD_WX_LIB_CONF( wxUSE_URL
)
1813 #ifdef wxUSE_URL_NATIVE
1814 ADD_WX_LIB_CONF( wxUSE_URL_NATIVE
)
1816 ADD_WX_LIB_CONF_NODEF ( wxUSE_URL_NATIVE
)
1818 ADD_WX_LIB_CONF( wxUSE_REGEX
)
1819 ADD_WX_LIB_CONF( wxUSE_SYSTEM_OPTIONS
)
1820 ADD_WX_LIB_CONF( wxUSE_SOUND
)
1822 ADD_WX_LIB_CONF( wxUSE_XRC
)
1824 ADD_WX_LIB_CONF_NODEF ( wxUSE_XRC
)
1826 ADD_WX_LIB_CONF( wxUSE_XML
)
1828 // Set them to use check box.
1829 pg
->SetPropertyAttribute(pid
,wxPG_BOOL_USE_CHECKBOX
,true,wxPG_RECURSE
);
1834 // Handle events of the third page here.
1835 class wxMyPropertyGridPage
: public wxPropertyGridPage
1839 // Return false here to indicate unhandled events should be
1840 // propagated to manager's parent, as normal.
1841 virtual bool IsHandlingAllEvents() const { return false; }
1845 virtual wxPGProperty
* DoInsert( wxPGProperty
* parent
,
1847 wxPGProperty
* property
)
1849 return wxPropertyGridPage::DoInsert(parent
,index
,property
);
1852 void OnPropertySelect( wxPropertyGridEvent
& event
);
1853 void OnPropertyChanging( wxPropertyGridEvent
& event
);
1854 void OnPropertyChange( wxPropertyGridEvent
& event
);
1855 void OnPageChange( wxPropertyGridEvent
& event
);
1858 DECLARE_EVENT_TABLE()
1862 BEGIN_EVENT_TABLE(wxMyPropertyGridPage
, wxPropertyGridPage
)
1863 EVT_PG_SELECTED( wxID_ANY
, wxMyPropertyGridPage::OnPropertySelect
)
1864 EVT_PG_CHANGING( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChanging
)
1865 EVT_PG_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChange
)
1866 EVT_PG_PAGE_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPageChange
)
1870 void wxMyPropertyGridPage::OnPropertySelect( wxPropertyGridEvent
& WXUNUSED(event
) )
1872 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertySelect()"));
1875 void wxMyPropertyGridPage::OnPropertyChange( wxPropertyGridEvent
& event
)
1877 wxPGProperty
* p
= event
.GetProperty();
1878 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChange('%s', to value '%s')"),
1879 p
->GetName().c_str(),
1880 p
->GetDisplayedString().c_str());
1883 void wxMyPropertyGridPage::OnPropertyChanging( wxPropertyGridEvent
& event
)
1885 wxPGProperty
* p
= event
.GetProperty();
1886 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChanging('%s', to value '%s')"),
1887 p
->GetName().c_str(),
1888 event
.GetValue().GetString().c_str());
1891 void wxMyPropertyGridPage::OnPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1893 wxLogDebug(wxT("wxMyPropertyGridPage::OnPageChange()"));
1897 class wxPGKeyHandler
: public wxEvtHandler
1901 void OnKeyEvent( wxKeyEvent
& event
)
1903 wxMessageBox(wxString::Format(wxT("%i"),event
.GetKeyCode()));
1907 DECLARE_EVENT_TABLE()
1910 BEGIN_EVENT_TABLE(wxPGKeyHandler
,wxEvtHandler
)
1911 EVT_KEY_DOWN( wxPGKeyHandler::OnKeyEvent
)
1915 // -----------------------------------------------------------------------
1917 void FormMain::InitPanel()
1922 wxWindow
* panel
= new wxPanel(this,-1,wxPoint(0,0),wxSize(400,400));
1926 wxBoxSizer
* topSizer
= new wxBoxSizer ( wxVERTICAL
);
1928 m_topSizer
= topSizer
;
1931 void FormMain::FinalizePanel( bool wasCreated
)
1933 m_panel
->SetSizer( m_topSizer
);
1934 m_topSizer
->SetSizeHints( m_panel
);
1936 wxBoxSizer
* panelSizer
= new wxBoxSizer( wxHORIZONTAL
);
1937 panelSizer
->Add( m_panel
, 1, wxEXPAND
|wxFIXED_MINSIZE
);
1938 SetSizer( panelSizer
);
1939 panelSizer
->SetSizeHints( this );
1944 (wxSystemSettings::GetMetric(wxSYS_SCREEN_X
)/10)*4,
1945 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
)/10)*8
1951 void FormMain::PopulateGrid()
1953 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1954 pgman
->AddPage(wxT("Standard Items"));
1956 PopulateWithStandardItems();
1958 pgman
->AddPage(wxT("wxWidgets Library Config"));
1960 PopulateWithLibraryConfig();
1962 wxPropertyGridPage
* myPage
= new wxMyPropertyGridPage();
1963 myPage
->Append( new wxIntProperty ( wxT("IntProperty"), wxPG_LABEL
, 12345678 ) );
1965 // Use wxMyPropertyGridPage (see above) to test the
1966 // custom wxPropertyGridPage feature.
1967 pgman
->AddPage(wxT("Examples"),wxNullBitmap
,myPage
);
1969 PopulateWithExamples();
1972 void FormMain::CreateGrid( int style
, int extraStyle
)
1975 // This function (re)creates the property grid in our sample
1979 style
= // default style
1980 wxPG_BOLD_MODIFIED
|
1981 wxPG_SPLITTER_AUTO_CENTER
|
1983 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
1985 //wxPG_HIDE_CATEGORIES |
1986 //wxPG_LIMITED_EDITING |
1991 if ( extraStyle
== -1 )
1992 // default extra style
1993 extraStyle
= wxPG_EX_MODE_BUTTONS
;
1994 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
1995 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
1996 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
1997 //| wxPG_EX_HELP_AS_TOOLTIPS
1999 bool wasCreated
= m_panel
? false : true;
2004 // This shows how to combine two static choice descriptors
2005 m_combinedFlags
.Add( _fs_windowstyle_labels
, _fs_windowstyle_values
);
2006 m_combinedFlags
.Add( _fs_framestyle_labels
, _fs_framestyle_values
);
2008 wxPropertyGridManager
* pgman
= m_pPropGridManager
=
2009 new wxPropertyGridManager(m_panel
,
2010 // Don't change this into wxID_ANY in the sample, or the
2011 // event handling will obviously be broken.
2017 m_propGrid
= pgman
->GetGrid();
2019 pgman
->SetExtraStyle(extraStyle
);
2021 m_pPropGridManager
->SetValidationFailureBehavior( wxPG_VFB_BEEP
| wxPG_VFB_MARK_CELL
| wxPG_VFB_SHOW_MESSAGE
);
2023 m_pPropGridManager
->GetGrid()->SetVerticalSpacing( 2 );
2027 // Change some attributes in all properties
2028 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING,true);
2029 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_CHECKBOX,true);
2031 //m_pPropGridManager->SetSplitterLeft(true);
2032 //m_pPropGridManager->SetSplitterPosition(137);
2035 // This would setup event handling without event table entries
2036 Connect(m_pPropGridManager->GetId(), wxEVT_PG_SELECTED,
2037 wxPropertyGridEventHandler(FormMain::OnPropertyGridSelect) );
2038 Connect(m_pPropGridManager->GetId(), wxEVT_PG_CHANGED,
2039 wxPropertyGridEventHandler(FormMain::OnPropertyGridChange) );
2042 m_topSizer
->Add( m_pPropGridManager
, 1, wxEXPAND
);
2044 FinalizePanel(wasCreated
);
2047 // -----------------------------------------------------------------------
2049 FormMain::FormMain(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
) :
2050 wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
,
2051 (wxMINIMIZE_BOX
|wxMAXIMIZE_BOX
|wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|
2052 wxTAB_TRAVERSAL
|wxCLOSE_BOX
|wxNO_FULL_REPAINT_ON_RESIZE
) )
2058 // we need this in order to allow the about menu relocation, since ABOUT is
2059 // not the default id of the about menu
2060 wxApp::s_macAboutMenuItemId
= ID_ABOUT
;
2064 // This is here to really test the wxImageFileProperty.
2065 wxInitAllImageHandlers();
2068 // Register all editors (SpinCtrl etc.)
2069 m_pPropGridManager
->RegisterAdditionalEditors();
2071 // Register our sample custom editors
2072 m_pSampleMultiButtonEditor
=
2073 wxPropertyGrid::RegisterEditorClass(new wxSampleMultiButtonEditor());
2075 CreateGrid( // style
2076 wxPG_BOLD_MODIFIED
|
2077 wxPG_SPLITTER_AUTO_CENTER
|
2079 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2081 //wxPG_HIDE_CATEGORIES |
2082 //wxPG_LIMITED_EDITING |
2087 wxPG_EX_MODE_BUTTONS
2088 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2089 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2090 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2091 //| wxPG_EX_HELP_AS_TOOLTIPS
2096 wxMenu
*menuFile
= new wxMenu(wxEmptyString
, wxMENU_TEAROFF
);
2097 wxMenu
*menuTry
= new wxMenu
;
2098 wxMenu
*menuTools1
= new wxMenu
;
2099 wxMenu
*menuTools2
= new wxMenu
;
2100 wxMenu
*menuHelp
= new wxMenu
;
2102 menuHelp
->Append(ID_ABOUT
, wxT("&About..."), wxT("Show about dialog") );
2104 menuTools1
->Append(ID_APPENDPROP
, wxT("Append New Property") );
2105 menuTools1
->Append(ID_APPENDCAT
, wxT("Append New Category\tCtrl-S") );
2106 menuTools1
->AppendSeparator();
2107 menuTools1
->Append(ID_INSERTPROP
, wxT("Insert New Property\tCtrl-Q") );
2108 menuTools1
->Append(ID_INSERTCAT
, wxT("Insert New Category\tCtrl-W") );
2109 menuTools1
->AppendSeparator();
2110 menuTools1
->Append(ID_DELETE
, wxT("Delete Selected") );
2111 menuTools1
->Append(ID_DELETER
, wxT("Delete Random") );
2112 menuTools1
->Append(ID_DELETEALL
, wxT("Delete All") );
2113 menuTools1
->AppendSeparator();
2114 menuTools1
->Append(ID_SETCOLOUR
, wxT("Set Bg Colour") );
2115 menuTools1
->Append(ID_UNSPECIFY
, wxT("Set to Unspecified") );
2116 menuTools1
->AppendSeparator();
2117 m_itemEnable
= menuTools1
->Append(ID_ENABLE
, wxT("Enable"),
2118 wxT("Toggles item's enabled state.") );
2119 m_itemEnable
->Enable( FALSE
);
2120 menuTools1
->Append(ID_HIDE
, wxT("Hide"), wxT("Shows or hides a property") );
2122 menuTools2
->Append(ID_ITERATE1
, wxT("Iterate Over Properties") );
2123 menuTools2
->Append(ID_ITERATE2
, wxT("Iterate Over Visible Items") );
2124 menuTools2
->Append(ID_ITERATE3
, wxT("Reverse Iterate Over Properties") );
2125 menuTools2
->Append(ID_ITERATE4
, wxT("Iterate Over Categories") );
2126 menuTools2
->AppendSeparator();
2127 menuTools2
->Append(ID_SETPROPERTYVALUE
, wxT("Set Property Value") );
2128 menuTools2
->Append(ID_CLEARMODIF
, wxT("Clear Modified Status"), wxT("Clears wxPG_MODIFIED flag from all properties.") );
2129 menuTools2
->AppendSeparator();
2130 m_itemFreeze
= menuTools2
->AppendCheckItem(ID_FREEZE
, wxT("Freeze"),
2131 wxT("Disables painting, auto-sorting, etc.") );
2132 menuTools2
->AppendSeparator();
2133 menuTools2
->Append(ID_DUMPLIST
, wxT("Display Values as wxVariant List"), wxT("Tests GetAllValues method and wxVariant conversion.") );
2134 menuTools2
->AppendSeparator();
2135 menuTools2
->Append(ID_GETVALUES
, wxT("Get Property Values"), wxT("Stores all property values.") );
2136 menuTools2
->Append(ID_SETVALUES
, wxT("Set Property Values"), wxT("Reverts property values to those last stored.") );
2137 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).") );
2138 menuTools2
->AppendSeparator();
2139 menuTools2
->Append(ID_SAVESTATE
, wxT("Save Editable State") );
2140 menuTools2
->Append(ID_RESTORESTATE
, wxT("Restore Editable State") );
2141 menuTools2
->AppendSeparator();
2142 menuTools2
->Append(ID_ENABLECOMMONVALUES
, wxT("Enable Common Value"),
2143 wxT("Enable values that are common to all properties, for selected property."));
2144 menuTools2
->AppendSeparator();
2145 menuTools2
->Append(ID_COLLAPSE
, wxT("Collapse Selected") );
2146 menuTools2
->Append(ID_COLLAPSEALL
, wxT("Collapse All") );
2147 menuTools2
->AppendSeparator();
2148 menuTools2
->Append(ID_INSERTPAGE
, wxT("Add Page") );
2149 menuTools2
->Append(ID_REMOVEPAGE
, wxT("Remove Page") );
2150 menuTools2
->AppendSeparator();
2151 menuTools2
->Append(ID_FITCOLUMNS
, wxT("Fit Columns") );
2152 menuTools2
->AppendSeparator();
2153 menuTools2
->Append(ID_CHANGEFLAGSITEMS
, wxT("Change Children of FlagsProp") );
2154 menuTools2
->AppendSeparator();
2155 menuTools2
->Append(ID_TESTINSERTCHOICE
, wxT("Test InsertPropertyChoice") );
2156 menuTools2
->Append(ID_TESTDELETECHOICE
, wxT("Test DeletePropertyChoice") );
2157 menuTools2
->AppendSeparator();
2158 menuTools2
->Append(ID_SETSPINCTRLEDITOR
, wxT("Use SpinCtrl Editor") );
2159 menuTools2
->Append(ID_TESTREPLACE
, wxT("Test ReplaceProperty") );
2161 menuTry
->Append(ID_SELECTSTYLE
, wxT("Set Window Style"),
2162 wxT("Select window style flags used by the grid."));
2163 menuTry
->AppendSeparator();
2164 menuTry
->AppendRadioItem( ID_COLOURSCHEME1
, wxT("Standard Colour Scheme") );
2165 menuTry
->AppendRadioItem( ID_COLOURSCHEME2
, wxT("White Colour Scheme") );
2166 menuTry
->AppendRadioItem( ID_COLOURSCHEME3
, wxT(".NET Colour Scheme") );
2167 menuTry
->AppendRadioItem( ID_COLOURSCHEME4
, wxT("Cream Colour Scheme") );
2168 menuTry
->AppendSeparator();
2169 m_itemCatColours
= menuTry
->AppendCheckItem(ID_CATCOLOURS
, wxT("Category Specific Colours"),
2170 wxT("Switches between category-specific cell colours and default scheme (actually done using SetPropertyTextColour and SetPropertyBackgroundColour).") );
2171 menuTry
->AppendSeparator();
2172 menuTry
->AppendCheckItem(ID_STATICLAYOUT
, wxT("Static Layout"),
2173 wxT("Switches between user-modifiedable and static layouts.") );
2174 menuTry
->Append(ID_SETCOLUMNS
, wxT("Set Number of Columns") );
2175 menuTry
->AppendSeparator();
2176 menuTry
->Append(ID_TESTXRC
, wxT("Display XRC sample") );
2177 menuTry
->AppendSeparator();
2178 menuTry
->Append(ID_RUNTESTFULL
, wxT("Run Tests (full)") );
2179 menuTry
->Append(ID_RUNTESTPARTIAL
, wxT("Run Tests (fast)") );
2181 menuFile
->Append(ID_RUNMINIMAL
, wxT("Run Minimal Sample") );
2182 menuFile
->AppendSeparator();
2183 menuFile
->Append(ID_QUIT
, wxT("E&xit\tAlt-X"), wxT("Quit this program") );
2185 // Now append the freshly created menu to the menu bar...
2186 wxMenuBar
*menuBar
= new wxMenuBar();
2187 menuBar
->Append(menuFile
, wxT("&File") );
2188 menuBar
->Append(menuTry
, wxT("&Try These!") );
2189 menuBar
->Append(menuTools1
, wxT("&Basic") );
2190 menuBar
->Append(menuTools2
, wxT("&Advanced") );
2191 menuBar
->Append(menuHelp
, wxT("&Help") );
2193 // ... and attach this menu bar to the frame
2194 SetMenuBar(menuBar
);
2197 // create a status bar
2199 SetStatusText(wxEmptyString
);
2200 #endif // wxUSE_STATUSBAR
2208 (wxSystemSettings::GetMetric(wxSYS_SCREEN_X
)/10)*4,
2209 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
)/10)*8
2215 // Normally, wxPropertyGrid does not check whether item with identical
2216 // label already exists. However, since in this sample we use labels for
2217 // identifying properties, we have to be sure not to generate identical
2220 void GenerateUniquePropertyLabel( wxPropertyGridManager
* pg
, wxString
& baselabel
)
2225 if ( pg
->GetPropertyByLabel( baselabel
) )
2230 newlabel
.Printf(wxT("%s%i"),baselabel
.c_str(),count
);
2231 if ( !pg
->GetPropertyByLabel( newlabel
) ) break;
2237 baselabel
= newlabel
;
2241 // -----------------------------------------------------------------------
2243 void FormMain::OnInsertPropClick( wxCommandEvent
& WXUNUSED(event
) )
2247 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2249 wxMessageBox(wxT("No items to relate - first add some with Append."));
2253 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2256 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2259 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2261 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2263 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2264 id
->GetIndexInParent(),
2265 new wxStringProperty(propLabel
) );
2269 // -----------------------------------------------------------------------
2271 void FormMain::OnAppendPropClick( wxCommandEvent
& WXUNUSED(event
) )
2275 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2277 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2279 m_pPropGridManager
->Append( new wxStringProperty(propLabel
) );
2281 m_pPropGridManager
->Refresh();
2284 // -----------------------------------------------------------------------
2286 void FormMain::OnClearClick( wxCommandEvent
& WXUNUSED(event
) )
2288 m_pPropGridManager
->GetGrid()->Clear();
2291 // -----------------------------------------------------------------------
2293 void FormMain::OnAppendCatClick( wxCommandEvent
& WXUNUSED(event
) )
2297 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2299 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2301 m_pPropGridManager
->Append( new wxPropertyCategory (propLabel
) );
2303 m_pPropGridManager
->Refresh();
2307 // -----------------------------------------------------------------------
2309 void FormMain::OnInsertCatClick( wxCommandEvent
& WXUNUSED(event
) )
2313 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2315 wxMessageBox(wxT("No items to relate - first add some with Append."));
2319 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2322 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2326 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2328 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2330 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2331 id
->GetIndexInParent(),
2332 new wxPropertyCategory (propLabel
) );
2335 // -----------------------------------------------------------------------
2337 void FormMain::OnDelPropClick( wxCommandEvent
& WXUNUSED(event
) )
2339 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2342 wxMessageBox(wxT("First select a property."));
2346 m_pPropGridManager
->DeleteProperty( id
);
2349 // -----------------------------------------------------------------------
2351 void FormMain::OnDelPropRClick( wxCommandEvent
& WXUNUSED(event
) )
2353 // Delete random property
2354 wxPGProperty
* p
= m_pPropGridManager
->GetGrid()->GetRoot();
2358 if ( !p
->IsCategory() )
2360 m_pPropGridManager
->DeleteProperty( p
);
2364 if ( !p
->GetChildCount() )
2367 int n
= rand() % ((int)p
->GetChildCount());
2373 // -----------------------------------------------------------------------
2375 void FormMain::OnContextMenu( wxContextMenuEvent
& event
)
2377 wxLogDebug(wxT("FormMain::OnContextMenu(%i,%i)"),
2378 event
.GetPosition().x
,event
.GetPosition().y
);
2383 // -----------------------------------------------------------------------
2385 void FormMain::OnCloseClick( wxCommandEvent
& WXUNUSED(event
) )
2387 /*#ifdef __WXDEBUG__
2388 m_pPropGridManager->GetGrid()->DumpAllocatedChoiceSets();
2389 wxLogDebug(wxT("\\-> Don't worry, this is perfectly normal in this sample."));
2395 // -----------------------------------------------------------------------
2397 int IterateMessage( wxPGProperty
* prop
)
2401 s
.Printf( wxT("\"%s\" class = %s, valuetype = %s"), prop
->GetLabel().c_str(),
2402 prop
->GetClassInfo()->GetClassName(), prop
->GetValueType().c_str() );
2404 return wxMessageBox( s
, wxT("Iterating... (press CANCEL to end)"), wxOK
|wxCANCEL
);
2407 // -----------------------------------------------------------------------
2409 void FormMain::OnIterate1Click( wxCommandEvent
& WXUNUSED(event
) )
2411 wxPropertyGridIterator it
;
2413 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2418 wxPGProperty
* p
= *it
;
2419 int res
= IterateMessage( p
);
2420 if ( res
== wxCANCEL
) break;
2424 // -----------------------------------------------------------------------
2426 void FormMain::OnIterate2Click( wxCommandEvent
& WXUNUSED(event
) )
2428 wxPropertyGridIterator it
;
2430 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2431 GetIterator( wxPG_ITERATE_VISIBLE
);
2435 wxPGProperty
* p
= *it
;
2437 int res
= IterateMessage( p
);
2438 if ( res
== wxCANCEL
) break;
2442 // -----------------------------------------------------------------------
2444 void FormMain::OnIterate3Click( wxCommandEvent
& WXUNUSED(event
) )
2446 // iterate over items in reverse order
2447 wxPropertyGridIterator it
;
2449 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2450 GetIterator( wxPG_ITERATE_DEFAULT
, wxBOTTOM
);
2454 wxPGProperty
* p
= *it
;
2456 int res
= IterateMessage( p
);
2457 if ( res
== wxCANCEL
) break;
2461 // -----------------------------------------------------------------------
2463 void FormMain::OnIterate4Click( wxCommandEvent
& WXUNUSED(event
) )
2465 wxPropertyGridIterator it
;
2467 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2468 GetIterator( wxPG_ITERATE_CATEGORIES
);
2472 wxPGProperty
* p
= *it
;
2474 int res
= IterateMessage( p
);
2475 if ( res
== wxCANCEL
) break;
2479 // -----------------------------------------------------------------------
2481 void FormMain::OnFitColumnsClick( wxCommandEvent
& WXUNUSED(event
) )
2483 wxPropertyGridPage
* page
= m_pPropGridManager
->GetCurrentPage();
2485 // Remove auto-centering
2486 m_pPropGridManager
->SetWindowStyle( m_pPropGridManager
->GetWindowStyle() & ~wxPG_SPLITTER_AUTO_CENTER
);
2488 // Grow manager size just prior fit - otherwise
2489 // column information may be lost.
2490 wxSize oldGridSize
= m_pPropGridManager
->GetGrid()->GetClientSize();
2491 wxSize oldFullSize
= GetSize();
2492 SetSize(1000, oldFullSize
.y
);
2494 wxSize newSz
= page
->FitColumns();
2496 int dx
= oldFullSize
.x
- oldGridSize
.x
;
2497 int dy
= oldFullSize
.y
- oldGridSize
.y
;
2505 // -----------------------------------------------------------------------
2507 void FormMain::OnChangeFlagsPropItemsClick( wxCommandEvent
& WXUNUSED(event
) )
2509 wxPGProperty
* p
= m_pPropGridManager
->GetPropertyByName(wxT("Window Styles"));
2511 wxPGChoices newChoices
;
2513 newChoices
.Add(wxT("Fast"),0x1);
2514 newChoices
.Add(wxT("Powerful"),0x2);
2515 newChoices
.Add(wxT("Safe"),0x4);
2516 newChoices
.Add(wxT("Sleek"),0x8);
2518 p
->SetChoices(newChoices
);
2521 // -----------------------------------------------------------------------
2523 void FormMain::OnEnableDisable( wxCommandEvent
& )
2525 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2528 wxMessageBox(wxT("First select a property."));
2532 if ( m_pPropGridManager
->IsPropertyEnabled( id
) )
2534 m_pPropGridManager
->DisableProperty ( id
);
2535 m_itemEnable
->SetItemLabel( wxT("Enable") );
2539 m_pPropGridManager
->EnableProperty ( id
);
2540 m_itemEnable
->SetItemLabel( wxT("Disable") );
2544 // -----------------------------------------------------------------------
2546 void FormMain::OnHideShow( wxCommandEvent
& WXUNUSED(event
) )
2548 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2551 wxMessageBox(wxT("First select a property."));
2555 if ( m_pPropGridManager
->IsPropertyShown( id
) )
2557 m_pPropGridManager
->HideProperty( id
, true );
2558 m_itemEnable
->SetItemLabel( wxT("Show") );
2562 m_pPropGridManager
->HideProperty( id
, false );
2563 m_itemEnable
->SetItemLabel( wxT("Hide") );
2566 wxPropertyGridPage
* curPage
= m_pPropGridManager
->GetCurrentPage();
2568 // Check for bottomY precalculation validity
2569 unsigned int byPre
= curPage
->GetVirtualHeight();
2570 unsigned int byAct
= curPage
->GetActualVirtualHeight();
2572 if ( byPre
!= byAct
)
2574 wxLogDebug(wxT("VirtualHeight is %u, should be %u"), byPre
, byAct
);
2578 // -----------------------------------------------------------------------
2580 void FormMain::OnInsertPage( wxCommandEvent
& WXUNUSED(event
) )
2582 m_pPropGridManager
->AddPage(wxT("New Page"));
2585 // -----------------------------------------------------------------------
2587 void FormMain::OnRemovePage( wxCommandEvent
& WXUNUSED(event
) )
2589 m_pPropGridManager
->RemovePage(m_pPropGridManager
->GetSelectedPage());
2592 // -----------------------------------------------------------------------
2594 void FormMain::OnSaveState( wxCommandEvent
& WXUNUSED(event
) )
2596 m_savedState
= m_pPropGridManager
->SaveEditableState();
2597 wxLogDebug(wxT("Saved editable state string: \"%s\""), m_savedState
.c_str());
2600 // -----------------------------------------------------------------------
2602 void FormMain::OnRestoreState( wxCommandEvent
& WXUNUSED(event
) )
2604 m_pPropGridManager
->RestoreEditableState(m_savedState
);
2607 // -----------------------------------------------------------------------
2609 void FormMain::OnSetSpinCtrlEditorClick( wxCommandEvent
& WXUNUSED(event
) )
2612 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2614 m_pPropGridManager
->SetPropertyEditor( pgId
, wxPGEditor_SpinCtrl
);
2616 wxMessageBox(wxT("First select a property"));
2620 // -----------------------------------------------------------------------
2622 void FormMain::OnTestReplaceClick( wxCommandEvent
& WXUNUSED(event
) )
2624 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2627 wxPGChoices choices
;
2628 choices
.Add(wxT("Flag 0"),0x0001);
2629 choices
.Add(wxT("Flag 1"),0x0002);
2630 choices
.Add(wxT("Flag 2"),0x0004);
2631 choices
.Add(wxT("Flag 3"),0x0008);
2632 wxPGProperty
* newId
= m_pPropGridManager
->ReplaceProperty( pgId
,
2633 new wxFlagsProperty(wxT("ReplaceFlagsProperty"), wxPG_LABEL
, choices
, 0x0003) );
2634 m_pPropGridManager
->SetPropertyAttribute( newId
,
2635 wxPG_BOOL_USE_CHECKBOX
,
2640 wxMessageBox(wxT("First select a property"));
2643 // -----------------------------------------------------------------------
2645 void FormMain::OnClearModifyStatusClick( wxCommandEvent
& WXUNUSED(event
) )
2647 m_pPropGridManager
->ClearModifiedStatus();
2650 // -----------------------------------------------------------------------
2652 // Freeze check-box checked?
2653 void FormMain::OnFreezeClick( wxCommandEvent
& event
)
2655 if ( !m_pPropGridManager
) return;
2657 if ( event
.IsChecked() )
2659 if ( !m_pPropGridManager
->IsFrozen() )
2661 m_pPropGridManager
->Freeze();
2666 if ( m_pPropGridManager
->IsFrozen() )
2668 m_pPropGridManager
->Thaw();
2669 m_pPropGridManager
->Refresh();
2674 // -----------------------------------------------------------------------
2676 void FormMain::OnAbout(wxCommandEvent
& WXUNUSED(event
))
2679 msg
.Printf( wxT("wxPropertyGrid Sample")
2681 #if defined(wxUSE_UNICODE_UTF8) && wxUSE_UNICODE_UTF8
2695 wxT("Programmed by %s\n\n")
2696 wxT("Using %s\n\n"),
2697 wxT("Jaakko Salli"), wxVERSION_STRING
2700 wxMessageBox(msg
, _T("About"), wxOK
| wxICON_INFORMATION
, this);
2703 // -----------------------------------------------------------------------
2705 void FormMain::OnColourScheme( wxCommandEvent
& event
)
2707 int id
= event
.GetId();
2708 if ( id
== ID_COLOURSCHEME1
)
2710 m_pPropGridManager
->GetGrid()->ResetColours();
2712 else if ( id
== ID_COLOURSCHEME2
)
2715 wxColour
my_grey_1(212,208,200);
2716 wxColour
my_grey_3(113,111,100);
2717 m_pPropGridManager
->Freeze();
2718 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2719 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2720 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( *wxWHITE
);
2721 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2722 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
); //wxColour(160,160,160)
2723 m_pPropGridManager
->Thaw();
2725 else if ( id
== ID_COLOURSCHEME3
)
2728 wxColour
my_grey_1(212,208,200);
2729 wxColour
my_grey_2(236,233,216);
2730 m_pPropGridManager
->Freeze();
2731 m_pPropGridManager
->GetGrid()->SetMarginColour( my_grey_1
);
2732 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( my_grey_1
);
2733 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2734 m_pPropGridManager
->Thaw();
2736 else if ( id
== ID_COLOURSCHEME4
)
2740 wxColour
my_grey_1(212,208,200);
2741 wxColour
my_grey_2(241,239,226);
2742 wxColour
my_grey_3(113,111,100);
2743 m_pPropGridManager
->Freeze();
2744 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2745 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2746 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2747 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2748 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2749 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2750 m_pPropGridManager
->Thaw();
2754 // -----------------------------------------------------------------------
2756 void FormMain::OnCatColours( wxCommandEvent
& event
)
2758 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2759 m_pPropGridManager
->Freeze();
2761 if ( event
.IsChecked() )
2763 // Set custom colours.
2764 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,0), false );
2765 pg
->SetPropertyBackgroundColour( wxT("Appearance"), wxColour(255,255,183) );
2766 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,183) );
2767 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(0,255,0), false );
2768 pg
->SetPropertyBackgroundColour( wxT("PositionCategory"), wxColour(255,226,190) );
2769 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(255,0,190) );
2770 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(0,0,255), false );
2771 pg
->SetPropertyBackgroundColour( wxT("Environment"), wxColour(208,240,175) );
2772 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(255,255,255) );
2773 pg
->SetPropertyBackgroundColour( wxT("More Examples"), wxColour(172,237,255) );
2774 pg
->SetPropertyTextColour( wxT("More Examples"), wxColour(172,0,255) );
2778 // Revert to original.
2779 pg
->SetPropertyColoursToDefault( wxT("Appearance") );
2780 pg
->SetPropertyColoursToDefault( wxT("PositionCategory") );
2781 pg
->SetPropertyColoursToDefault( wxT("Environment") );
2782 pg
->SetPropertyColoursToDefault( wxT("More Examples") );
2784 m_pPropGridManager
->Thaw();
2785 m_pPropGridManager
->Refresh();
2788 // -----------------------------------------------------------------------
2790 #define ADD_FLAG(FLAG) \
2791 chs.Add(wxT(#FLAG)); \
2793 if ( (flags & FLAG) == FLAG ) sel.Add(ind); \
2796 void FormMain::OnSelectStyle( wxCommandEvent
& WXUNUSED(event
) )
2805 unsigned int ind
= 0;
2806 int flags
= m_pPropGridManager
->GetWindowStyle();
2807 ADD_FLAG(wxPG_HIDE_CATEGORIES
)
2808 ADD_FLAG(wxPG_AUTO_SORT
)
2809 ADD_FLAG(wxPG_BOLD_MODIFIED
)
2810 ADD_FLAG(wxPG_SPLITTER_AUTO_CENTER
)
2811 ADD_FLAG(wxPG_TOOLTIPS
)
2812 ADD_FLAG(wxPG_STATIC_SPLITTER
)
2813 ADD_FLAG(wxPG_HIDE_MARGIN
)
2814 ADD_FLAG(wxPG_LIMITED_EDITING
)
2815 ADD_FLAG(wxPG_TOOLBAR
)
2816 ADD_FLAG(wxPG_DESCRIPTION
)
2817 wxMultiChoiceDialog
dlg( this, wxT("Select window styles to use"),
2818 wxT("wxPropertyGrid Window Style"), chs
);
2819 dlg
.SetSelections(sel
);
2820 if ( dlg
.ShowModal() == wxID_CANCEL
)
2824 sel
= dlg
.GetSelections();
2825 for ( ind
= 0; ind
< sel
.size(); ind
++ )
2826 flags
|= vls
[sel
[ind
]];
2835 unsigned int ind
= 0;
2836 int flags
= m_pPropGridManager
->GetExtraStyle();
2837 ADD_FLAG(wxPG_EX_INIT_NOCAT
)
2838 ADD_FLAG(wxPG_EX_NO_FLAT_TOOLBAR
)
2839 ADD_FLAG(wxPG_EX_MODE_BUTTONS
)
2840 ADD_FLAG(wxPG_EX_HELP_AS_TOOLTIPS
)
2841 ADD_FLAG(wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
2842 ADD_FLAG(wxPG_EX_AUTO_UNSPECIFIED_VALUES
)
2843 ADD_FLAG(wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
)
2844 wxMultiChoiceDialog
dlg( this, wxT("Select extra window styles to use"),
2845 wxT("wxPropertyGrid Extra Style"), chs
);
2846 dlg
.SetSelections(sel
);
2847 if ( dlg
.ShowModal() == wxID_CANCEL
)
2851 sel
= dlg
.GetSelections();
2852 for ( ind
= 0; ind
< sel
.size(); ind
++ )
2853 flags
|= vls
[sel
[ind
]];
2858 CreateGrid( style
, extraStyle
);
2861 (wxSystemSettings::GetMetric(wxSYS_SCREEN_X
)/10)*4,
2862 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
)/10)*8
2867 // -----------------------------------------------------------------------
2869 void FormMain::OnSetColumns( wxCommandEvent
& WXUNUSED(event
) )
2871 long colCount
= ::wxGetNumberFromUser(wxT("Enter number of columns (2-20)."),wxT("Columns:"),
2872 wxT("Change Columns"),m_pPropGridManager
->GetColumnCount(),
2875 if ( colCount
>= 2 )
2877 m_pPropGridManager
->SetColumnCount(colCount
);
2881 // -----------------------------------------------------------------------
2883 void FormMain::OnSetPropertyValue( wxCommandEvent
& WXUNUSED(event
) )
2885 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2886 wxPGProperty
* selected
= pg
->GetSelection();
2890 wxString value
= ::wxGetTextFromUser( wxT("Enter new value:") );
2891 pg
->SetPropertyValue( selected
, value
);
2895 // -----------------------------------------------------------------------
2897 void FormMain::OnInsertChoice( wxCommandEvent
& WXUNUSED(event
) )
2899 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2901 wxPGProperty
* selected
= pg
->GetSelection();
2902 const wxPGChoices
& choices
= selected
->GetChoices();
2904 // Insert new choice to the center of list
2906 if ( choices
.IsOk() )
2908 int pos
= choices
.GetCount() / 2;
2909 selected
->InsertChoice(wxT("New Choice"), pos
);
2913 ::wxMessageBox(wxT("First select a property with some choices."));
2917 // -----------------------------------------------------------------------
2919 void FormMain::OnDeleteChoice( wxCommandEvent
& WXUNUSED(event
) )
2921 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2923 wxPGProperty
* selected
= pg
->GetSelection();
2924 const wxPGChoices
& choices
= selected
->GetChoices();
2926 // Deletes choice from the center of list
2928 if ( choices
.IsOk() )
2930 int pos
= choices
.GetCount() / 2;
2931 selected
->DeleteChoice(pos
);
2935 ::wxMessageBox(wxT("First select a property with some choices."));
2939 // -----------------------------------------------------------------------
2941 #include <wx/colordlg.h>
2943 void FormMain::OnMisc ( wxCommandEvent
& event
)
2945 int id
= event
.GetId();
2946 if ( id
== ID_STATICLAYOUT
)
2948 long wsf
= m_pPropGridManager
->GetWindowStyleFlag();
2949 if ( event
.IsChecked() ) m_pPropGridManager
->SetWindowStyleFlag( wsf
|wxPG_STATIC_LAYOUT
);
2950 else m_pPropGridManager
->SetWindowStyleFlag( wsf
&~(wxPG_STATIC_LAYOUT
) );
2952 else if ( id
== ID_COLLAPSEALL
)
2955 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2957 for ( it
= pg
->GetVIterator( wxPG_ITERATE_ALL
); !it
.AtEnd(); it
.Next() )
2958 it
.GetProperty()->SetExpanded( false );
2962 else if ( id
== ID_GETVALUES
)
2964 m_storedValues
= m_pPropGridManager
->GetGrid()->GetPropertyValues(wxT("Test"),
2965 m_pPropGridManager
->GetGrid()->GetRoot(),
2966 wxPG_KEEP_STRUCTURE
|wxPG_INC_ATTRIBUTES
);
2968 else if ( id
== ID_SETVALUES
)
2970 if ( m_storedValues
.GetType() == wxT("list") )
2972 m_pPropGridManager
->GetGrid()->SetPropertyValues(m_storedValues
);
2975 wxMessageBox(wxT("First use Get Property Values."));
2977 else if ( id
== ID_SETVALUES2
)
2981 list
.Append( wxVariant((long)1234,wxT("VariantLong")) );
2982 list
.Append( wxVariant((bool)TRUE
,wxT("VariantBool")) );
2983 list
.Append( wxVariant(wxT("Test Text"),wxT("VariantString")) );
2984 m_pPropGridManager
->GetGrid()->SetPropertyValues(list
);
2986 else if ( id
== ID_COLLAPSE
)
2988 // Collapses selected.
2989 wxPGProperty
* id
= m_pPropGridManager
->GetSelection();
2992 m_pPropGridManager
->Collapse(id
);
2995 else if ( id
== ID_RUNTESTFULL
)
2997 // Runs a regression test.
3000 else if ( id
== ID_RUNTESTPARTIAL
)
3002 // Runs a regression test.
3005 else if ( id
== ID_UNSPECIFY
)
3007 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
3010 m_pPropGridManager
->SetPropertyValueUnspecified(prop
);
3013 else if ( id
== ID_SETCOLOUR
)
3015 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
3019 data
.SetChooseFull(true);
3021 for ( i
= 0; i
< 16; i
++)
3023 wxColour
colour(i
*16, i
*16, i
*16);
3024 data
.SetCustomColour(i
, colour
);
3027 wxColourDialog
dialog(this, &data
);
3028 if ( dialog
.ShowModal() == wxID_OK
)
3030 wxColourData retData
= dialog
.GetColourData();
3031 m_pPropGridManager
->GetGrid()->SetPropertyBackgroundColour(prop
,retData
.GetColour());
3037 // -----------------------------------------------------------------------
3039 void FormMain::OnPopulateClick( wxCommandEvent
& event
)
3041 int id
= event
.GetId();
3042 m_propGrid
->Clear();
3043 m_propGrid
->Freeze();
3044 if ( id
== ID_POPULATE1
)
3046 PopulateWithStandardItems();
3048 else if ( id
== ID_POPULATE2
)
3050 PopulateWithLibraryConfig();
3055 // -----------------------------------------------------------------------
3057 void DisplayMinimalFrame(wxWindow
* parent
); // in minimal.cpp
3059 void FormMain::OnRunMinimalClick( wxCommandEvent
& WXUNUSED(event
) )
3061 DisplayMinimalFrame(this);
3064 // -----------------------------------------------------------------------
3066 FormMain::~FormMain()
3070 // -----------------------------------------------------------------------
3072 IMPLEMENT_APP(cxApplication
)
3074 bool cxApplication::OnInit()
3077 //Locale.Init(wxLANGUAGE_FINNISH);
3079 FormMain
* frame
= Form1
= new FormMain( wxT("wxPropertyGrid Sample"), wxPoint(0,0), wxSize(300,500) );
3083 // Parse command-line
3084 wxApp
& app
= wxGetApp();
3087 wxString s
= app
.argv
[1];
3088 if ( s
== wxT("--run-tests") )
3092 bool testResult
= frame
->RunTests(true);
3102 // -----------------------------------------------------------------------
3104 void FormMain::OnIdle( wxIdleEvent
& event
)
3107 // This code is useful for debugging focus problems
3108 static wxWindow* last_focus = (wxWindow*) NULL;
3110 wxWindow* cur_focus = ::wxWindow::FindFocus();
3112 if ( cur_focus != last_focus )
3114 const wxChar* class_name = wxT("<none>");
3116 class_name = cur_focus->GetClassInfo()->GetClassName();
3117 last_focus = cur_focus;
3118 wxLogDebug( wxT("FOCUSED: %s %X"),
3120 (unsigned int)cur_focus);
3127 // -----------------------------------------------------------------------