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 // -----------------------------------------------------------------------
73 // wxSampleMultiButtonEditor
74 // A sample editor class that has multiple buttons.
75 // -----------------------------------------------------------------------
77 class wxSampleMultiButtonEditor
: public wxPGTextCtrlEditor
79 DECLARE_DYNAMIC_CLASS(wxSampleMultiButtonEditor
)
81 wxSampleMultiButtonEditor() {}
82 virtual ~wxSampleMultiButtonEditor() {}
84 virtual wxPGWindowList
CreateControls( wxPropertyGrid
* propGrid
,
85 wxPGProperty
* property
,
87 const wxSize
& sz
) const;
88 virtual bool OnEvent( wxPropertyGrid
* propGrid
,
89 wxPGProperty
* property
,
91 wxEvent
& event
) const;
94 IMPLEMENT_DYNAMIC_CLASS(wxSampleMultiButtonEditor
, wxPGTextCtrlEditor
)
96 wxPGWindowList
wxSampleMultiButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
97 wxPGProperty
* property
,
99 const wxSize
& sz
) const
101 // Create and populate buttons-subwindow
102 wxPGMultiButton
* buttons
= new wxPGMultiButton( propGrid
, sz
);
104 // Add two regular buttons
105 buttons
->Add( "..." );
107 // Add a bitmap button
108 buttons
->Add( wxArtProvider::GetBitmap(wxART_FOLDER
) );
110 // Create the 'primary' editor control (textctrl in this case)
111 wxPGWindowList wndList
= wxPGTextCtrlEditor::CreateControls
112 ( propGrid
, property
, pos
,
113 buttons
->GetPrimarySize() );
115 // Finally, move buttons-subwindow to correct position and make sure
116 // returned wxPGWindowList contains our custom button list.
117 buttons
->Finalize(propGrid
, pos
);
119 wndList
.SetSecondary( buttons
);
123 bool wxSampleMultiButtonEditor::OnEvent( wxPropertyGrid
* propGrid
,
124 wxPGProperty
* property
,
126 wxEvent
& event
) const
128 if ( event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
130 wxPGMultiButton
* buttons
= (wxPGMultiButton
*) propGrid
->GetEditorControlSecondary();
132 if ( event
.GetId() == buttons
->GetButtonId(0) )
134 // Do something when first button is pressed
135 wxLogDebug("First button pressed");
138 if ( event
.GetId() == buttons
->GetButtonId(1) )
140 // Do something when second button is pressed
141 wxLogDebug("Second button pressed");
144 if ( event
.GetId() == buttons
->GetButtonId(2) )
146 // Do something when third button is pressed
147 wxLogDebug("Third button pressed");
151 return wxPGTextCtrlEditor::OnEvent(propGrid
, property
, ctrl
, event
);
154 // -----------------------------------------------------------------------
155 // Validator for wxValidator use sample
156 // -----------------------------------------------------------------------
160 // wxValidator for testing
162 class wxInvalidWordValidator
: public wxValidator
166 wxInvalidWordValidator( const wxString
& invalidWord
)
167 : wxValidator(), m_invalidWord(invalidWord
)
171 virtual wxObject
* Clone() const
173 return new wxInvalidWordValidator(m_invalidWord
);
176 virtual bool Validate(wxWindow
* WXUNUSED(parent
))
178 wxTextCtrl
* tc
= wxDynamicCast(GetWindow(), wxTextCtrl
);
179 wxCHECK_MSG(tc
, true, wxT("validator window must be wxTextCtrl"));
181 wxString val
= tc
->GetValue();
183 if ( val
.find(m_invalidWord
) == wxString::npos
)
186 ::wxMessageBox(wxString::Format(wxT("%s is not allowed word"),m_invalidWord
.c_str()),
187 wxT("Validation Failure"));
193 wxString m_invalidWord
;
196 #endif // wxUSE_VALIDATORS
198 // -----------------------------------------------------------------------
199 // AdvImageFile Property
200 // -----------------------------------------------------------------------
204 WX_DECLARE_OBJARRAY(wxMyImageInfo
, wxArrayMyImageInfo
);
210 wxBitmap
* m_pThumbnail1
; // smaller thumbnail
211 wxBitmap
* m_pThumbnail2
; // larger thumbnail
213 wxMyImageInfo ( const wxString
& str
)
216 m_pThumbnail1
= (wxBitmap
*) NULL
;
217 m_pThumbnail2
= (wxBitmap
*) NULL
;
219 virtual ~wxMyImageInfo()
222 delete m_pThumbnail1
;
224 delete m_pThumbnail2
;
230 #include <wx/arrimpl.cpp>
231 WX_DEFINE_OBJARRAY(wxArrayMyImageInfo
);
233 wxArrayMyImageInfo g_myImageArray
;
236 // Preferred thumbnail height.
237 #define PREF_THUMBNAIL_HEIGHT 64
240 wxPGChoices
wxAdvImageFileProperty::ms_choices
;
242 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxAdvImageFileProperty
,wxFileProperty
,
243 wxString
,const wxString
&,ChoiceAndButton
)
246 wxAdvImageFileProperty::wxAdvImageFileProperty( const wxString
& label
,
247 const wxString
& name
,
248 const wxString
& value
)
249 : wxFileProperty(label
,name
,value
)
251 m_wildcard
= wxPGGetDefaultImageWildcard();
255 m_pImage
= (wxImage
*) NULL
;
258 m_flags
&= ~(wxPG_PROP_SHOW_FULL_FILENAME
);
261 wxAdvImageFileProperty::~wxAdvImageFileProperty ()
267 m_pImage
= (wxImage
*) NULL
;
271 void wxAdvImageFileProperty::OnSetValue()
273 wxFileProperty::OnSetValue();
279 m_pImage
= (wxImage
*) NULL
;
282 wxString imagename
= GetValueAsString(0);
284 if ( imagename
.length() )
286 wxFileName filename
= GetFileName();
287 size_t prevCount
= g_myImageArray
.GetCount();
288 int index
= ms_choices
.Index(imagename
);
290 // If not in table, add now.
291 if ( index
== wxNOT_FOUND
)
293 ms_choices
.Add( imagename
);
294 g_myImageArray
.Add( new wxMyImageInfo( filename
.GetFullPath() ) );
296 index
= g_myImageArray
.GetCount() - 1;
299 // If no thumbnail ready, then need to load image.
300 if ( !g_myImageArray
[index
].m_pThumbnail2
)
302 // Load if file exists.
303 if ( filename
.FileExists() )
304 m_pImage
= new wxImage( filename
.GetFullPath() );
309 wxPropertyGrid
* pg
= GetGrid();
310 wxWindow
* control
= pg
->GetEditorControl();
312 if ( pg
->GetSelection() == this && control
)
314 wxString name
= GetValueAsString(0);
316 if ( g_myImageArray
.GetCount() != prevCount
)
318 wxASSERT( g_myImageArray
.GetCount() == (prevCount
+1) );
320 // Add to the control's array.
321 // (should be added to own array earlier)
324 GetEditorClass()->InsertItem(control
, name
, -1);
328 GetEditorClass()->UpdateControl(this, control
);
335 bool wxAdvImageFileProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
337 wxASSERT( number
>= 0 );
338 return StringToValue( variant
, ms_choices
.GetLabel(number
), wxPG_FULL_VALUE
);
341 bool wxAdvImageFileProperty::OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* primary
,
344 if ( propgrid
->IsMainButtonEvent(event
) )
346 return wxFileProperty::OnEvent(propgrid
,primary
,event
);
351 wxSize
wxAdvImageFileProperty::OnMeasureImage( int item
) const
354 return wxPG_DEFAULT_IMAGE_SIZE
;
356 return wxSize(PREF_THUMBNAIL_HEIGHT
,PREF_THUMBNAIL_HEIGHT
);
359 void wxAdvImageFileProperty::LoadThumbnails( size_t index
)
361 wxMyImageInfo
& mii
= g_myImageArray
[index
];
363 if ( !mii
.m_pThumbnail2
)
365 wxFileName filename
= GetFileName();
367 if ( !m_pImage
|| !m_pImage
->Ok() ||
368 filename
!= mii
.m_path
373 m_pImage
= new wxImage( mii
.m_path
);
376 if ( m_pImage
&& m_pImage
->Ok() )
378 int im_wid
= m_pImage
->GetWidth();
379 int im_hei
= m_pImage
->GetHeight();
380 if ( im_hei
> PREF_THUMBNAIL_HEIGHT
)
383 im_wid
= (PREF_THUMBNAIL_HEIGHT
*m_pImage
->GetWidth())/m_pImage
->GetHeight();
384 im_hei
= PREF_THUMBNAIL_HEIGHT
;
387 m_pImage
->Rescale( im_wid
, im_hei
);
389 mii
.m_pThumbnail2
= new wxBitmap( *m_pImage
);
391 wxSize cis
= GetParentState()->GetGrid()->GetImageSize();
392 m_pImage
->Rescale ( cis
.x
, cis
.y
);
394 mii
.m_pThumbnail1
= new wxBitmap( *m_pImage
);
401 m_pImage
= (wxImage
*) NULL
;
406 void wxAdvImageFileProperty::OnCustomPaint( wxDC
& dc
,
411 if ( pd
.m_choiceItem
>= 0 )
412 index
= pd
.m_choiceItem
;
414 //wxLogDebug(wxT("%i"),index);
418 LoadThumbnails(index
);
420 // Is this a measure item call?
424 //pd.m_drawnHeight = PREF_THUMBNAIL_HEIGHT;
425 wxBitmap
* pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
427 pd
.m_drawnHeight
= pBitmap
->GetHeight();
429 pd
.m_drawnHeight
= 16;
433 // Draw the thumbnail
437 if ( pd
.m_choiceItem
>= 0 )
438 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
440 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail1
;
444 dc
.DrawBitmap ( *pBitmap
, rect
.x
, rect
.y
, FALSE
);
446 // Tell the caller how wide we drew.
447 pd
.m_drawnWidth
= pBitmap
->GetWidth();
453 // No valid file - just draw a white box.
454 dc
.SetBrush ( *wxWHITE_BRUSH
);
455 dc
.DrawRectangle ( rect
);
459 // -----------------------------------------------------------------------
461 // -----------------------------------------------------------------------
463 // See propgridsample.h for wxVector3f class
465 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxVector3f
)
467 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxVectorProperty
,wxPGProperty
,
468 wxVector3f
,const wxVector3f
&,TextCtrl
)
471 wxVectorProperty::wxVectorProperty( const wxString
& label
,
472 const wxString
& name
,
473 const wxVector3f
& value
)
474 : wxPGProperty(label
,name
)
476 SetValue( WXVARIANT(value
) );
477 SetParentalType(wxPG_PROP_AGGREGATE
);
478 AddChild( new wxFloatProperty(wxT("X"),wxPG_LABEL
,value
.x
) );
479 AddChild( new wxFloatProperty(wxT("Y"),wxPG_LABEL
,value
.y
) );
480 AddChild( new wxFloatProperty(wxT("Z"),wxPG_LABEL
,value
.z
) );
483 wxVectorProperty::~wxVectorProperty() { }
485 void wxVectorProperty::RefreshChildren()
487 if ( !GetChildCount() ) return;
488 const wxVector3f
& vector
= wxVector3fRefFromVariant(m_value
);
489 Item(0)->SetValue( vector
.x
);
490 Item(1)->SetValue( vector
.y
);
491 Item(2)->SetValue( vector
.z
);
494 void wxVectorProperty::ChildChanged( wxVariant
& thisValue
, int childIndex
, wxVariant
& childValue
) const
498 switch ( childIndex
)
500 case 0: vector
.x
= childValue
.GetDouble(); break;
501 case 1: vector
.y
= childValue
.GetDouble(); break;
502 case 2: vector
.z
= childValue
.GetDouble(); break;
508 // -----------------------------------------------------------------------
509 // wxTriangleProperty
510 // -----------------------------------------------------------------------
512 // See propgridsample.h for wxTriangle class
514 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxTriangle
)
516 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxTriangleProperty
,wxPGProperty
,
517 wxTriangle
,const wxTriangle
&,TextCtrl
)
520 wxTriangleProperty::wxTriangleProperty( const wxString
& label
,
521 const wxString
& name
,
522 const wxTriangle
& value
)
523 : wxPGProperty(label
,name
)
525 SetValue( WXVARIANT(value
) );
526 SetParentalType(wxPG_PROP_AGGREGATE
);
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 // -----------------------------------------------------------------------
672 ID_SETSPINCTRLEDITOR
,
677 ID_ENABLECOMMONVALUES
,
684 // -----------------------------------------------------------------------
686 // -----------------------------------------------------------------------
688 BEGIN_EVENT_TABLE(FormMain
, wxFrame
)
689 EVT_IDLE(FormMain::OnIdle
)
690 EVT_MOVE(FormMain::OnMove
)
691 EVT_SIZE(FormMain::OnResize
)
693 // This occurs when a property is selected
694 EVT_PG_SELECTED( PGID
, FormMain::OnPropertyGridSelect
)
695 // This occurs when a property value changes
696 EVT_PG_CHANGED( PGID
, FormMain::OnPropertyGridChange
)
697 // This occurs just prior a property value is changed
698 EVT_PG_CHANGING( PGID
, FormMain::OnPropertyGridChanging
)
699 // This occurs when a mouse moves over another property
700 EVT_PG_HIGHLIGHTED( PGID
, FormMain::OnPropertyGridHighlight
)
701 // This occurs when mouse is right-clicked.
702 EVT_PG_RIGHT_CLICK( PGID
, FormMain::OnPropertyGridItemRightClick
)
703 // This occurs when mouse is double-clicked.
704 EVT_PG_DOUBLE_CLICK( PGID
, FormMain::OnPropertyGridItemDoubleClick
)
705 // This occurs when propgridmanager's page changes.
706 EVT_PG_PAGE_CHANGED( PGID
, FormMain::OnPropertyGridPageChange
)
707 // This occurs when property's editor button (if any) is clicked.
708 EVT_BUTTON( PGID
, FormMain::OnPropertyGridButtonClick
)
710 EVT_PG_ITEM_COLLAPSED( PGID
, FormMain::OnPropertyGridItemCollapse
)
711 EVT_PG_ITEM_EXPANDED( PGID
, FormMain::OnPropertyGridItemExpand
)
713 EVT_TEXT( PGID
, FormMain::OnPropertyGridTextUpdate
)
716 // Rest of the events are not property grid specific
717 EVT_KEY_DOWN( FormMain::OnPropertyGridKeyEvent
)
718 EVT_KEY_UP( FormMain::OnPropertyGridKeyEvent
)
720 EVT_MENU( ID_APPENDPROP
, FormMain::OnAppendPropClick
)
721 EVT_MENU( ID_APPENDCAT
, FormMain::OnAppendCatClick
)
722 EVT_MENU( ID_INSERTPROP
, FormMain::OnInsertPropClick
)
723 EVT_MENU( ID_INSERTCAT
, FormMain::OnInsertCatClick
)
724 EVT_MENU( ID_DELETE
, FormMain::OnDelPropClick
)
725 EVT_MENU( ID_DELETER
, FormMain::OnDelPropRClick
)
726 EVT_MENU( ID_UNSPECIFY
, FormMain::OnMisc
)
727 EVT_MENU( ID_DELETEALL
, FormMain::OnClearClick
)
728 EVT_MENU( ID_ENABLE
, FormMain::OnEnableDisable
)
729 EVT_MENU( ID_HIDE
, FormMain::OnHideShow
)
731 EVT_MENU( ID_ITERATE1
, FormMain::OnIterate1Click
)
732 EVT_MENU( ID_ITERATE2
, FormMain::OnIterate2Click
)
733 EVT_MENU( ID_ITERATE3
, FormMain::OnIterate3Click
)
734 EVT_MENU( ID_ITERATE4
, FormMain::OnIterate4Click
)
735 EVT_MENU( ID_SETBGCOLOUR
, FormMain::OnSetBackgroundColour
)
736 EVT_MENU( ID_SETBGCOLOURRECUR
, FormMain::OnSetBackgroundColour
)
737 EVT_MENU( ID_CLEARMODIF
, FormMain::OnClearModifyStatusClick
)
738 EVT_MENU( ID_FREEZE
, FormMain::OnFreezeClick
)
739 EVT_MENU( ID_DUMPLIST
, FormMain::OnDumpList
)
741 EVT_MENU( ID_COLOURSCHEME1
, FormMain::OnColourScheme
)
742 EVT_MENU( ID_COLOURSCHEME2
, FormMain::OnColourScheme
)
743 EVT_MENU( ID_COLOURSCHEME3
, FormMain::OnColourScheme
)
744 EVT_MENU( ID_COLOURSCHEME4
, FormMain::OnColourScheme
)
746 EVT_MENU( ID_ABOUT
, FormMain::OnAbout
)
747 EVT_MENU( ID_QUIT
, FormMain::OnCloseClick
)
749 EVT_MENU( ID_CATCOLOURS
, FormMain::OnCatColours
)
750 EVT_MENU( ID_SETCOLUMNS
, FormMain::OnSetColumns
)
751 EVT_MENU( ID_TESTXRC
, FormMain::OnTestXRC
)
752 EVT_MENU( ID_ENABLECOMMONVALUES
, FormMain::OnEnableCommonValues
)
753 EVT_MENU( ID_SELECTSTYLE
, FormMain::OnSelectStyle
)
755 EVT_MENU( ID_STATICLAYOUT
, FormMain::OnMisc
)
756 EVT_MENU( ID_COLLAPSE
, FormMain::OnMisc
)
757 EVT_MENU( ID_COLLAPSEALL
, FormMain::OnMisc
)
759 EVT_MENU( ID_POPULATE1
, FormMain::OnPopulateClick
)
760 EVT_MENU( ID_POPULATE2
, FormMain::OnPopulateClick
)
762 EVT_MENU( ID_GETVALUES
, FormMain::OnMisc
)
763 EVT_MENU( ID_SETVALUES
, FormMain::OnMisc
)
764 EVT_MENU( ID_SETVALUES2
, FormMain::OnMisc
)
766 EVT_MENU( ID_FITCOLUMNS
, FormMain::OnFitColumnsClick
)
768 EVT_MENU( ID_CHANGEFLAGSITEMS
, FormMain::OnChangeFlagsPropItemsClick
)
770 EVT_MENU( ID_RUNTESTFULL
, FormMain::OnMisc
)
771 EVT_MENU( ID_RUNTESTPARTIAL
, FormMain::OnMisc
)
773 EVT_MENU( ID_TESTINSERTCHOICE
, FormMain::OnInsertChoice
)
774 EVT_MENU( ID_TESTDELETECHOICE
, FormMain::OnDeleteChoice
)
776 EVT_MENU( ID_INSERTPAGE
, FormMain::OnInsertPage
)
777 EVT_MENU( ID_REMOVEPAGE
, FormMain::OnRemovePage
)
779 EVT_MENU( ID_SAVESTATE
, FormMain::OnSaveState
)
780 EVT_MENU( ID_RESTORESTATE
, FormMain::OnRestoreState
)
782 EVT_MENU( ID_SETSPINCTRLEDITOR
, FormMain::OnSetSpinCtrlEditorClick
)
783 EVT_MENU( ID_TESTREPLACE
, FormMain::OnTestReplaceClick
)
784 EVT_MENU( ID_SETPROPERTYVALUE
, FormMain::OnSetPropertyValue
)
786 EVT_MENU( ID_RUNMINIMAL
, FormMain::OnRunMinimalClick
)
788 EVT_CONTEXT_MENU( FormMain::OnContextMenu
)
791 // -----------------------------------------------------------------------
793 void FormMain::OnMove( wxMoveEvent
& event
)
795 if ( !m_pPropGridManager
)
797 // this check is here so the frame layout can be tested
798 // without creating propertygrid
803 // Update position properties
809 // Must check if properties exist (as they may be deleted).
811 // Using m_pPropGridManager, we can scan all pages automatically.
812 id
= m_pPropGridManager
->GetPropertyByName( wxT("X") );
814 m_pPropGridManager
->SetPropertyValue( id
, x
);
816 id
= m_pPropGridManager
->GetPropertyByName( wxT("Y") );
818 m_pPropGridManager
->SetPropertyValue( id
, y
);
820 id
= m_pPropGridManager
->GetPropertyByName( wxT("Position") );
822 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxPoint(x
,y
)) );
824 // Should always call event.Skip() in frame's MoveEvent handler
828 // -----------------------------------------------------------------------
830 void FormMain::OnResize( wxSizeEvent
& event
)
832 if ( !m_pPropGridManager
)
834 // this check is here so the frame layout can be tested
835 // without creating propertygrid
840 // Update size properties
847 // Must check if properties exist (as they may be deleted).
849 // Using m_pPropGridManager, we can scan all pages automatically.
850 p
= m_pPropGridManager
->GetPropertyByName( wxT("Width") );
851 if ( p
&& !p
->IsValueUnspecified() )
852 m_pPropGridManager
->SetPropertyValue( p
, w
);
854 p
= m_pPropGridManager
->GetPropertyByName( wxT("Height") );
855 if ( p
&& !p
->IsValueUnspecified() )
856 m_pPropGridManager
->SetPropertyValue( p
, h
);
858 id
= m_pPropGridManager
->GetPropertyByName ( wxT("Size") );
860 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxSize(w
,h
)) );
862 // Should always call event.Skip() in frame's SizeEvent handler
866 // -----------------------------------------------------------------------
868 void FormMain::OnPropertyGridChanging( wxPropertyGridEvent
& event
)
870 wxPGProperty
* p
= event
.GetProperty();
872 if ( p
->GetName() == wxT("Font") )
875 wxMessageBox(wxString::Format(wxT("'%s' is about to change (to variant of type '%s')\n\nAllow or deny?"),
876 p
->GetName().c_str(),event
.GetValue().GetType().c_str()),
877 wxT("Testing wxEVT_PG_CHANGING"), wxYES_NO
, m_pPropGridManager
);
881 wxASSERT(event
.CanVeto());
885 // Since we ask a question, it is better if we omit any validation
887 event
.SetValidationFailureBehavior(0);
893 // Note how we use three types of value getting in this method:
894 // A) event.GetPropertyValueAsXXX
895 // B) event.GetPropertValue, and then variant's GetXXX
896 // C) grid's GetPropertyValueAsXXX(id)
898 void FormMain::OnPropertyGridChange( wxPropertyGridEvent
& event
)
900 wxPGProperty
* property
= event
.GetProperty();
902 const wxString
& name
= property
->GetName();
903 wxVariant value
= property
->GetValue();
905 // Don't handle 'unspecified' values
906 if ( value
.IsNull() )
909 // Some settings are disabled outside Windows platform
910 if ( name
== wxT("X") )
911 SetSize ( m_pPropGridManager
->GetPropertyValueAsInt(property
), -1, -1, -1, wxSIZE_USE_EXISTING
);
912 else if ( name
== wxT("Y") )
913 // wxPGVariantToInt is safe long int value getter
914 SetSize ( -1, wxPGVariantToInt(value
), -1, -1, wxSIZE_USE_EXISTING
);
915 else if ( name
== wxT("Width") )
916 SetSize ( -1, -1, m_pPropGridManager
->GetPropertyValueAsInt(property
), -1, wxSIZE_USE_EXISTING
);
917 else if ( name
== wxT("Height") )
918 SetSize ( -1, -1, -1, wxPGVariantToInt(value
), wxSIZE_USE_EXISTING
);
919 else if ( name
== wxT("Label") )
921 SetTitle ( m_pPropGridManager
->GetPropertyValueAsString(property
) );
923 else if ( name
== wxT("Password") )
925 static int pwdMode
= 0;
927 //m_pPropGridManager->SetPropertyAttribute(property, wxPG_STRING_PASSWORD, (long)pwdMode);
933 if ( name
== wxT("Font") )
937 wxASSERT( font
.Ok() );
939 m_pPropGridManager
->SetFont( font
);
942 if ( name
== wxT("Margin Colour") )
944 wxColourPropertyValue cpv
;
946 m_pPropGridManager
->GetGrid()->SetMarginColour( cpv
.m_colour
);
948 else if ( name
== wxT("Cell Colour") )
950 wxColourPropertyValue cpv
;
952 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( cpv
.m_colour
);
954 else if ( name
== wxT("Line Colour") )
956 wxColourPropertyValue cpv
;
958 m_pPropGridManager
->GetGrid()->SetLineColour( cpv
.m_colour
);
960 else if ( name
== wxT("Cell Text Colour") )
962 wxColourPropertyValue cpv
;
964 m_pPropGridManager
->GetGrid()->SetCellTextColour( cpv
.m_colour
);
968 // -----------------------------------------------------------------------
970 void FormMain::OnPropertyGridSelect( wxPropertyGridEvent
& event
)
972 wxPGProperty
* property
= event
.GetProperty();
975 m_itemEnable
->Enable( TRUE
);
976 if ( property
->IsEnabled() )
977 m_itemEnable
->SetItemLabel( wxT("Disable") );
979 m_itemEnable
->SetItemLabel( wxT("Enable") );
983 m_itemEnable
->Enable( FALSE
);
987 wxPGProperty
* prop
= event
.GetProperty();
988 wxStatusBar
* sb
= GetStatusBar();
991 wxString
text(wxT("Selected: "));
992 text
+= m_pPropGridManager
->GetPropertyLabel( prop
);
993 sb
->SetStatusText ( text
);
998 // -----------------------------------------------------------------------
1000 void FormMain::OnPropertyGridPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1003 wxStatusBar
* sb
= GetStatusBar();
1004 wxString
text(wxT("Page Changed: "));
1005 text
+= m_pPropGridManager
->GetPageName(m_pPropGridManager
->GetSelectedPage());
1006 sb
->SetStatusText( text
);
1010 // -----------------------------------------------------------------------
1012 void FormMain::OnPropertyGridHighlight( wxPropertyGridEvent
& WXUNUSED(event
) )
1016 // -----------------------------------------------------------------------
1018 void FormMain::OnPropertyGridItemRightClick( wxPropertyGridEvent
& event
)
1021 wxPGProperty
* prop
= event
.GetProperty();
1022 wxStatusBar
* sb
= GetStatusBar();
1025 wxString
text(wxT("Right-clicked: "));
1026 text
+= prop
->GetLabel();
1027 text
+= wxT(", name=");
1028 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1029 sb
->SetStatusText( text
);
1033 sb
->SetStatusText( wxEmptyString
);
1038 // -----------------------------------------------------------------------
1040 void FormMain::OnPropertyGridItemDoubleClick( wxPropertyGridEvent
& event
)
1043 wxPGProperty
* prop
= event
.GetProperty();
1044 wxStatusBar
* sb
= GetStatusBar();
1047 wxString
text(wxT("Double-clicked: "));
1048 text
+= prop
->GetLabel();
1049 text
+= wxT(", name=");
1050 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1051 sb
->SetStatusText ( text
);
1055 sb
->SetStatusText ( wxEmptyString
);
1060 // -----------------------------------------------------------------------
1062 void FormMain::OnPropertyGridButtonClick ( wxCommandEvent
& )
1065 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1066 wxStatusBar
* sb
= GetStatusBar();
1069 wxString
text(wxT("Button clicked: "));
1070 text
+= m_pPropGridManager
->GetPropertyLabel(prop
);
1071 text
+= wxT(", name=");
1072 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1073 sb
->SetStatusText( text
);
1077 ::wxMessageBox(wxT("SHOULD NOT HAPPEN!!!"));
1082 // -----------------------------------------------------------------------
1084 void FormMain::OnPropertyGridItemCollapse( wxPropertyGridEvent
& )
1086 wxLogDebug(wxT("Item was Collapsed"));
1089 // -----------------------------------------------------------------------
1091 void FormMain::OnPropertyGridItemExpand( wxPropertyGridEvent
& )
1093 wxLogDebug(wxT("Item was Expanded"));
1096 // -----------------------------------------------------------------------
1098 // EVT_TEXT handling
1099 void FormMain::OnPropertyGridTextUpdate( wxCommandEvent
& event
)
1104 // -----------------------------------------------------------------------
1106 void FormMain::OnPropertyGridKeyEvent( wxKeyEvent
& WXUNUSED(event
) )
1108 // Occurs on wxGTK mostly, but not wxMSW.
1111 // -----------------------------------------------------------------------
1113 void FormMain::OnLabelTextChange( wxCommandEvent
& WXUNUSED(event
) )
1115 // Uncomment following to allow property label modify in real-time
1116 // wxPGProperty& p = m_pPropGridManager->GetGrid()->GetSelection();
1117 // if ( !p.IsOk() ) return;
1118 // m_pPropGridManager->SetPropertyLabel( p, m_tcPropLabel->DoGetValue() );
1121 // -----------------------------------------------------------------------
1123 static const wxChar
* _fs_windowstyle_labels
[] = {
1124 wxT("wxSIMPLE_BORDER"),
1125 wxT("wxDOUBLE_BORDER"),
1126 wxT("wxSUNKEN_BORDER"),
1127 wxT("wxRAISED_BORDER"),
1129 wxT("wxTRANSPARENT_WINDOW"),
1130 wxT("wxTAB_TRAVERSAL"),
1131 wxT("wxWANTS_CHARS"),
1132 #if wxNO_FULL_REPAINT_ON_RESIZE
1133 wxT("wxNO_FULL_REPAINT_ON_RESIZE"),
1136 wxT("wxALWAYS_SHOW_SB"),
1137 wxT("wxCLIP_CHILDREN"),
1138 #if wxFULL_REPAINT_ON_RESIZE
1139 wxT("wxFULL_REPAINT_ON_RESIZE"),
1141 (const wxChar
*) NULL
// terminator is always needed
1144 static const long _fs_windowstyle_values
[] = {
1150 wxTRANSPARENT_WINDOW
,
1153 #if wxNO_FULL_REPAINT_ON_RESIZE
1154 wxNO_FULL_REPAINT_ON_RESIZE
,
1159 #if wxFULL_REPAINT_ON_RESIZE
1160 wxFULL_REPAINT_ON_RESIZE
1164 static const wxChar
* _fs_framestyle_labels
[] = {
1169 wxT("wxSTAY_ON_TOP"),
1170 wxT("wxSYSTEM_MENU"),
1171 wxT("wxRESIZE_BORDER"),
1172 wxT("wxFRAME_TOOL_WINDOW"),
1173 wxT("wxFRAME_NO_TASKBAR"),
1174 wxT("wxFRAME_FLOAT_ON_PARENT"),
1175 wxT("wxFRAME_SHAPED"),
1176 (const wxChar
*) NULL
1179 static const long _fs_framestyle_values
[] = {
1187 wxFRAME_TOOL_WINDOW
,
1189 wxFRAME_FLOAT_ON_PARENT
,
1193 // -----------------------------------------------------------------------
1195 void FormMain::OnTestXRC(wxCommandEvent
& WXUNUSED(event
))
1197 wxMessageBox(wxT("Sorrt, not yet implemented"));
1200 void FormMain::OnEnableCommonValues(wxCommandEvent
& WXUNUSED(event
))
1202 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1204 prop
->EnableCommonValue();
1206 wxMessageBox(wxT("First select a property"));
1209 void FormMain::PopulateWithStandardItems ()
1211 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1212 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Standard Items"));
1214 // Append is ideal way to add items to wxPropertyGrid.
1215 pg
->Append( new wxPropertyCategory(wxT("Appearance"),wxPG_LABEL
) );
1217 pg
->Append( new wxStringProperty(wxT("Label"),wxPG_LABEL
,GetTitle()) );
1218 pg
->Append( new wxFontProperty(wxT("Font"),wxPG_LABEL
) );
1219 pg
->SetPropertyHelpString ( wxT("Font"), wxT("Editing this will change font used in the property grid.") );
1221 pg
->Append( new wxSystemColourProperty(wxT("Margin Colour"),wxPG_LABEL
,
1222 pg
->GetGrid()->GetMarginColour()) );
1224 pg
->Append( new wxSystemColourProperty(wxT("Cell Colour"),wxPG_LABEL
,
1225 pg
->GetGrid()->GetCellBackgroundColour()) );
1226 pg
->Append( new wxSystemColourProperty(wxT("Cell Text Colour"),wxPG_LABEL
,
1227 pg
->GetGrid()->GetCellTextColour()) );
1228 pg
->Append( new wxSystemColourProperty(wxT("Line Colour"),wxPG_LABEL
,
1229 pg
->GetGrid()->GetLineColour()) );
1230 pg
->Append( new wxFlagsProperty(wxT("Window Styles"),wxPG_LABEL
,
1231 m_combinedFlags
, GetWindowStyle()) );
1233 //pg->SetPropertyAttribute(wxT("Window Styles"),wxPG_BOOL_USE_CHECKBOX,true,wxPG_RECURSE);
1235 pg
->Append( new wxCursorProperty(wxT("Cursor"),wxPG_LABEL
) );
1237 pg
->Append( new wxPropertyCategory(wxT("Position"),wxT("PositionCategory")) );
1238 pg
->SetPropertyHelpString( wxT("PositionCategory"), wxT("Change in items in this category will cause respective changes in frame.") );
1240 // Let's demonstrate 'Units' attribute here
1242 // Note that we use many attribute constants instead of strings here
1243 // (for instance, wxPG_ATTR_MIN, instead of wxT("min")).
1244 // Using constant may reduce binary size.
1246 pg
->Append( new wxIntProperty(wxT("Height"),wxPG_LABEL
,480) );
1247 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MIN
, (long)10 );
1248 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MAX
, (long)2048 );
1249 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1251 // Set value to unspecified so that InlineHelp attribute will be demonstrated
1252 pg
->SetPropertyValueUnspecified(wxT("Height"));
1253 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_INLINE_HELP
, wxT("Enter new height for window") );
1254 pg
->SetPropertyHelpString(wxT("Height"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1256 pg
->Append( new wxIntProperty(wxT("Width"),wxPG_LABEL
,640) );
1257 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MIN
, (long)10 );
1258 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MAX
, (long)2048 );
1259 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1261 pg
->SetPropertyValueUnspecified(wxT("Width"));
1262 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_INLINE_HELP
, wxT("Enter new width for window") );
1263 pg
->SetPropertyHelpString(wxT("Width"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1265 pg
->Append( new wxIntProperty(wxT("X"),wxPG_LABEL
,10) );
1266 pg
->SetPropertyAttribute(wxT("X"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1267 pg
->SetPropertyHelpString(wxT("X"), wxT("This property uses \"Units\" attribute.") );
1269 pg
->Append( new wxIntProperty(wxT("Y"),wxPG_LABEL
,10) );
1270 pg
->SetPropertyAttribute(wxT("Y"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1271 pg
->SetPropertyHelpString(wxT("Y"), wxT("This property uses \"Units\" attribute.") );
1273 const wxChar
* disabledHelpString
= wxT("This property is simply disabled. Inorder to have label disabled as well, ")
1274 wxT("you need to set wxPG_EX_GREY_LABEL_WHEN_DISABLED using SetExtraStyle.");
1276 pg
->Append( new wxPropertyCategory(wxT("Environment"),wxPG_LABEL
) );
1277 pg
->Append( new wxStringProperty(wxT("Operating System"),wxPG_LABEL
,::wxGetOsDescription()) );
1279 pg
->Append( new wxStringProperty(wxT("User Id"),wxPG_LABEL
,::wxGetUserId()) );
1280 pg
->Append( new wxDirProperty(wxT("User Home"),wxPG_LABEL
,::wxGetUserHome()) );
1281 pg
->Append( new wxStringProperty(wxT("User Name"),wxPG_LABEL
,::wxGetUserName()) );
1283 // Disable some of them
1284 pg
->DisableProperty( wxT("Operating System") );
1285 pg
->DisableProperty( wxT("User Id") );
1286 pg
->DisableProperty( wxT("User Name") );
1288 pg
->SetPropertyHelpString( wxT("Operating System"), disabledHelpString
);
1289 pg
->SetPropertyHelpString( wxT("User Id"), disabledHelpString
);
1290 pg
->SetPropertyHelpString( wxT("User Name"), disabledHelpString
);
1292 pg
->Append( new wxPropertyCategory(wxT("More Examples"),wxPG_LABEL
) );
1294 pg
->Append( new wxFontDataProperty( wxT("FontDataProperty"), wxPG_LABEL
) );
1295 pg
->SetPropertyHelpString( wxT("FontDataProperty"),
1296 wxT("This demonstrates wxFontDataProperty class defined in this sample app. ")
1297 wxT("It is exactly like wxFontProperty from the library, but also has colour sub-property.")
1300 pg
->Append( new wxDirsProperty(wxT("DirsProperty"),wxPG_LABEL
) );
1301 pg
->SetPropertyHelpString( wxT("DirsProperty"),
1302 wxT("This demonstrates wxDirsProperty class defined in this sample app. ")
1303 wxT("It is built with WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR macro, ")
1304 wxT("with custom action (dir dialog popup) defined.")
1307 pg
->Append( new wxAdvImageFileProperty(wxT("AdvImageFileProperty"),wxPG_LABEL
) );
1308 pg
->SetPropertyHelpString( wxT("AdvImageFileProperty"),
1309 wxT("This demonstrates wxAdvImageFileProperty class defined in this sample app. ")
1310 wxT("Button can be used to add new images to the popup list.")
1313 wxArrayDouble arrdbl
;
1320 pg
->Append( new wxArrayDoubleProperty(wxT("ArrayDoubleProperty"),wxPG_LABEL
,arrdbl
) );
1321 //pg->SetPropertyAttribute(wxT("ArrayDoubleProperty"),wxPG_FLOAT_PRECISION,(long)2);
1322 pg
->SetPropertyHelpString( wxT("ArrayDoubleProperty"),
1323 wxT("This demonstrates wxArrayDoubleProperty class defined in this sample app. ")
1324 wxT("It is an example of a custom list editor property.")
1327 pg
->Append( new wxLongStringProperty(wxT("Information"),wxPG_LABEL
,
1328 wxT("Editing properties will have immediate effect on this window, ")
1329 wxT("and vice versa (atleast in most cases, that is).")
1331 pg
->SetPropertyHelpString( wxT("Information"),
1332 wxT("This property is read-only.") );
1334 pg
->SetPropertyReadOnly( wxT("Information"), true );
1337 // Set test information for cells in columns 3 and 4
1338 // (reserve column 2 for displaying units)
1339 wxPropertyGridIterator it
;
1340 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_FOLDER
);
1342 for ( it
= pg
->GetGrid()->GetIterator();
1346 wxPGProperty
* p
= *it
;
1347 if ( p
->IsCategory() )
1350 pg
->SetPropertyCell( p
, 3, wxT("Cell 3"), bmp
);
1351 pg
->SetPropertyCell( p
, 4, wxT("Cell 4"), wxNullBitmap
, *wxWHITE
, *wxBLACK
);
1355 // -----------------------------------------------------------------------
1357 void FormMain::PopulateWithExamples ()
1359 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1360 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Examples"));
1364 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1365 //pg->SetPropertyHelpString ( wxT("Examples"), wxT("This category has example of (almost) every built-in property class.") );
1368 pg
->Append( new wxIntProperty ( wxT("SpinCtrl"), wxPG_LABEL
, 0 ) );
1370 pg
->SetPropertyEditor( wxT("SpinCtrl"), wxPGEditor_SpinCtrl
);
1371 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MIN
, (long)-10 ); // Use constants instead of string
1372 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MAX
, (long)16384 ); // for reduced binary size.
1373 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Step"), (long)2 );
1374 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("MotionSpin"), true );
1375 //pg->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Wrap"), true );
1377 pg
->SetPropertyHelpString( wxT("SpinCtrl"),
1378 wxT("This is regular wxIntProperty, which editor has been ")
1379 wxT("changed to wxPGEditor_SpinCtrl. Note however that ")
1380 wxT("static wxPropertyGrid::RegisterAdditionalEditors() ")
1381 wxT("needs to be called prior to using it."));
1385 // Add bool property
1386 pg
->Append( new wxBoolProperty( wxT("BoolProperty"), wxPG_LABEL
, false ) );
1388 // Add bool property with check box
1389 pg
->Append( new wxBoolProperty( wxT("BoolProperty with CheckBox"), wxPG_LABEL
, false ) );
1390 pg
->SetPropertyAttribute( wxT("BoolProperty with CheckBox"),
1391 wxPG_BOOL_USE_CHECKBOX
,
1394 pg
->SetPropertyHelpString( wxT("BoolProperty with CheckBox"),
1395 wxT("Property attribute wxPG_BOOL_USE_CHECKBOX has been set to true.") );
1397 pid
= pg
->Append( new wxFloatProperty( wxT("FloatProperty"),
1401 // A string property that can be edited in a separate editor dialog.
1402 pg
->Append( new wxLongStringProperty( wxT("LongStringProperty"), wxT("LongStringProp"),
1403 wxT("This is much longer string than the first one. Edit it by clicking the button.") ) );
1405 // A property that edits a wxArrayString.
1406 wxArrayString example_array
;
1407 example_array
.Add( wxT("String 1"));
1408 example_array
.Add( wxT("String 2"));
1409 example_array
.Add( wxT("String 3"));
1410 pg
->Append( new wxArrayStringProperty( wxT("ArrayStringProperty"), wxPG_LABEL
,
1413 // Test adding same category multiple times ( should not actually create a new one )
1414 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1416 // A file selector property. Note that argument between name
1417 // and initial value is wildcard (format same as in wxFileDialog).
1418 prop
= new wxFileProperty( wxT("FileProperty"), wxT("TextFile") );
1421 prop
->SetAttribute(wxPG_FILE_WILDCARD
,wxT("Text Files (*.txt)|*.txt"));
1422 prop
->SetAttribute(wxPG_FILE_DIALOG_TITLE
,wxT("Custom File Dialog Title"));
1423 prop
->SetAttribute(wxPG_FILE_SHOW_FULL_PATH
,false);
1426 prop
->SetAttribute(wxPG_FILE_SHOW_RELATIVE_PATH
,wxT("C:\\Windows"));
1427 pg
->SetPropertyValue(prop
,wxT("C:\\Windows\\System32\\msvcrt71.dll"));
1431 // An image file property. Arguments are just like for FileProperty, but
1432 // wildcard is missing (it is autogenerated from supported image formats).
1433 // If you really need to override it, create property separately, and call
1434 // its SetWildcard method.
1435 pg
->Append( new wxImageFileProperty( wxT("ImageFile"), wxPG_LABEL
) );
1438 pid
= pg
->Append( new wxColourProperty(wxT("ColourProperty"),wxPG_LABEL
,*wxRED
) );
1439 //pg->SetPropertyAttribute(pid,wxPG_COLOUR_ALLOW_CUSTOM,false);
1440 pg
->SetPropertyEditor( wxT("ColourProperty"), wxPGEditor_ComboBox
);
1441 pg
->GetProperty(wxT("ColourProperty"))->SetFlag(wxPG_PROP_AUTO_UNSPECIFIED
);
1442 pg
->SetPropertyHelpString( wxT("ColourProperty"),
1443 wxT("wxPropertyGrid::SetPropertyEditor method has been used to change ")
1444 wxT("editor of this property to wxPGEditor_ComboBox)"));
1447 // This demonstrates using alternative editor for colour property
1448 // to trigger colour dialog directly from button.
1449 pg
->Append( new wxColourProperty(wxT("ColourProperty2"),wxPG_LABEL
,*wxGREEN
) );
1452 // wxEnumProperty does not store strings or even list of strings
1453 // ( so that's why they are static in function ).
1454 static const wxChar
* enum_prop_labels
[] = { wxT("One Item"),
1455 wxT("Another Item"), wxT("One More"), wxT("This Is Last"), NULL
};
1457 // this value array would be optional if values matched string indexes
1458 static long enum_prop_values
[] = { 40, 80, 120, 160 };
1460 // note that the initial value (the last argument) is the actual value,
1461 // not index or anything like that. Thus, our value selects "Another Item".
1463 // 0 before value is number of items. If it is 0, like in our example,
1464 // number of items is calculated, and this requires that the string pointer
1465 // array is terminated with NULL.
1466 pg
->Append( new wxEnumProperty(wxT("EnumProperty"),wxPG_LABEL
,
1467 enum_prop_labels
, enum_prop_values
, 80 ) );
1471 // use basic table from our previous example
1472 // can also set/add wxArrayStrings and wxArrayInts directly.
1473 soc
.Set( enum_prop_labels
, enum_prop_values
);
1476 soc
.Add( wxT("Look, it continues"), 200 );
1477 soc
.Add( wxT("Even More"), 240 );
1478 soc
.Add( wxT("And More"), 280 );
1479 soc
.Add( wxT("True End of the List"), 320 );
1481 // Test custom colours ([] operator of wxPGChoices returns
1482 // references to wxPGChoiceEntry).
1483 soc
[1].SetFgCol(*wxRED
);
1484 soc
[1].SetBgCol(*wxLIGHT_GREY
);
1485 soc
[2].SetFgCol(*wxGREEN
);
1486 soc
[2].SetBgCol(*wxLIGHT_GREY
);
1487 soc
[3].SetFgCol(*wxBLUE
);
1488 soc
[3].SetBgCol(*wxLIGHT_GREY
);
1489 soc
[4].SetBitmap(wxArtProvider::GetBitmap(wxART_FOLDER
));
1491 pg
->Append( new wxEnumProperty(wxT("EnumProperty 2"),
1495 pg
->GetProperty(wxT("EnumProperty 2"))->AddChoice(wxT("Testing Extra"), 360);
1497 // Add a second time to test that the caching works. Also use
1498 // short form of constructor list + SetChoices.
1499 prop
= new wxEnumProperty(wxT("EnumProperty 3"), wxPG_LABEL
);
1501 prop
->SetChoices(soc
);
1502 prop
->SetValue(360);
1503 pg
->SetPropertyHelpString(prop
,
1504 wxT("Should have same choices as EnumProperty 2"));
1506 pg
->Append( new wxEnumProperty(wxT("EnumProperty 4"),wxPG_LABEL
,
1508 pg
->SetPropertyHelpString(wxT("EnumProperty 4"),
1509 wxT("Should have same choices as EnumProperty 2"));
1511 pg
->Append( new wxEnumProperty(wxT("EnumProperty 5"),wxPG_LABEL
,
1513 pg
->GetProperty(wxT("EnumProperty 5"))->SetChoicesExclusive();
1514 pg
->GetProperty(wxT("EnumProperty 5"))->AddChoice(wxT("5th only"), 360);
1516 pg
->SetPropertyHelpString(wxT("EnumProperty 5"),
1517 wxT("Should have one extra item when compared to EnumProperty 4"));
1519 // Password property example.
1520 pg
->Append( new wxStringProperty(wxT("Password"),wxPG_LABEL
, wxT("password")) );
1521 pg
->SetPropertyAttribute( wxT("Password"), wxPG_STRING_PASSWORD
, true );
1522 pg
->SetPropertyHelpString( wxT("Password"),
1523 wxT("Has attribute wxPG_STRING_PASSWORD set to true") );
1525 // String editor with dir selector button. Uses wxEmptyString as name, which
1526 // is allowed (naturally, in this case property cannot be accessed by name).
1527 pg
->Append( new wxDirProperty( wxT("DirProperty"), wxPG_LABEL
, ::wxGetUserHome()) );
1528 pg
->SetPropertyAttribute( wxT("DirProperty"),
1529 wxPG_DIR_DIALOG_MESSAGE
,
1530 wxT("This is a custom dir dialog message") );
1532 // Add string property - first arg is label, second name, and third initial value
1533 pg
->Append( new wxStringProperty ( wxT("StringProperty"), wxPG_LABEL
) );
1534 pg
->SetPropertyMaxLength( wxT("StringProperty"), 6 );
1535 pg
->SetPropertyHelpString( wxT("StringProperty"),
1536 wxT("Max length of this text has been limited to 6, using wxPropertyGrid::SetPropertyMaxLength.") );
1538 // Set value after limiting so that it will be applied
1539 pg
->SetPropertyValue( wxT("StringProperty"), wxT("some text") );
1542 // this value array would be optional if values matched string indexes
1543 //long flags_prop_values[] = { wxICONIZE, wxCAPTION, wxMINIMIZE_BOX, wxMAXIMIZE_BOX };
1545 //pg->Append( wxFlagsProperty(wxT("Example of FlagsProperty"),wxT("FlagsProp"),
1546 // flags_prop_labels, flags_prop_values, 0, GetWindowStyle() ) );
1549 // Multi choice dialog.
1550 wxArrayString tchoices
;
1551 tchoices
.Add(wxT("Cabbage"));
1552 tchoices
.Add(wxT("Carrot"));
1553 tchoices
.Add(wxT("Onion"));
1554 tchoices
.Add(wxT("Potato"));
1555 tchoices
.Add(wxT("Strawberry"));
1557 wxArrayString tchoicesValues
;
1558 tchoicesValues
.Add(wxT("Carrot"));
1559 tchoicesValues
.Add(wxT("Potato"));
1561 pg
->Append( new wxEnumProperty(wxT("EnumProperty X"),wxPG_LABEL
, tchoices
) );
1563 pg
->Append( new wxMultiChoiceProperty( wxT("MultiChoiceProperty"), wxPG_LABEL
,
1564 tchoices
, tchoicesValues
) );
1565 pg
->SetPropertyAttribute( wxT("MultiChoiceProperty"), wxT("UserStringMode"), true );
1567 pg
->Append( new wxSizeProperty( wxT("SizeProperty"), wxT("Size"), GetSize() ) );
1568 pg
->Append( new wxPointProperty( wxT("PointProperty"), wxT("Position"), GetPosition() ) );
1571 pg
->Append( new wxUIntProperty( wxT("UIntProperty"), wxPG_LABEL
, wxULongLong(wxULL(0xFEEEFEEEFEEE))));
1572 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX
, wxPG_PREFIX_NONE
);
1573 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE
, wxPG_BASE_HEX
);
1574 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX, wxPG_PREFIX_NONE );
1575 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE, wxPG_BASE_OCT );
1578 // wxEditEnumProperty
1580 eech
.Add(wxT("Choice 1"));
1581 eech
.Add(wxT("Choice 2"));
1582 eech
.Add(wxT("Choice 3"));
1583 pg
->Append( new wxEditEnumProperty(wxT("EditEnumProperty"), wxPG_LABEL
, eech
) ); // , wxT("Choice 2")
1586 //wxTextValidator validator1(wxFILTER_NUMERIC,&v_);
1587 //pg->SetPropertyValidator( wxT("EditEnumProperty"), validator1 );
1591 // wxDateTimeProperty
1592 pg
->Append( new wxDateProperty(wxT("DateProperty"), wxPG_LABEL
, wxDateTime::Now() ) );
1594 #if wxUSE_DATEPICKCTRL
1595 pg
->SetPropertyAttribute( wxT("DateProperty"), wxPG_DATE_PICKER_STYLE
,
1596 (long)(wxDP_DROPDOWN
| wxDP_SHOWCENTURY
) );
1598 pg
->SetPropertyHelpString( wxT("DateProperty"),
1599 wxT("Attribute wxPG_DATE_PICKER_STYLE has been set to (long)(wxDP_DROPDOWN | wxDP_SHOWCENTURY).")
1600 wxT("Also note that wxPG_ALLOW_WXADV needs to be defined inorder to use wxDatePickerCtrl.") );
1606 // Add Triangle properties as both wxTriangleProperty and
1607 // a generic parent property (using wxStringProperty).
1609 wxPGProperty
* topId
= pg
->Append( new wxStringProperty(wxT("3D Object"), wxPG_LABEL
, wxT("<composed>")) );
1611 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 1"), wxT("Triangle 1"), wxT("<composed>")) );
1612 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1613 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1614 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1616 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 2"), wxT("Triangle 2") ) );
1618 pg
->SetPropertyHelpString( wxT("3D Object"),
1619 wxT("3D Object is wxStringProperty with value \"<composed>\". Two of its children are similar wxStringProperties with ")
1620 wxT("three wxVectorProperty children, and other two are custom wxTriangleProperties.") );
1622 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 3"), wxT("Triangle 3"), wxT("<composed>")) );
1623 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1624 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1625 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1627 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 4"), wxT("Triangle 4") ) );
1630 // This snippet is a doc sample test
1632 wxPGProperty
* carProp
= pg
->Append(new wxStringProperty(wxT("Car"),
1634 wxT("<composed>")));
1636 pg
->AppendIn(carProp
, new wxStringProperty(wxT("Model"),
1638 wxT("Lamborghini Diablo SV")));
1640 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Engine Size (cc)"),
1644 wxPGProperty
* speedsProp
= pg
->AppendIn(carProp
,
1645 new wxStringProperty(wxT("Speeds"),
1647 wxT("<composed>")));
1649 pg
->AppendIn( speedsProp
, new wxIntProperty(wxT("Max. Speed (mph)"),
1651 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("0-100 mph (sec)"),
1653 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("1/4 mile (sec)"),
1656 // This is how child property can be referred to by name
1657 pg
->SetPropertyValue( wxT("Car.Speeds.Max. Speed (mph)"), 300 );
1659 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Price ($)"),
1663 pg
->AppendIn(carProp
, new wxBoolProperty(wxT("Convertible"),
1667 // Displayed value of "Car" property is now very close to this:
1668 // "Lamborghini Diablo SV; 5707 [300; 3.9; 8.6] 300000"
1671 // Test wxSampleMultiButtonEditor
1672 pg
->Append( new wxLongStringProperty(wxT("MultipleButtons"), wxPG_LABEL
) );
1673 pg
->SetPropertyEditor(wxT("MultipleButtons"), m_pSampleMultiButtonEditor
);
1675 // Test SingleChoiceProperty
1676 pg
->Append( new SingleChoiceProperty(wxT("SingleChoiceProperty")) );
1680 // Test adding variable height bitmaps in wxPGChoices
1683 bc
.Add(wxT("Wee"), wxBitmap(16, 16));
1684 bc
.Add(wxT("Not so wee"), wxBitmap(32, 32));
1685 bc
.Add(wxT("Friggin' huge"), wxBitmap(64, 64));
1687 pg
->Append( new wxEnumProperty(wxT("Variable Height Bitmaps"),
1693 // Test how non-editable composite strings appear
1694 pid
= new wxStringProperty(wxT("wxWidgets Traits"), wxPG_LABEL
, wxT("<composed>"));
1695 pg
->SetPropertyReadOnly(pid
);
1698 // For testing purposes, combine two methods of adding children
1701 // AddChild() requires that we call this
1702 pid
->SetParentalType(wxPG_PROP_MISC_PARENT
);
1704 pid
->AddChild( new wxStringProperty(wxT("Latest Release"), wxPG_LABEL
, wxT("2.8.8")));
1705 pid
->AddChild( new wxBoolProperty(wxT("Win API"), wxPG_LABEL
, true) );
1709 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1710 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Cocoa"), wxPG_LABEL
, true) );
1711 pg
->AppendIn(pid
, new wxBoolProperty(wxT("BeOS"), wxPG_LABEL
, false) );
1712 pg
->AppendIn(pid
, new wxStringProperty(wxT("SVN Trunk Version"), wxPG_LABEL
, wxT("2.9.0")) );
1713 pg
->AppendIn(pid
, new wxBoolProperty(wxT("GTK+"), wxPG_LABEL
, true) );
1714 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Sky OS"), wxPG_LABEL
, false) );
1715 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1717 AddTestProperties(pg
);
1720 // -----------------------------------------------------------------------
1722 void FormMain::PopulateWithLibraryConfig ()
1724 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1725 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("wxWidgets Library Config"));
1729 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_REPORT_VIEW
);
1733 #define ADD_WX_LIB_CONF_GROUP(A) \
1734 cat = pg->AppendIn( pid, new wxPropertyCategory(A) ); \
1735 pg->SetPropertyCell( cat, 0, wxPG_LABEL, bmp );
1737 #define ADD_WX_LIB_CONF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)((A>0)?true:false)));
1738 #define ADD_WX_LIB_CONF_NODEF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)false) ); \
1739 pg->DisableProperty(wxT(#A));
1741 pid
= pg
->Append( new wxPropertyCategory( wxT("wxWidgets Library Configuration") ) );
1742 pg
->SetPropertyCell( pid
, 0, wxPG_LABEL
, bmp
);
1744 ADD_WX_LIB_CONF_GROUP(wxT("Global Settings"))
1745 ADD_WX_LIB_CONF( wxUSE_GUI
)
1747 ADD_WX_LIB_CONF_GROUP(wxT("Compatibility Settings"))
1748 #if defined(WXWIN_COMPATIBILITY_2_2)
1749 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_2
)
1751 #if defined(WXWIN_COMPATIBILITY_2_4)
1752 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_4
)
1754 #if defined(WXWIN_COMPATIBILITY_2_6)
1755 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_6
)
1757 #if defined(WXWIN_COMPATIBILITY_2_8)
1758 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_8
)
1760 #ifdef wxFONT_SIZE_COMPATIBILITY
1761 ADD_WX_LIB_CONF( wxFONT_SIZE_COMPATIBILITY
)
1763 ADD_WX_LIB_CONF_NODEF ( wxFONT_SIZE_COMPATIBILITY
)
1765 #ifdef wxDIALOG_UNIT_COMPATIBILITY
1766 ADD_WX_LIB_CONF( wxDIALOG_UNIT_COMPATIBILITY
)
1768 ADD_WX_LIB_CONF_NODEF ( wxDIALOG_UNIT_COMPATIBILITY
)
1771 ADD_WX_LIB_CONF_GROUP(wxT("Debugging Settings"))
1772 ADD_WX_LIB_CONF( wxUSE_DEBUG_CONTEXT
)
1773 ADD_WX_LIB_CONF( wxUSE_MEMORY_TRACING
)
1774 ADD_WX_LIB_CONF( wxUSE_GLOBAL_MEMORY_OPERATORS
)
1775 ADD_WX_LIB_CONF( wxUSE_DEBUG_NEW_ALWAYS
)
1776 ADD_WX_LIB_CONF( wxUSE_ON_FATAL_EXCEPTION
)
1778 ADD_WX_LIB_CONF_GROUP(wxT("Unicode Support"))
1779 ADD_WX_LIB_CONF( wxUSE_UNICODE
)
1780 ADD_WX_LIB_CONF( wxUSE_UNICODE_MSLU
)
1781 ADD_WX_LIB_CONF( wxUSE_WCHAR_T
)
1783 ADD_WX_LIB_CONF_GROUP(wxT("Global Features"))
1784 ADD_WX_LIB_CONF( wxUSE_EXCEPTIONS
)
1785 ADD_WX_LIB_CONF( wxUSE_EXTENDED_RTTI
)
1786 ADD_WX_LIB_CONF( wxUSE_STL
)
1787 ADD_WX_LIB_CONF( wxUSE_LOG
)
1788 ADD_WX_LIB_CONF( wxUSE_LOGWINDOW
)
1789 ADD_WX_LIB_CONF( wxUSE_LOGGUI
)
1790 ADD_WX_LIB_CONF( wxUSE_LOG_DIALOG
)
1791 ADD_WX_LIB_CONF( wxUSE_CMDLINE_PARSER
)
1792 ADD_WX_LIB_CONF( wxUSE_THREADS
)
1793 ADD_WX_LIB_CONF( wxUSE_STREAMS
)
1794 ADD_WX_LIB_CONF( wxUSE_STD_IOSTREAM
)
1796 ADD_WX_LIB_CONF_GROUP(wxT("Non-GUI Features"))
1797 ADD_WX_LIB_CONF( wxUSE_LONGLONG
)
1798 ADD_WX_LIB_CONF( wxUSE_FILE
)
1799 ADD_WX_LIB_CONF( wxUSE_FFILE
)
1800 ADD_WX_LIB_CONF( wxUSE_FSVOLUME
)
1801 ADD_WX_LIB_CONF( wxUSE_TEXTBUFFER
)
1802 ADD_WX_LIB_CONF( wxUSE_TEXTFILE
)
1803 ADD_WX_LIB_CONF( wxUSE_INTL
)
1804 ADD_WX_LIB_CONF( wxUSE_DATETIME
)
1805 ADD_WX_LIB_CONF( wxUSE_TIMER
)
1806 ADD_WX_LIB_CONF( wxUSE_STOPWATCH
)
1807 ADD_WX_LIB_CONF( wxUSE_CONFIG
)
1808 #ifdef wxUSE_CONFIG_NATIVE
1809 ADD_WX_LIB_CONF( wxUSE_CONFIG_NATIVE
)
1811 ADD_WX_LIB_CONF_NODEF ( wxUSE_CONFIG_NATIVE
)
1813 ADD_WX_LIB_CONF( wxUSE_DIALUP_MANAGER
)
1814 ADD_WX_LIB_CONF( wxUSE_DYNLIB_CLASS
)
1815 ADD_WX_LIB_CONF( wxUSE_DYNAMIC_LOADER
)
1816 ADD_WX_LIB_CONF( wxUSE_SOCKETS
)
1817 ADD_WX_LIB_CONF( wxUSE_FILESYSTEM
)
1818 ADD_WX_LIB_CONF( wxUSE_FS_ZIP
)
1819 ADD_WX_LIB_CONF( wxUSE_FS_INET
)
1820 ADD_WX_LIB_CONF( wxUSE_ZIPSTREAM
)
1821 ADD_WX_LIB_CONF( wxUSE_ZLIB
)
1822 ADD_WX_LIB_CONF( wxUSE_APPLE_IEEE
)
1823 ADD_WX_LIB_CONF( wxUSE_JOYSTICK
)
1824 ADD_WX_LIB_CONF( wxUSE_FONTMAP
)
1825 ADD_WX_LIB_CONF( wxUSE_MIMETYPE
)
1826 ADD_WX_LIB_CONF( wxUSE_PROTOCOL
)
1827 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FILE
)
1828 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FTP
)
1829 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_HTTP
)
1830 ADD_WX_LIB_CONF( wxUSE_URL
)
1831 #ifdef wxUSE_URL_NATIVE
1832 ADD_WX_LIB_CONF( wxUSE_URL_NATIVE
)
1834 ADD_WX_LIB_CONF_NODEF ( wxUSE_URL_NATIVE
)
1836 ADD_WX_LIB_CONF( wxUSE_REGEX
)
1837 ADD_WX_LIB_CONF( wxUSE_SYSTEM_OPTIONS
)
1838 ADD_WX_LIB_CONF( wxUSE_SOUND
)
1840 ADD_WX_LIB_CONF( wxUSE_XRC
)
1842 ADD_WX_LIB_CONF_NODEF ( wxUSE_XRC
)
1844 ADD_WX_LIB_CONF( wxUSE_XML
)
1846 // Set them to use check box.
1847 pg
->SetPropertyAttribute(pid
,wxPG_BOOL_USE_CHECKBOX
,true,wxPG_RECURSE
);
1852 // Handle events of the third page here.
1853 class wxMyPropertyGridPage
: public wxPropertyGridPage
1857 // Return false here to indicate unhandled events should be
1858 // propagated to manager's parent, as normal.
1859 virtual bool IsHandlingAllEvents() const { return false; }
1863 virtual wxPGProperty
* DoInsert( wxPGProperty
* parent
,
1865 wxPGProperty
* property
)
1867 return wxPropertyGridPage::DoInsert(parent
,index
,property
);
1870 void OnPropertySelect( wxPropertyGridEvent
& event
);
1871 void OnPropertyChanging( wxPropertyGridEvent
& event
);
1872 void OnPropertyChange( wxPropertyGridEvent
& event
);
1873 void OnPageChange( wxPropertyGridEvent
& event
);
1876 DECLARE_EVENT_TABLE()
1880 BEGIN_EVENT_TABLE(wxMyPropertyGridPage
, wxPropertyGridPage
)
1881 EVT_PG_SELECTED( wxID_ANY
, wxMyPropertyGridPage::OnPropertySelect
)
1882 EVT_PG_CHANGING( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChanging
)
1883 EVT_PG_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChange
)
1884 EVT_PG_PAGE_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPageChange
)
1888 void wxMyPropertyGridPage::OnPropertySelect( wxPropertyGridEvent
& WXUNUSED(event
) )
1890 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertySelect()"));
1893 void wxMyPropertyGridPage::OnPropertyChange( wxPropertyGridEvent
& event
)
1895 wxPGProperty
* p
= event
.GetProperty();
1896 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChange('%s', to value '%s')"),
1897 p
->GetName().c_str(),
1898 p
->GetDisplayedString().c_str());
1901 void wxMyPropertyGridPage::OnPropertyChanging( wxPropertyGridEvent
& event
)
1903 wxPGProperty
* p
= event
.GetProperty();
1904 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChanging('%s', to value '%s')"),
1905 p
->GetName().c_str(),
1906 event
.GetValue().GetString().c_str());
1909 void wxMyPropertyGridPage::OnPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1911 wxLogDebug(wxT("wxMyPropertyGridPage::OnPageChange()"));
1915 class wxPGKeyHandler
: public wxEvtHandler
1919 void OnKeyEvent( wxKeyEvent
& event
)
1921 wxMessageBox(wxString::Format(wxT("%i"),event
.GetKeyCode()));
1925 DECLARE_EVENT_TABLE()
1928 BEGIN_EVENT_TABLE(wxPGKeyHandler
,wxEvtHandler
)
1929 EVT_KEY_DOWN( wxPGKeyHandler::OnKeyEvent
)
1933 // -----------------------------------------------------------------------
1935 void FormMain::InitPanel()
1940 wxWindow
* panel
= new wxPanel(this, wxID_ANY
,
1941 wxPoint(0, 0), wxSize(400, 400),
1946 wxBoxSizer
* topSizer
= new wxBoxSizer ( wxVERTICAL
);
1948 m_topSizer
= topSizer
;
1951 void FormMain::FinalizePanel( bool wasCreated
)
1953 // Button for tab traversal testing
1954 m_topSizer
->Add( new wxButton(m_panel
, wxID_ANY
,
1955 wxS("Should be able to move here with Tab")),
1958 m_panel
->SetSizer( m_topSizer
);
1959 m_topSizer
->SetSizeHints( m_panel
);
1961 wxBoxSizer
* panelSizer
= new wxBoxSizer( wxHORIZONTAL
);
1962 panelSizer
->Add( m_panel
, 1, wxEXPAND
|wxFIXED_MINSIZE
);
1964 SetSizer( panelSizer
);
1965 panelSizer
->SetSizeHints( this );
1968 FinalizeFramePosition();
1971 void FormMain::PopulateGrid()
1973 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1974 pgman
->AddPage(wxT("Standard Items"));
1976 PopulateWithStandardItems();
1978 pgman
->AddPage(wxT("wxWidgets Library Config"));
1980 PopulateWithLibraryConfig();
1982 wxPropertyGridPage
* myPage
= new wxMyPropertyGridPage();
1983 myPage
->Append( new wxIntProperty ( wxT("IntProperty"), wxPG_LABEL
, 12345678 ) );
1985 // Use wxMyPropertyGridPage (see above) to test the
1986 // custom wxPropertyGridPage feature.
1987 pgman
->AddPage(wxT("Examples"),wxNullBitmap
,myPage
);
1989 PopulateWithExamples();
1992 void FormMain::CreateGrid( int style
, int extraStyle
)
1995 // This function (re)creates the property grid in our sample
1999 style
= // default style
2000 wxPG_BOLD_MODIFIED
|
2001 wxPG_SPLITTER_AUTO_CENTER
|
2003 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2005 //wxPG_HIDE_CATEGORIES |
2006 //wxPG_LIMITED_EDITING |
2010 if ( extraStyle
== -1 )
2011 // default extra style
2012 extraStyle
= wxPG_EX_MODE_BUTTONS
;
2013 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2014 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2015 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2016 //| wxPG_EX_HELP_AS_TOOLTIPS
2018 bool wasCreated
= m_panel
? false : true;
2023 // This shows how to combine two static choice descriptors
2024 m_combinedFlags
.Add( _fs_windowstyle_labels
, _fs_windowstyle_values
);
2025 m_combinedFlags
.Add( _fs_framestyle_labels
, _fs_framestyle_values
);
2027 wxPropertyGridManager
* pgman
= m_pPropGridManager
=
2028 new wxPropertyGridManager(m_panel
,
2029 // Don't change this into wxID_ANY in the sample, or the
2030 // event handling will obviously be broken.
2036 m_propGrid
= pgman
->GetGrid();
2038 pgman
->SetExtraStyle(extraStyle
);
2040 m_pPropGridManager
->SetValidationFailureBehavior( wxPG_VFB_BEEP
| wxPG_VFB_MARK_CELL
| wxPG_VFB_SHOW_MESSAGE
);
2042 m_pPropGridManager
->GetGrid()->SetVerticalSpacing( 2 );
2046 // Change some attributes in all properties
2047 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING,true);
2048 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_CHECKBOX,true);
2050 //m_pPropGridManager->SetSplitterLeft(true);
2051 //m_pPropGridManager->SetSplitterPosition(137);
2054 // This would setup event handling without event table entries
2055 Connect(m_pPropGridManager->GetId(), wxEVT_PG_SELECTED,
2056 wxPropertyGridEventHandler(FormMain::OnPropertyGridSelect) );
2057 Connect(m_pPropGridManager->GetId(), wxEVT_PG_CHANGED,
2058 wxPropertyGridEventHandler(FormMain::OnPropertyGridChange) );
2061 m_topSizer
->Add( m_pPropGridManager
, 1, wxEXPAND
);
2063 FinalizePanel(wasCreated
);
2066 // -----------------------------------------------------------------------
2068 FormMain::FormMain(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
) :
2069 wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
,
2070 (wxMINIMIZE_BOX
|wxMAXIMIZE_BOX
|wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|
2071 wxTAB_TRAVERSAL
|wxCLOSE_BOX
|wxNO_FULL_REPAINT_ON_RESIZE
) )
2077 // we need this in order to allow the about menu relocation, since ABOUT is
2078 // not the default id of the about menu
2079 wxApp::s_macAboutMenuItemId
= ID_ABOUT
;
2083 // This is here to really test the wxImageFileProperty.
2084 wxInitAllImageHandlers();
2087 // Register all editors (SpinCtrl etc.)
2088 m_pPropGridManager
->RegisterAdditionalEditors();
2090 // Register our sample custom editors
2091 m_pSampleMultiButtonEditor
=
2092 wxPropertyGrid::RegisterEditorClass(new wxSampleMultiButtonEditor());
2094 CreateGrid( // style
2095 wxPG_BOLD_MODIFIED
|
2096 wxPG_SPLITTER_AUTO_CENTER
|
2098 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2100 //wxPG_HIDE_CATEGORIES |
2101 //wxPG_LIMITED_EDITING |
2105 wxPG_EX_MODE_BUTTONS
2106 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2107 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2108 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2109 //| wxPG_EX_HELP_AS_TOOLTIPS
2114 wxMenu
*menuFile
= new wxMenu(wxEmptyString
, wxMENU_TEAROFF
);
2115 wxMenu
*menuTry
= new wxMenu
;
2116 wxMenu
*menuTools1
= new wxMenu
;
2117 wxMenu
*menuTools2
= new wxMenu
;
2118 wxMenu
*menuHelp
= new wxMenu
;
2120 menuHelp
->Append(ID_ABOUT
, wxT("&About..."), wxT("Show about dialog") );
2122 menuTools1
->Append(ID_APPENDPROP
, wxT("Append New Property") );
2123 menuTools1
->Append(ID_APPENDCAT
, wxT("Append New Category\tCtrl-S") );
2124 menuTools1
->AppendSeparator();
2125 menuTools1
->Append(ID_INSERTPROP
, wxT("Insert New Property\tCtrl-Q") );
2126 menuTools1
->Append(ID_INSERTCAT
, wxT("Insert New Category\tCtrl-W") );
2127 menuTools1
->AppendSeparator();
2128 menuTools1
->Append(ID_DELETE
, wxT("Delete Selected") );
2129 menuTools1
->Append(ID_DELETER
, wxT("Delete Random") );
2130 menuTools1
->Append(ID_DELETEALL
, wxT("Delete All") );
2131 menuTools1
->AppendSeparator();
2132 menuTools1
->Append(ID_SETBGCOLOUR
, wxT("Set Bg Colour") );
2133 menuTools1
->Append(ID_SETBGCOLOURRECUR
, wxT("Set Bg Colour (Recursively)") );
2134 menuTools1
->Append(ID_UNSPECIFY
, wxT("Set to Unspecified") );
2135 menuTools1
->AppendSeparator();
2136 m_itemEnable
= menuTools1
->Append(ID_ENABLE
, wxT("Enable"),
2137 wxT("Toggles item's enabled state.") );
2138 m_itemEnable
->Enable( FALSE
);
2139 menuTools1
->Append(ID_HIDE
, wxT("Hide"), wxT("Shows or hides a property") );
2141 menuTools2
->Append(ID_ITERATE1
, wxT("Iterate Over Properties") );
2142 menuTools2
->Append(ID_ITERATE2
, wxT("Iterate Over Visible Items") );
2143 menuTools2
->Append(ID_ITERATE3
, wxT("Reverse Iterate Over Properties") );
2144 menuTools2
->Append(ID_ITERATE4
, wxT("Iterate Over Categories") );
2145 menuTools2
->AppendSeparator();
2146 menuTools2
->Append(ID_SETPROPERTYVALUE
, wxT("Set Property Value") );
2147 menuTools2
->Append(ID_CLEARMODIF
, wxT("Clear Modified Status"), wxT("Clears wxPG_MODIFIED flag from all properties.") );
2148 menuTools2
->AppendSeparator();
2149 m_itemFreeze
= menuTools2
->AppendCheckItem(ID_FREEZE
, wxT("Freeze"),
2150 wxT("Disables painting, auto-sorting, etc.") );
2151 menuTools2
->AppendSeparator();
2152 menuTools2
->Append(ID_DUMPLIST
, wxT("Display Values as wxVariant List"), wxT("Tests GetAllValues method and wxVariant conversion.") );
2153 menuTools2
->AppendSeparator();
2154 menuTools2
->Append(ID_GETVALUES
, wxT("Get Property Values"), wxT("Stores all property values.") );
2155 menuTools2
->Append(ID_SETVALUES
, wxT("Set Property Values"), wxT("Reverts property values to those last stored.") );
2156 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).") );
2157 menuTools2
->AppendSeparator();
2158 menuTools2
->Append(ID_SAVESTATE
, wxT("Save Editable State") );
2159 menuTools2
->Append(ID_RESTORESTATE
, wxT("Restore Editable State") );
2160 menuTools2
->AppendSeparator();
2161 menuTools2
->Append(ID_ENABLECOMMONVALUES
, wxT("Enable Common Value"),
2162 wxT("Enable values that are common to all properties, for selected property."));
2163 menuTools2
->AppendSeparator();
2164 menuTools2
->Append(ID_COLLAPSE
, wxT("Collapse Selected") );
2165 menuTools2
->Append(ID_COLLAPSEALL
, wxT("Collapse All") );
2166 menuTools2
->AppendSeparator();
2167 menuTools2
->Append(ID_INSERTPAGE
, wxT("Add Page") );
2168 menuTools2
->Append(ID_REMOVEPAGE
, wxT("Remove Page") );
2169 menuTools2
->AppendSeparator();
2170 menuTools2
->Append(ID_FITCOLUMNS
, wxT("Fit Columns") );
2171 menuTools2
->AppendSeparator();
2172 menuTools2
->Append(ID_CHANGEFLAGSITEMS
, wxT("Change Children of FlagsProp") );
2173 menuTools2
->AppendSeparator();
2174 menuTools2
->Append(ID_TESTINSERTCHOICE
, wxT("Test InsertPropertyChoice") );
2175 menuTools2
->Append(ID_TESTDELETECHOICE
, wxT("Test DeletePropertyChoice") );
2176 menuTools2
->AppendSeparator();
2177 menuTools2
->Append(ID_SETSPINCTRLEDITOR
, wxT("Use SpinCtrl Editor") );
2178 menuTools2
->Append(ID_TESTREPLACE
, wxT("Test ReplaceProperty") );
2180 menuTry
->Append(ID_SELECTSTYLE
, wxT("Set Window Style"),
2181 wxT("Select window style flags used by the grid."));
2182 menuTry
->AppendSeparator();
2183 menuTry
->AppendRadioItem( ID_COLOURSCHEME1
, wxT("Standard Colour Scheme") );
2184 menuTry
->AppendRadioItem( ID_COLOURSCHEME2
, wxT("White Colour Scheme") );
2185 menuTry
->AppendRadioItem( ID_COLOURSCHEME3
, wxT(".NET Colour Scheme") );
2186 menuTry
->AppendRadioItem( ID_COLOURSCHEME4
, wxT("Cream Colour Scheme") );
2187 menuTry
->AppendSeparator();
2188 m_itemCatColours
= menuTry
->AppendCheckItem(ID_CATCOLOURS
, wxT("Category Specific Colours"),
2189 wxT("Switches between category-specific cell colours and default scheme (actually done using SetPropertyTextColour and SetPropertyBackgroundColour).") );
2190 menuTry
->AppendSeparator();
2191 menuTry
->AppendCheckItem(ID_STATICLAYOUT
, wxT("Static Layout"),
2192 wxT("Switches between user-modifiedable and static layouts.") );
2193 menuTry
->Append(ID_SETCOLUMNS
, wxT("Set Number of Columns") );
2194 menuTry
->AppendSeparator();
2195 menuTry
->Append(ID_TESTXRC
, wxT("Display XRC sample") );
2196 menuTry
->AppendSeparator();
2197 menuTry
->Append(ID_RUNTESTFULL
, wxT("Run Tests (full)") );
2198 menuTry
->Append(ID_RUNTESTPARTIAL
, wxT("Run Tests (fast)") );
2200 menuFile
->Append(ID_RUNMINIMAL
, wxT("Run Minimal Sample") );
2201 menuFile
->AppendSeparator();
2202 menuFile
->Append(ID_QUIT
, wxT("E&xit\tAlt-X"), wxT("Quit this program") );
2204 // Now append the freshly created menu to the menu bar...
2205 wxMenuBar
*menuBar
= new wxMenuBar();
2206 menuBar
->Append(menuFile
, wxT("&File") );
2207 menuBar
->Append(menuTry
, wxT("&Try These!") );
2208 menuBar
->Append(menuTools1
, wxT("&Basic") );
2209 menuBar
->Append(menuTools2
, wxT("&Advanced") );
2210 menuBar
->Append(menuHelp
, wxT("&Help") );
2212 // ... and attach this menu bar to the frame
2213 SetMenuBar(menuBar
);
2216 // create a status bar
2218 SetStatusText(wxEmptyString
);
2219 #endif // wxUSE_STATUSBAR
2221 FinalizeFramePosition();
2224 void FormMain::FinalizeFramePosition()
2226 wxSize
frameSize((wxSystemSettings::GetMetric(wxSYS_SCREEN_X
)/10)*4,
2227 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
)/10)*8);
2229 if ( frameSize
.x
> 500 )
2238 // Normally, wxPropertyGrid does not check whether item with identical
2239 // label already exists. However, since in this sample we use labels for
2240 // identifying properties, we have to be sure not to generate identical
2243 void GenerateUniquePropertyLabel( wxPropertyGridManager
* pg
, wxString
& baselabel
)
2248 if ( pg
->GetPropertyByLabel( baselabel
) )
2253 newlabel
.Printf(wxT("%s%i"),baselabel
.c_str(),count
);
2254 if ( !pg
->GetPropertyByLabel( newlabel
) ) break;
2260 baselabel
= newlabel
;
2264 // -----------------------------------------------------------------------
2266 void FormMain::OnInsertPropClick( wxCommandEvent
& WXUNUSED(event
) )
2270 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2272 wxMessageBox(wxT("No items to relate - first add some with Append."));
2276 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2279 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2282 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2284 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2286 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2287 id
->GetIndexInParent(),
2288 new wxStringProperty(propLabel
) );
2292 // -----------------------------------------------------------------------
2294 void FormMain::OnAppendPropClick( wxCommandEvent
& WXUNUSED(event
) )
2298 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2300 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2302 m_pPropGridManager
->Append( new wxStringProperty(propLabel
) );
2304 m_pPropGridManager
->Refresh();
2307 // -----------------------------------------------------------------------
2309 void FormMain::OnClearClick( wxCommandEvent
& WXUNUSED(event
) )
2311 m_pPropGridManager
->GetGrid()->Clear();
2314 // -----------------------------------------------------------------------
2316 void FormMain::OnAppendCatClick( wxCommandEvent
& WXUNUSED(event
) )
2320 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2322 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2324 m_pPropGridManager
->Append( new wxPropertyCategory (propLabel
) );
2326 m_pPropGridManager
->Refresh();
2330 // -----------------------------------------------------------------------
2332 void FormMain::OnInsertCatClick( wxCommandEvent
& WXUNUSED(event
) )
2336 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2338 wxMessageBox(wxT("No items to relate - first add some with Append."));
2342 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2345 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2349 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2351 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2353 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2354 id
->GetIndexInParent(),
2355 new wxPropertyCategory (propLabel
) );
2358 // -----------------------------------------------------------------------
2360 void FormMain::OnDelPropClick( wxCommandEvent
& WXUNUSED(event
) )
2362 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2365 wxMessageBox(wxT("First select a property."));
2369 m_pPropGridManager
->DeleteProperty( id
);
2372 // -----------------------------------------------------------------------
2374 void FormMain::OnDelPropRClick( wxCommandEvent
& WXUNUSED(event
) )
2376 // Delete random property
2377 wxPGProperty
* p
= m_pPropGridManager
->GetGrid()->GetRoot();
2381 if ( !p
->IsCategory() )
2383 m_pPropGridManager
->DeleteProperty( p
);
2387 if ( !p
->GetChildCount() )
2390 int n
= rand() % ((int)p
->GetChildCount());
2396 // -----------------------------------------------------------------------
2398 void FormMain::OnContextMenu( wxContextMenuEvent
& event
)
2400 wxLogDebug(wxT("FormMain::OnContextMenu(%i,%i)"),
2401 event
.GetPosition().x
,event
.GetPosition().y
);
2406 // -----------------------------------------------------------------------
2408 void FormMain::OnCloseClick( wxCommandEvent
& WXUNUSED(event
) )
2410 /*#ifdef __WXDEBUG__
2411 m_pPropGridManager->GetGrid()->DumpAllocatedChoiceSets();
2412 wxLogDebug(wxT("\\-> Don't worry, this is perfectly normal in this sample."));
2418 // -----------------------------------------------------------------------
2420 int IterateMessage( wxPGProperty
* prop
)
2424 s
.Printf( wxT("\"%s\" class = %s, valuetype = %s"), prop
->GetLabel().c_str(),
2425 prop
->GetClassInfo()->GetClassName(), prop
->GetValueType().c_str() );
2427 return wxMessageBox( s
, wxT("Iterating... (press CANCEL to end)"), wxOK
|wxCANCEL
);
2430 // -----------------------------------------------------------------------
2432 void FormMain::OnIterate1Click( wxCommandEvent
& WXUNUSED(event
) )
2434 wxPropertyGridIterator it
;
2436 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2441 wxPGProperty
* p
= *it
;
2442 int res
= IterateMessage( p
);
2443 if ( res
== wxCANCEL
) break;
2447 // -----------------------------------------------------------------------
2449 void FormMain::OnIterate2Click( wxCommandEvent
& WXUNUSED(event
) )
2451 wxPropertyGridIterator it
;
2453 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2454 GetIterator( wxPG_ITERATE_VISIBLE
);
2458 wxPGProperty
* p
= *it
;
2460 int res
= IterateMessage( p
);
2461 if ( res
== wxCANCEL
) break;
2465 // -----------------------------------------------------------------------
2467 void FormMain::OnIterate3Click( wxCommandEvent
& WXUNUSED(event
) )
2469 // iterate over items in reverse order
2470 wxPropertyGridIterator it
;
2472 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2473 GetIterator( wxPG_ITERATE_DEFAULT
, wxBOTTOM
);
2477 wxPGProperty
* p
= *it
;
2479 int res
= IterateMessage( p
);
2480 if ( res
== wxCANCEL
) break;
2484 // -----------------------------------------------------------------------
2486 void FormMain::OnIterate4Click( wxCommandEvent
& WXUNUSED(event
) )
2488 wxPropertyGridIterator it
;
2490 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2491 GetIterator( wxPG_ITERATE_CATEGORIES
);
2495 wxPGProperty
* p
= *it
;
2497 int res
= IterateMessage( p
);
2498 if ( res
== wxCANCEL
) break;
2502 // -----------------------------------------------------------------------
2504 void FormMain::OnFitColumnsClick( wxCommandEvent
& WXUNUSED(event
) )
2506 wxPropertyGridPage
* page
= m_pPropGridManager
->GetCurrentPage();
2508 // Remove auto-centering
2509 m_pPropGridManager
->SetWindowStyle( m_pPropGridManager
->GetWindowStyle() & ~wxPG_SPLITTER_AUTO_CENTER
);
2511 // Grow manager size just prior fit - otherwise
2512 // column information may be lost.
2513 wxSize oldGridSize
= m_pPropGridManager
->GetGrid()->GetClientSize();
2514 wxSize oldFullSize
= GetSize();
2515 SetSize(1000, oldFullSize
.y
);
2517 wxSize newSz
= page
->FitColumns();
2519 int dx
= oldFullSize
.x
- oldGridSize
.x
;
2520 int dy
= oldFullSize
.y
- oldGridSize
.y
;
2528 // -----------------------------------------------------------------------
2530 void FormMain::OnChangeFlagsPropItemsClick( wxCommandEvent
& WXUNUSED(event
) )
2532 wxPGProperty
* p
= m_pPropGridManager
->GetPropertyByName(wxT("Window Styles"));
2534 wxPGChoices newChoices
;
2536 newChoices
.Add(wxT("Fast"),0x1);
2537 newChoices
.Add(wxT("Powerful"),0x2);
2538 newChoices
.Add(wxT("Safe"),0x4);
2539 newChoices
.Add(wxT("Sleek"),0x8);
2541 p
->SetChoices(newChoices
);
2544 // -----------------------------------------------------------------------
2546 void FormMain::OnEnableDisable( wxCommandEvent
& )
2548 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2551 wxMessageBox(wxT("First select a property."));
2555 if ( m_pPropGridManager
->IsPropertyEnabled( id
) )
2557 m_pPropGridManager
->DisableProperty ( id
);
2558 m_itemEnable
->SetItemLabel( wxT("Enable") );
2562 m_pPropGridManager
->EnableProperty ( id
);
2563 m_itemEnable
->SetItemLabel( wxT("Disable") );
2567 // -----------------------------------------------------------------------
2569 void FormMain::OnHideShow( wxCommandEvent
& WXUNUSED(event
) )
2571 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2574 wxMessageBox(wxT("First select a property."));
2578 if ( m_pPropGridManager
->IsPropertyShown( id
) )
2580 m_pPropGridManager
->HideProperty( id
, true );
2581 m_itemEnable
->SetItemLabel( wxT("Show") );
2585 m_pPropGridManager
->HideProperty( id
, false );
2586 m_itemEnable
->SetItemLabel( wxT("Hide") );
2589 wxPropertyGridPage
* curPage
= m_pPropGridManager
->GetCurrentPage();
2591 // Check for bottomY precalculation validity
2592 unsigned int byPre
= curPage
->GetVirtualHeight();
2593 unsigned int byAct
= curPage
->GetActualVirtualHeight();
2595 if ( byPre
!= byAct
)
2597 wxLogDebug(wxT("VirtualHeight is %u, should be %u"), byPre
, byAct
);
2601 // -----------------------------------------------------------------------
2603 #include "wx/colordlg.h"
2606 FormMain::OnSetBackgroundColour( wxCommandEvent
& event
)
2608 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2609 wxPGProperty
* prop
= pg
->GetSelection();
2612 wxMessageBox(wxT("First select a property."));
2616 wxColour col
= ::wxGetColourFromUser(this, *wxWHITE
, "Choose colour");
2620 bool recursively
= (event
.GetId()==ID_SETBGCOLOURRECUR
) ? true : false;
2621 pg
->SetPropertyBackgroundColour(prop
, col
, recursively
);
2625 // -----------------------------------------------------------------------
2627 void FormMain::OnInsertPage( wxCommandEvent
& WXUNUSED(event
) )
2629 m_pPropGridManager
->AddPage(wxT("New Page"));
2632 // -----------------------------------------------------------------------
2634 void FormMain::OnRemovePage( wxCommandEvent
& WXUNUSED(event
) )
2636 m_pPropGridManager
->RemovePage(m_pPropGridManager
->GetSelectedPage());
2639 // -----------------------------------------------------------------------
2641 void FormMain::OnSaveState( wxCommandEvent
& WXUNUSED(event
) )
2643 m_savedState
= m_pPropGridManager
->SaveEditableState();
2644 wxLogDebug(wxT("Saved editable state string: \"%s\""), m_savedState
.c_str());
2647 // -----------------------------------------------------------------------
2649 void FormMain::OnRestoreState( wxCommandEvent
& WXUNUSED(event
) )
2651 m_pPropGridManager
->RestoreEditableState(m_savedState
);
2654 // -----------------------------------------------------------------------
2656 void FormMain::OnSetSpinCtrlEditorClick( wxCommandEvent
& WXUNUSED(event
) )
2659 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2661 m_pPropGridManager
->SetPropertyEditor( pgId
, wxPGEditor_SpinCtrl
);
2663 wxMessageBox(wxT("First select a property"));
2667 // -----------------------------------------------------------------------
2669 void FormMain::OnTestReplaceClick( wxCommandEvent
& WXUNUSED(event
) )
2671 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2674 wxPGChoices choices
;
2675 choices
.Add(wxT("Flag 0"),0x0001);
2676 choices
.Add(wxT("Flag 1"),0x0002);
2677 choices
.Add(wxT("Flag 2"),0x0004);
2678 choices
.Add(wxT("Flag 3"),0x0008);
2679 wxPGProperty
* newId
= m_pPropGridManager
->ReplaceProperty( pgId
,
2680 new wxFlagsProperty(wxT("ReplaceFlagsProperty"), wxPG_LABEL
, choices
, 0x0003) );
2681 m_pPropGridManager
->SetPropertyAttribute( newId
,
2682 wxPG_BOOL_USE_CHECKBOX
,
2687 wxMessageBox(wxT("First select a property"));
2690 // -----------------------------------------------------------------------
2692 void FormMain::OnClearModifyStatusClick( wxCommandEvent
& WXUNUSED(event
) )
2694 m_pPropGridManager
->ClearModifiedStatus();
2697 // -----------------------------------------------------------------------
2699 // Freeze check-box checked?
2700 void FormMain::OnFreezeClick( wxCommandEvent
& event
)
2702 if ( !m_pPropGridManager
) return;
2704 if ( event
.IsChecked() )
2706 if ( !m_pPropGridManager
->IsFrozen() )
2708 m_pPropGridManager
->Freeze();
2713 if ( m_pPropGridManager
->IsFrozen() )
2715 m_pPropGridManager
->Thaw();
2716 m_pPropGridManager
->Refresh();
2721 // -----------------------------------------------------------------------
2723 void FormMain::OnAbout(wxCommandEvent
& WXUNUSED(event
))
2726 msg
.Printf( wxT("wxPropertyGrid Sample")
2728 #if defined(wxUSE_UNICODE_UTF8) && wxUSE_UNICODE_UTF8
2742 wxT("Programmed by %s\n\n")
2743 wxT("Using %s\n\n"),
2744 wxT("Jaakko Salli"), wxVERSION_STRING
2747 wxMessageBox(msg
, _T("About"), wxOK
| wxICON_INFORMATION
, this);
2750 // -----------------------------------------------------------------------
2752 void FormMain::OnColourScheme( wxCommandEvent
& event
)
2754 int id
= event
.GetId();
2755 if ( id
== ID_COLOURSCHEME1
)
2757 m_pPropGridManager
->GetGrid()->ResetColours();
2759 else if ( id
== ID_COLOURSCHEME2
)
2762 wxColour
my_grey_1(212,208,200);
2763 wxColour
my_grey_3(113,111,100);
2764 m_pPropGridManager
->Freeze();
2765 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2766 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2767 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( *wxWHITE
);
2768 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2769 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
); //wxColour(160,160,160)
2770 m_pPropGridManager
->Thaw();
2772 else if ( id
== ID_COLOURSCHEME3
)
2775 wxColour
my_grey_1(212,208,200);
2776 wxColour
my_grey_2(236,233,216);
2777 m_pPropGridManager
->Freeze();
2778 m_pPropGridManager
->GetGrid()->SetMarginColour( my_grey_1
);
2779 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( my_grey_1
);
2780 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2781 m_pPropGridManager
->Thaw();
2783 else if ( id
== ID_COLOURSCHEME4
)
2787 wxColour
my_grey_1(212,208,200);
2788 wxColour
my_grey_2(241,239,226);
2789 wxColour
my_grey_3(113,111,100);
2790 m_pPropGridManager
->Freeze();
2791 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2792 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2793 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2794 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2795 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2796 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2797 m_pPropGridManager
->Thaw();
2801 // -----------------------------------------------------------------------
2803 void FormMain::OnCatColours( wxCommandEvent
& event
)
2805 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2806 m_pPropGridManager
->Freeze();
2808 if ( event
.IsChecked() )
2810 // Set custom colours.
2811 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,0), false );
2812 pg
->SetPropertyBackgroundColour( wxT("Appearance"), wxColour(255,255,183) );
2813 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,183) );
2814 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(0,255,0), false );
2815 pg
->SetPropertyBackgroundColour( wxT("PositionCategory"), wxColour(255,226,190) );
2816 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(255,0,190) );
2817 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(0,0,255), false );
2818 pg
->SetPropertyBackgroundColour( wxT("Environment"), wxColour(208,240,175) );
2819 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(255,255,255) );
2820 pg
->SetPropertyBackgroundColour( wxT("More Examples"), wxColour(172,237,255) );
2821 pg
->SetPropertyTextColour( wxT("More Examples"), wxColour(172,0,255) );
2825 // Revert to original.
2826 pg
->SetPropertyColoursToDefault( wxT("Appearance") );
2827 pg
->SetPropertyColoursToDefault( wxT("PositionCategory") );
2828 pg
->SetPropertyColoursToDefault( wxT("Environment") );
2829 pg
->SetPropertyColoursToDefault( wxT("More Examples") );
2831 m_pPropGridManager
->Thaw();
2832 m_pPropGridManager
->Refresh();
2835 // -----------------------------------------------------------------------
2837 #define ADD_FLAG(FLAG) \
2838 chs.Add(wxT(#FLAG)); \
2840 if ( (flags & FLAG) == FLAG ) sel.Add(ind); \
2843 void FormMain::OnSelectStyle( wxCommandEvent
& WXUNUSED(event
) )
2852 unsigned int ind
= 0;
2853 int flags
= m_pPropGridManager
->GetWindowStyle();
2854 ADD_FLAG(wxPG_HIDE_CATEGORIES
)
2855 ADD_FLAG(wxPG_AUTO_SORT
)
2856 ADD_FLAG(wxPG_BOLD_MODIFIED
)
2857 ADD_FLAG(wxPG_SPLITTER_AUTO_CENTER
)
2858 ADD_FLAG(wxPG_TOOLTIPS
)
2859 ADD_FLAG(wxPG_STATIC_SPLITTER
)
2860 ADD_FLAG(wxPG_HIDE_MARGIN
)
2861 ADD_FLAG(wxPG_LIMITED_EDITING
)
2862 ADD_FLAG(wxPG_TOOLBAR
)
2863 ADD_FLAG(wxPG_DESCRIPTION
)
2864 wxMultiChoiceDialog
dlg( this, wxT("Select window styles to use"),
2865 wxT("wxPropertyGrid Window Style"), chs
);
2866 dlg
.SetSelections(sel
);
2867 if ( dlg
.ShowModal() == wxID_CANCEL
)
2871 sel
= dlg
.GetSelections();
2872 for ( ind
= 0; ind
< sel
.size(); ind
++ )
2873 flags
|= vls
[sel
[ind
]];
2882 unsigned int ind
= 0;
2883 int flags
= m_pPropGridManager
->GetExtraStyle();
2884 ADD_FLAG(wxPG_EX_INIT_NOCAT
)
2885 ADD_FLAG(wxPG_EX_NO_FLAT_TOOLBAR
)
2886 ADD_FLAG(wxPG_EX_MODE_BUTTONS
)
2887 ADD_FLAG(wxPG_EX_HELP_AS_TOOLTIPS
)
2888 ADD_FLAG(wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
2889 ADD_FLAG(wxPG_EX_AUTO_UNSPECIFIED_VALUES
)
2890 ADD_FLAG(wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
)
2891 wxMultiChoiceDialog
dlg( this, wxT("Select extra window styles to use"),
2892 wxT("wxPropertyGrid Extra Style"), chs
);
2893 dlg
.SetSelections(sel
);
2894 if ( dlg
.ShowModal() == wxID_CANCEL
)
2898 sel
= dlg
.GetSelections();
2899 for ( ind
= 0; ind
< sel
.size(); ind
++ )
2900 flags
|= vls
[sel
[ind
]];
2905 CreateGrid( style
, extraStyle
);
2907 FinalizeFramePosition();
2910 // -----------------------------------------------------------------------
2912 void FormMain::OnSetColumns( wxCommandEvent
& WXUNUSED(event
) )
2914 long colCount
= ::wxGetNumberFromUser(wxT("Enter number of columns (2-20)."),wxT("Columns:"),
2915 wxT("Change Columns"),m_pPropGridManager
->GetColumnCount(),
2918 if ( colCount
>= 2 )
2920 m_pPropGridManager
->SetColumnCount(colCount
);
2924 // -----------------------------------------------------------------------
2926 void FormMain::OnSetPropertyValue( wxCommandEvent
& WXUNUSED(event
) )
2928 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2929 wxPGProperty
* selected
= pg
->GetSelection();
2933 wxString value
= ::wxGetTextFromUser( wxT("Enter new value:") );
2934 pg
->SetPropertyValue( selected
, value
);
2938 // -----------------------------------------------------------------------
2940 void FormMain::OnInsertChoice( wxCommandEvent
& WXUNUSED(event
) )
2942 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2944 wxPGProperty
* selected
= pg
->GetSelection();
2945 const wxPGChoices
& choices
= selected
->GetChoices();
2947 // Insert new choice to the center of list
2949 if ( choices
.IsOk() )
2951 int pos
= choices
.GetCount() / 2;
2952 selected
->InsertChoice(wxT("New Choice"), pos
);
2956 ::wxMessageBox(wxT("First select a property with some choices."));
2960 // -----------------------------------------------------------------------
2962 void FormMain::OnDeleteChoice( wxCommandEvent
& WXUNUSED(event
) )
2964 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2966 wxPGProperty
* selected
= pg
->GetSelection();
2967 const wxPGChoices
& choices
= selected
->GetChoices();
2969 // Deletes choice from the center of list
2971 if ( choices
.IsOk() )
2973 int pos
= choices
.GetCount() / 2;
2974 selected
->DeleteChoice(pos
);
2978 ::wxMessageBox(wxT("First select a property with some choices."));
2982 // -----------------------------------------------------------------------
2984 #include <wx/colordlg.h>
2986 void FormMain::OnMisc ( wxCommandEvent
& event
)
2988 int id
= event
.GetId();
2989 if ( id
== ID_STATICLAYOUT
)
2991 long wsf
= m_pPropGridManager
->GetWindowStyleFlag();
2992 if ( event
.IsChecked() ) m_pPropGridManager
->SetWindowStyleFlag( wsf
|wxPG_STATIC_LAYOUT
);
2993 else m_pPropGridManager
->SetWindowStyleFlag( wsf
&~(wxPG_STATIC_LAYOUT
) );
2995 else if ( id
== ID_COLLAPSEALL
)
2998 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3000 for ( it
= pg
->GetVIterator( wxPG_ITERATE_ALL
); !it
.AtEnd(); it
.Next() )
3001 it
.GetProperty()->SetExpanded( false );
3005 else if ( id
== ID_GETVALUES
)
3007 m_storedValues
= m_pPropGridManager
->GetGrid()->GetPropertyValues(wxT("Test"),
3008 m_pPropGridManager
->GetGrid()->GetRoot(),
3009 wxPG_KEEP_STRUCTURE
|wxPG_INC_ATTRIBUTES
);
3011 else if ( id
== ID_SETVALUES
)
3013 if ( m_storedValues
.GetType() == wxT("list") )
3015 m_pPropGridManager
->GetGrid()->SetPropertyValues(m_storedValues
);
3018 wxMessageBox(wxT("First use Get Property Values."));
3020 else if ( id
== ID_SETVALUES2
)
3024 list
.Append( wxVariant((long)1234,wxT("VariantLong")) );
3025 list
.Append( wxVariant((bool)TRUE
,wxT("VariantBool")) );
3026 list
.Append( wxVariant(wxT("Test Text"),wxT("VariantString")) );
3027 m_pPropGridManager
->GetGrid()->SetPropertyValues(list
);
3029 else if ( id
== ID_COLLAPSE
)
3031 // Collapses selected.
3032 wxPGProperty
* id
= m_pPropGridManager
->GetSelection();
3035 m_pPropGridManager
->Collapse(id
);
3038 else if ( id
== ID_RUNTESTFULL
)
3040 // Runs a regression test.
3043 else if ( id
== ID_RUNTESTPARTIAL
)
3045 // Runs a regression test.
3048 else if ( id
== ID_UNSPECIFY
)
3050 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
3053 m_pPropGridManager
->SetPropertyValueUnspecified(prop
);
3054 prop
->RefreshEditor();
3059 // -----------------------------------------------------------------------
3061 void FormMain::OnPopulateClick( wxCommandEvent
& event
)
3063 int id
= event
.GetId();
3064 m_propGrid
->Clear();
3065 m_propGrid
->Freeze();
3066 if ( id
== ID_POPULATE1
)
3068 PopulateWithStandardItems();
3070 else if ( id
== ID_POPULATE2
)
3072 PopulateWithLibraryConfig();
3077 // -----------------------------------------------------------------------
3079 void DisplayMinimalFrame(wxWindow
* parent
); // in minimal.cpp
3081 void FormMain::OnRunMinimalClick( wxCommandEvent
& WXUNUSED(event
) )
3083 DisplayMinimalFrame(this);
3086 // -----------------------------------------------------------------------
3088 FormMain::~FormMain()
3092 // -----------------------------------------------------------------------
3094 IMPLEMENT_APP(cxApplication
)
3096 bool cxApplication::OnInit()
3099 //Locale.Init(wxLANGUAGE_FINNISH);
3101 FormMain
* frame
= Form1
= new FormMain( wxT("wxPropertyGrid Sample"), wxPoint(0,0), wxSize(300,500) );
3105 // Parse command-line
3106 wxApp
& app
= wxGetApp();
3109 wxString s
= app
.argv
[1];
3110 if ( s
== wxT("--run-tests") )
3114 bool testResult
= frame
->RunTests(true);
3124 // -----------------------------------------------------------------------
3126 void FormMain::OnIdle( wxIdleEvent
& event
)
3129 // This code is useful for debugging focus problems
3130 static wxWindow* last_focus = (wxWindow*) NULL;
3132 wxWindow* cur_focus = ::wxWindow::FindFocus();
3134 if ( cur_focus != last_focus )
3136 const wxChar* class_name = wxT("<none>");
3138 class_name = cur_focus->GetClassInfo()->GetClassName();
3139 last_focus = cur_focus;
3140 wxLogDebug( wxT("FOCUSED: %s %X"),
3142 (unsigned int)cur_focus);
3149 // -----------------------------------------------------------------------