1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/propgrid/propgrid.cpp
3 // Purpose: wxPropertyGrid sample
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 // * Examples of custom property classes are in sampleprops.cpp.
18 // * Additional ones can be found below.
20 // * Currently there is no example of a custom property editor. However,
21 // SpinCtrl editor sample is well-commented. It can be found in
22 // src/propgrid/advprops.cpp.
24 // * To find code that populates the grid with properties, search for
25 // string "::Populate".
27 // * To find code that handles property grid changes, search for string
28 // "::OnPropertyGridChange".
31 // For compilers that support precompilation, includes "wx/wx.h".
32 #include "wx/wxprec.h"
38 // for all others, include the necessary headers (this file is usually all you
39 // need because it includes almost all "standard" wxWidgets headers)
45 #error "Please set wxUSE_PROPGRID to 1 and rebuild the library."
48 #include <wx/numdlg.h>
50 // -----------------------------------------------------------------------
53 // Main propertygrid header.
54 #include <wx/propgrid/propgrid.h>
56 // Extra property classes.
57 #include <wx/propgrid/advprops.h>
59 // This defines wxPropertyGridManager.
60 #include <wx/propgrid/manager.h>
63 #include "sampleprops.h"
65 #if wxUSE_DATEPICKCTRL
66 #include <wx/datectrl.h>
69 #include <wx/artprov.h>
72 #include "../sample.xpm"
75 // -----------------------------------------------------------------------
76 // wxSampleMultiButtonEditor
77 // A sample editor class that has multiple buttons.
78 // -----------------------------------------------------------------------
80 class wxSampleMultiButtonEditor
: public wxPGTextCtrlEditor
82 DECLARE_DYNAMIC_CLASS(wxSampleMultiButtonEditor
)
84 wxSampleMultiButtonEditor() {}
85 virtual ~wxSampleMultiButtonEditor() {}
87 virtual wxPGWindowList
CreateControls( wxPropertyGrid
* propGrid
,
88 wxPGProperty
* property
,
90 const wxSize
& sz
) const;
91 virtual bool OnEvent( wxPropertyGrid
* propGrid
,
92 wxPGProperty
* property
,
94 wxEvent
& event
) const;
97 IMPLEMENT_DYNAMIC_CLASS(wxSampleMultiButtonEditor
, wxPGTextCtrlEditor
)
99 wxPGWindowList
wxSampleMultiButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
100 wxPGProperty
* property
,
102 const wxSize
& sz
) const
104 // Create and populate buttons-subwindow
105 wxPGMultiButton
* buttons
= new wxPGMultiButton( propGrid
, sz
);
107 // Add two regular buttons
108 buttons
->Add( "..." );
110 // Add a bitmap button
111 buttons
->Add( wxArtProvider::GetBitmap(wxART_FOLDER
) );
113 // Create the 'primary' editor control (textctrl in this case)
114 wxPGWindowList wndList
= wxPGTextCtrlEditor::CreateControls
115 ( propGrid
, property
, pos
,
116 buttons
->GetPrimarySize() );
118 // Finally, move buttons-subwindow to correct position and make sure
119 // returned wxPGWindowList contains our custom button list.
120 buttons
->Finalize(propGrid
, pos
);
122 wndList
.SetSecondary( buttons
);
126 bool wxSampleMultiButtonEditor::OnEvent( wxPropertyGrid
* propGrid
,
127 wxPGProperty
* property
,
129 wxEvent
& event
) const
131 if ( event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
133 wxPGMultiButton
* buttons
= (wxPGMultiButton
*) propGrid
->GetEditorControlSecondary();
135 if ( event
.GetId() == buttons
->GetButtonId(0) )
137 // Do something when the first button is pressed
138 wxLogDebug("First button pressed");
139 return false; // Return false since value did not change
141 if ( event
.GetId() == buttons
->GetButtonId(1) )
143 // Do something when the second button is pressed
144 wxMessageBox("Second button pressed");
145 return false; // Return false since value did not change
147 if ( event
.GetId() == buttons
->GetButtonId(2) )
149 // Do something when the third button is pressed
150 wxMessageBox("Third button pressed");
151 return false; // Return false since value did not change
154 return wxPGTextCtrlEditor::OnEvent(propGrid
, property
, ctrl
, event
);
157 // -----------------------------------------------------------------------
158 // Validator for wxValidator use sample
159 // -----------------------------------------------------------------------
163 // wxValidator for testing
165 class wxInvalidWordValidator
: public wxValidator
169 wxInvalidWordValidator( const wxString
& invalidWord
)
170 : wxValidator(), m_invalidWord(invalidWord
)
174 virtual wxObject
* Clone() const
176 return new wxInvalidWordValidator(m_invalidWord
);
179 virtual bool Validate(wxWindow
* WXUNUSED(parent
))
181 wxTextCtrl
* tc
= wxDynamicCast(GetWindow(), wxTextCtrl
);
182 wxCHECK_MSG(tc
, true, wxT("validator window must be wxTextCtrl"));
184 wxString val
= tc
->GetValue();
186 if ( val
.find(m_invalidWord
) == wxString::npos
)
189 ::wxMessageBox(wxString::Format(wxT("%s is not allowed word"),m_invalidWord
.c_str()),
190 wxT("Validation Failure"));
196 wxString m_invalidWord
;
199 #endif // wxUSE_VALIDATORS
201 // -----------------------------------------------------------------------
202 // AdvImageFile Property
203 // -----------------------------------------------------------------------
207 WX_DECLARE_OBJARRAY(wxMyImageInfo
, wxArrayMyImageInfo
);
213 wxBitmap
* m_pThumbnail1
; // smaller thumbnail
214 wxBitmap
* m_pThumbnail2
; // larger thumbnail
216 wxMyImageInfo ( const wxString
& str
)
219 m_pThumbnail1
= (wxBitmap
*) NULL
;
220 m_pThumbnail2
= (wxBitmap
*) NULL
;
222 virtual ~wxMyImageInfo()
225 delete m_pThumbnail1
;
227 delete m_pThumbnail2
;
233 #include <wx/arrimpl.cpp>
234 WX_DEFINE_OBJARRAY(wxArrayMyImageInfo
);
236 wxArrayMyImageInfo g_myImageArray
;
239 // Preferred thumbnail height.
240 #define PREF_THUMBNAIL_HEIGHT 64
243 wxPGChoices
wxAdvImageFileProperty::ms_choices
;
245 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxAdvImageFileProperty
,wxFileProperty
,
246 wxString
,const wxString
&,ChoiceAndButton
)
249 wxAdvImageFileProperty::wxAdvImageFileProperty( const wxString
& label
,
250 const wxString
& name
,
251 const wxString
& value
)
252 : wxFileProperty(label
,name
,value
)
254 m_wildcard
= wxPGGetDefaultImageWildcard();
258 m_pImage
= (wxImage
*) NULL
;
261 m_flags
&= ~(wxPG_PROP_SHOW_FULL_FILENAME
);
264 wxAdvImageFileProperty::~wxAdvImageFileProperty ()
270 void wxAdvImageFileProperty::OnSetValue()
272 wxFileProperty::OnSetValue();
277 wxString imagename
= GetValueAsString(0);
279 if ( imagename
.length() )
281 wxFileName filename
= GetFileName();
282 size_t prevCount
= g_myImageArray
.GetCount();
283 int index
= ms_choices
.Index(imagename
);
285 // If not in table, add now.
286 if ( index
== wxNOT_FOUND
)
288 ms_choices
.Add( imagename
);
289 g_myImageArray
.Add( new wxMyImageInfo( filename
.GetFullPath() ) );
291 index
= g_myImageArray
.GetCount() - 1;
294 // If no thumbnail ready, then need to load image.
295 if ( !g_myImageArray
[index
].m_pThumbnail2
)
297 // Load if file exists.
298 if ( filename
.FileExists() )
299 m_pImage
= new wxImage( filename
.GetFullPath() );
304 wxPropertyGrid
* pg
= GetGrid();
305 wxWindow
* control
= pg
->GetEditorControl();
307 if ( pg
->GetSelection() == this && control
)
309 wxString name
= GetValueAsString(0);
311 if ( g_myImageArray
.GetCount() != prevCount
)
313 wxASSERT( g_myImageArray
.GetCount() == (prevCount
+1) );
315 // Add to the control's array.
316 // (should be added to own array earlier)
319 GetEditorClass()->InsertItem(control
, name
, -1);
323 GetEditorClass()->UpdateControl(this, control
);
330 bool wxAdvImageFileProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
332 wxASSERT( number
>= 0 );
333 return StringToValue( variant
, ms_choices
.GetLabel(number
), wxPG_FULL_VALUE
);
336 bool wxAdvImageFileProperty::OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* primary
,
339 if ( propgrid
->IsMainButtonEvent(event
) )
341 return wxFileProperty::OnEvent(propgrid
,primary
,event
);
346 wxSize
wxAdvImageFileProperty::OnMeasureImage( int item
) const
349 return wxPG_DEFAULT_IMAGE_SIZE
;
351 return wxSize(PREF_THUMBNAIL_HEIGHT
,PREF_THUMBNAIL_HEIGHT
);
354 void wxAdvImageFileProperty::LoadThumbnails( size_t index
)
356 wxMyImageInfo
& mii
= g_myImageArray
[index
];
358 if ( !mii
.m_pThumbnail2
)
360 wxFileName filename
= GetFileName();
362 if ( !m_pImage
|| !m_pImage
->Ok() ||
363 filename
!= mii
.m_path
368 m_pImage
= new wxImage( mii
.m_path
);
371 if ( m_pImage
&& m_pImage
->Ok() )
373 int im_wid
= m_pImage
->GetWidth();
374 int im_hei
= m_pImage
->GetHeight();
375 if ( im_hei
> PREF_THUMBNAIL_HEIGHT
)
378 im_wid
= (PREF_THUMBNAIL_HEIGHT
*m_pImage
->GetWidth())/m_pImage
->GetHeight();
379 im_hei
= PREF_THUMBNAIL_HEIGHT
;
382 m_pImage
->Rescale( im_wid
, im_hei
);
384 mii
.m_pThumbnail2
= new wxBitmap( *m_pImage
);
386 wxSize cis
= GetParentState()->GetGrid()->GetImageSize();
387 m_pImage
->Rescale ( cis
.x
, cis
.y
);
389 mii
.m_pThumbnail1
= new wxBitmap( *m_pImage
);
397 void wxAdvImageFileProperty::OnCustomPaint( wxDC
& dc
,
402 if ( pd
.m_choiceItem
>= 0 )
403 index
= pd
.m_choiceItem
;
405 //wxLogDebug(wxT("%i"),index);
409 LoadThumbnails(index
);
411 // Is this a measure item call?
415 //pd.m_drawnHeight = PREF_THUMBNAIL_HEIGHT;
416 wxBitmap
* pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
418 pd
.m_drawnHeight
= pBitmap
->GetHeight();
420 pd
.m_drawnHeight
= 16;
424 // Draw the thumbnail
428 if ( pd
.m_choiceItem
>= 0 )
429 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
431 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail1
;
435 dc
.DrawBitmap ( *pBitmap
, rect
.x
, rect
.y
, FALSE
);
437 // Tell the caller how wide we drew.
438 pd
.m_drawnWidth
= pBitmap
->GetWidth();
444 // No valid file - just draw a white box.
445 dc
.SetBrush ( *wxWHITE_BRUSH
);
446 dc
.DrawRectangle ( rect
);
450 // -----------------------------------------------------------------------
452 // -----------------------------------------------------------------------
454 // See propgridsample.h for wxVector3f class
456 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxVector3f
)
458 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxVectorProperty
,wxPGProperty
,
459 wxVector3f
,const wxVector3f
&,TextCtrl
)
462 wxVectorProperty::wxVectorProperty( const wxString
& label
,
463 const wxString
& name
,
464 const wxVector3f
& value
)
465 : wxPGProperty(label
,name
)
467 SetValue( WXVARIANT(value
) );
468 AddPrivateChild( new wxFloatProperty(wxT("X"),wxPG_LABEL
,value
.x
) );
469 AddPrivateChild( new wxFloatProperty(wxT("Y"),wxPG_LABEL
,value
.y
) );
470 AddPrivateChild( new wxFloatProperty(wxT("Z"),wxPG_LABEL
,value
.z
) );
473 wxVectorProperty::~wxVectorProperty() { }
475 void wxVectorProperty::RefreshChildren()
477 if ( !GetChildCount() ) return;
478 const wxVector3f
& vector
= wxVector3fRefFromVariant(m_value
);
479 Item(0)->SetValue( vector
.x
);
480 Item(1)->SetValue( vector
.y
);
481 Item(2)->SetValue( vector
.z
);
484 wxVariant
wxVectorProperty::ChildChanged( wxVariant
& thisValue
,
486 wxVariant
& childValue
) const
490 switch ( childIndex
)
492 case 0: vector
.x
= childValue
.GetDouble(); break;
493 case 1: vector
.y
= childValue
.GetDouble(); break;
494 case 2: vector
.z
= childValue
.GetDouble(); break;
496 wxVariant newVariant
;
497 newVariant
<< vector
;
502 // -----------------------------------------------------------------------
503 // wxTriangleProperty
504 // -----------------------------------------------------------------------
506 // See propgridsample.h for wxTriangle class
508 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxTriangle
)
510 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxTriangleProperty
,wxPGProperty
,
511 wxTriangle
,const wxTriangle
&,TextCtrl
)
514 wxTriangleProperty::wxTriangleProperty( const wxString
& label
,
515 const wxString
& name
,
516 const wxTriangle
& value
)
517 : wxPGProperty(label
,name
)
519 SetValue( WXVARIANT(value
) );
520 AddPrivateChild( new wxVectorProperty(wxT("A"),wxPG_LABEL
,value
.a
) );
521 AddPrivateChild( new wxVectorProperty(wxT("B"),wxPG_LABEL
,value
.b
) );
522 AddPrivateChild( new wxVectorProperty(wxT("C"),wxPG_LABEL
,value
.c
) );
525 wxTriangleProperty::~wxTriangleProperty() { }
527 void wxTriangleProperty::RefreshChildren()
529 if ( !GetChildCount() ) return;
530 const wxTriangle
& triangle
= wxTriangleRefFromVariant(m_value
);
531 Item(0)->SetValue( WXVARIANT(triangle
.a
) );
532 Item(1)->SetValue( WXVARIANT(triangle
.b
) );
533 Item(2)->SetValue( WXVARIANT(triangle
.c
) );
536 wxVariant
wxTriangleProperty::ChildChanged( wxVariant
& thisValue
,
538 wxVariant
& childValue
) const
541 triangle
<< thisValue
;
542 const wxVector3f
& vector
= wxVector3fRefFromVariant(childValue
);
543 switch ( childIndex
)
545 case 0: triangle
.a
= vector
; break;
546 case 1: triangle
.b
= vector
; break;
547 case 2: triangle
.c
= vector
; break;
549 wxVariant newVariant
;
550 newVariant
<< triangle
;
555 // -----------------------------------------------------------------------
556 // wxSingleChoiceDialogAdapter (wxPGEditorDialogAdapter sample)
557 // -----------------------------------------------------------------------
559 class wxSingleChoiceDialogAdapter
: public wxPGEditorDialogAdapter
563 wxSingleChoiceDialogAdapter( const wxPGChoices
& choices
)
564 : wxPGEditorDialogAdapter(), m_choices(choices
)
568 virtual bool DoShowDialog( wxPropertyGrid
* WXUNUSED(propGrid
),
569 wxPGProperty
* WXUNUSED(property
) )
571 wxString s
= ::wxGetSingleChoice(wxT("Message"),
573 m_choices
.GetLabels());
584 const wxPGChoices
& m_choices
;
588 class SingleChoiceProperty
: public wxStringProperty
592 SingleChoiceProperty( const wxString
& label
,
593 const wxString
& name
= wxPG_LABEL
,
594 const wxString
& value
= wxEmptyString
)
595 : wxStringProperty(label
, name
, value
)
598 m_choices
.Add(wxT("Cat"));
599 m_choices
.Add(wxT("Dog"));
600 m_choices
.Add(wxT("Gibbon"));
601 m_choices
.Add(wxT("Otter"));
604 // Set editor to have button
605 virtual const wxPGEditor
* DoGetEditorClass() const
607 return wxPGEditor_TextCtrlAndButton
;
610 // Set what happens on button click
611 virtual wxPGEditorDialogAdapter
* GetEditorDialog() const
613 return new wxSingleChoiceDialogAdapter(m_choices
);
617 wxPGChoices m_choices
;
620 // -----------------------------------------------------------------------
622 // -----------------------------------------------------------------------
670 ID_SETSPINCTRLEDITOR
,
675 ID_ENABLECOMMONVALUES
,
680 ID_ENABLELABELEDITING
,
686 // -----------------------------------------------------------------------
688 // -----------------------------------------------------------------------
690 BEGIN_EVENT_TABLE(FormMain
, wxFrame
)
691 EVT_IDLE(FormMain::OnIdle
)
692 EVT_MOVE(FormMain::OnMove
)
693 EVT_SIZE(FormMain::OnResize
)
695 // This occurs when a property is selected
696 EVT_PG_SELECTED( PGID
, FormMain::OnPropertyGridSelect
)
697 // This occurs when a property value changes
698 EVT_PG_CHANGED( PGID
, FormMain::OnPropertyGridChange
)
699 // This occurs just prior a property value is changed
700 EVT_PG_CHANGING( PGID
, FormMain::OnPropertyGridChanging
)
701 // This occurs when a mouse moves over another property
702 EVT_PG_HIGHLIGHTED( PGID
, FormMain::OnPropertyGridHighlight
)
703 // This occurs when mouse is right-clicked.
704 EVT_PG_RIGHT_CLICK( PGID
, FormMain::OnPropertyGridItemRightClick
)
705 // This occurs when mouse is double-clicked.
706 EVT_PG_DOUBLE_CLICK( PGID
, FormMain::OnPropertyGridItemDoubleClick
)
707 // This occurs when propgridmanager's page changes.
708 EVT_PG_PAGE_CHANGED( PGID
, FormMain::OnPropertyGridPageChange
)
709 // This occurs when user starts editing a property label
710 EVT_PG_LABEL_EDIT_BEGIN( PGID
,
711 FormMain::OnPropertyGridLabelEditBegin
)
712 // This occurs when user stops editing a property label
713 EVT_PG_LABEL_EDIT_ENDING( PGID
,
714 FormMain::OnPropertyGridLabelEditEnding
)
715 // This occurs when property's editor button (if any) is clicked.
716 EVT_BUTTON( PGID
, FormMain::OnPropertyGridButtonClick
)
718 EVT_PG_ITEM_COLLAPSED( PGID
, FormMain::OnPropertyGridItemCollapse
)
719 EVT_PG_ITEM_EXPANDED( PGID
, FormMain::OnPropertyGridItemExpand
)
721 EVT_PG_COL_BEGIN_DRAG( PGID
, FormMain::OnPropertyGridColBeginDrag
)
722 EVT_PG_COL_DRAGGING( PGID
, FormMain::OnPropertyGridColDragging
)
723 EVT_PG_COL_END_DRAG( PGID
, FormMain::OnPropertyGridColEndDrag
)
725 EVT_TEXT( PGID
, FormMain::OnPropertyGridTextUpdate
)
728 // Rest of the events are not property grid specific
729 EVT_KEY_DOWN( FormMain::OnPropertyGridKeyEvent
)
730 EVT_KEY_UP( FormMain::OnPropertyGridKeyEvent
)
732 EVT_MENU( ID_APPENDPROP
, FormMain::OnAppendPropClick
)
733 EVT_MENU( ID_APPENDCAT
, FormMain::OnAppendCatClick
)
734 EVT_MENU( ID_INSERTPROP
, FormMain::OnInsertPropClick
)
735 EVT_MENU( ID_INSERTCAT
, FormMain::OnInsertCatClick
)
736 EVT_MENU( ID_DELETE
, FormMain::OnDelPropClick
)
737 EVT_MENU( ID_DELETER
, FormMain::OnDelPropRClick
)
738 EVT_MENU( ID_UNSPECIFY
, FormMain::OnMisc
)
739 EVT_MENU( ID_DELETEALL
, FormMain::OnClearClick
)
740 EVT_MENU( ID_ENABLE
, FormMain::OnEnableDisable
)
741 EVT_MENU( ID_SETREADONLY
, FormMain::OnSetReadOnly
)
742 EVT_MENU( ID_HIDE
, FormMain::OnHide
)
744 EVT_MENU( ID_ITERATE1
, FormMain::OnIterate1Click
)
745 EVT_MENU( ID_ITERATE2
, FormMain::OnIterate2Click
)
746 EVT_MENU( ID_ITERATE3
, FormMain::OnIterate3Click
)
747 EVT_MENU( ID_ITERATE4
, FormMain::OnIterate4Click
)
748 EVT_MENU( ID_ONEXTENDEDKEYNAV
, FormMain::OnExtendedKeyNav
)
749 EVT_MENU( ID_SETBGCOLOUR
, FormMain::OnSetBackgroundColour
)
750 EVT_MENU( ID_SETBGCOLOURRECUR
, FormMain::OnSetBackgroundColour
)
751 EVT_MENU( ID_CLEARMODIF
, FormMain::OnClearModifyStatusClick
)
752 EVT_MENU( ID_FREEZE
, FormMain::OnFreezeClick
)
753 EVT_MENU( ID_ENABLELABELEDITING
, FormMain::OnEnableLabelEditing
)
754 EVT_MENU( ID_SHOWHEADER
, FormMain::OnShowHeader
)
755 EVT_MENU( ID_DUMPLIST
, FormMain::OnDumpList
)
757 EVT_MENU( ID_COLOURSCHEME1
, FormMain::OnColourScheme
)
758 EVT_MENU( ID_COLOURSCHEME2
, FormMain::OnColourScheme
)
759 EVT_MENU( ID_COLOURSCHEME3
, FormMain::OnColourScheme
)
760 EVT_MENU( ID_COLOURSCHEME4
, FormMain::OnColourScheme
)
762 EVT_MENU( ID_ABOUT
, FormMain::OnAbout
)
763 EVT_MENU( ID_QUIT
, FormMain::OnCloseClick
)
765 EVT_MENU( ID_CATCOLOURS
, FormMain::OnCatColours
)
766 EVT_MENU( ID_SETCOLUMNS
, FormMain::OnSetColumns
)
767 EVT_MENU( ID_TESTXRC
, FormMain::OnTestXRC
)
768 EVT_MENU( ID_ENABLECOMMONVALUES
, FormMain::OnEnableCommonValues
)
769 EVT_MENU( ID_SELECTSTYLE
, FormMain::OnSelectStyle
)
771 EVT_MENU( ID_STATICLAYOUT
, FormMain::OnMisc
)
772 EVT_MENU( ID_COLLAPSE
, FormMain::OnMisc
)
773 EVT_MENU( ID_COLLAPSEALL
, FormMain::OnMisc
)
775 EVT_MENU( ID_POPULATE1
, FormMain::OnPopulateClick
)
776 EVT_MENU( ID_POPULATE2
, FormMain::OnPopulateClick
)
778 EVT_MENU( ID_GETVALUES
, FormMain::OnMisc
)
779 EVT_MENU( ID_SETVALUES
, FormMain::OnMisc
)
780 EVT_MENU( ID_SETVALUES2
, FormMain::OnMisc
)
782 EVT_MENU( ID_FITCOLUMNS
, FormMain::OnFitColumnsClick
)
784 EVT_MENU( ID_CHANGEFLAGSITEMS
, FormMain::OnChangeFlagsPropItemsClick
)
786 EVT_MENU( ID_RUNTESTFULL
, FormMain::OnMisc
)
787 EVT_MENU( ID_RUNTESTPARTIAL
, FormMain::OnMisc
)
789 EVT_MENU( ID_TESTINSERTCHOICE
, FormMain::OnInsertChoice
)
790 EVT_MENU( ID_TESTDELETECHOICE
, FormMain::OnDeleteChoice
)
792 EVT_MENU( ID_INSERTPAGE
, FormMain::OnInsertPage
)
793 EVT_MENU( ID_REMOVEPAGE
, FormMain::OnRemovePage
)
795 EVT_MENU( ID_SAVESTATE
, FormMain::OnSaveState
)
796 EVT_MENU( ID_RESTORESTATE
, FormMain::OnRestoreState
)
798 EVT_MENU( ID_SETSPINCTRLEDITOR
, FormMain::OnSetSpinCtrlEditorClick
)
799 EVT_MENU( ID_TESTREPLACE
, FormMain::OnTestReplaceClick
)
800 EVT_MENU( ID_SETPROPERTYVALUE
, FormMain::OnSetPropertyValue
)
802 EVT_MENU( ID_RUNMINIMAL
, FormMain::OnRunMinimalClick
)
804 EVT_CONTEXT_MENU( FormMain::OnContextMenu
)
807 // -----------------------------------------------------------------------
809 void FormMain::OnMove( wxMoveEvent
& event
)
811 if ( !m_pPropGridManager
)
813 // this check is here so the frame layout can be tested
814 // without creating propertygrid
819 // Update position properties
825 // Must check if properties exist (as they may be deleted).
827 // Using m_pPropGridManager, we can scan all pages automatically.
828 id
= m_pPropGridManager
->GetPropertyByName( wxT("X") );
830 m_pPropGridManager
->SetPropertyValue( id
, x
);
832 id
= m_pPropGridManager
->GetPropertyByName( wxT("Y") );
834 m_pPropGridManager
->SetPropertyValue( id
, y
);
836 id
= m_pPropGridManager
->GetPropertyByName( wxT("Position") );
838 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxPoint(x
,y
)) );
840 // Should always call event.Skip() in frame's MoveEvent handler
844 // -----------------------------------------------------------------------
846 void FormMain::OnResize( wxSizeEvent
& event
)
848 if ( !m_pPropGridManager
)
850 // this check is here so the frame layout can be tested
851 // without creating propertygrid
856 // Update size properties
863 // Must check if properties exist (as they may be deleted).
865 // Using m_pPropGridManager, we can scan all pages automatically.
866 p
= m_pPropGridManager
->GetPropertyByName( wxT("Width") );
867 if ( p
&& !p
->IsValueUnspecified() )
868 m_pPropGridManager
->SetPropertyValue( p
, w
);
870 p
= m_pPropGridManager
->GetPropertyByName( wxT("Height") );
871 if ( p
&& !p
->IsValueUnspecified() )
872 m_pPropGridManager
->SetPropertyValue( p
, h
);
874 id
= m_pPropGridManager
->GetPropertyByName ( wxT("Size") );
876 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxSize(w
,h
)) );
878 // Should always call event.Skip() in frame's SizeEvent handler
882 // -----------------------------------------------------------------------
884 void FormMain::OnPropertyGridChanging( wxPropertyGridEvent
& event
)
886 wxPGProperty
* p
= event
.GetProperty();
888 if ( p
->GetName() == wxT("Font") )
891 wxMessageBox(wxString::Format(wxT("'%s' is about to change (to variant of type '%s')\n\nAllow or deny?"),
892 p
->GetName().c_str(),event
.GetValue().GetType().c_str()),
893 wxT("Testing wxEVT_PG_CHANGING"), wxYES_NO
, m_pPropGridManager
);
897 wxASSERT(event
.CanVeto());
901 // Since we ask a question, it is better if we omit any validation
903 event
.SetValidationFailureBehavior(0);
909 // Note how we use three types of value getting in this method:
910 // A) event.GetPropertyValueAsXXX
911 // B) event.GetPropertValue, and then variant's GetXXX
912 // C) grid's GetPropertyValueAsXXX(id)
914 void FormMain::OnPropertyGridChange( wxPropertyGridEvent
& event
)
916 wxPGProperty
* property
= event
.GetProperty();
918 const wxString
& name
= property
->GetName();
920 // Properties store values internally as wxVariants, but it is preferred
921 // to use the more modern wxAny at the interface level
922 wxAny value
= property
->GetValue();
924 // Don't handle 'unspecified' values
925 if ( value
.IsNull() )
929 // FIXME-VC6: In order to compile on Visual C++ 6.0, wxANY_AS()
930 // macro is used. Unless you want to support this old
931 // compiler in your own code, you can use the more
932 // nicer form value.As<FOO>() instead of
933 // wxANY_AS(value, FOO).
936 // Some settings are disabled outside Windows platform
937 if ( name
== wxT("X") )
938 SetSize( wxANY_AS(value
, int), -1, -1, -1, wxSIZE_USE_EXISTING
);
939 else if ( name
== wxT("Y") )
940 // wxPGVariantToInt is safe long int value getter
941 SetSize ( -1, wxANY_AS(value
, int), -1, -1, wxSIZE_USE_EXISTING
);
942 else if ( name
== wxT("Width") )
943 SetSize ( -1, -1, wxANY_AS(value
, int), -1, wxSIZE_USE_EXISTING
);
944 else if ( name
== wxT("Height") )
945 SetSize ( -1, -1, -1, wxANY_AS(value
, int), wxSIZE_USE_EXISTING
);
946 else if ( name
== wxT("Label") )
948 SetTitle( wxANY_AS(value
, wxString
) );
950 else if ( name
== wxT("Password") )
952 static int pwdMode
= 0;
954 //m_pPropGridManager->SetPropertyAttribute(property, wxPG_STRING_PASSWORD, (long)pwdMode);
960 if ( name
== wxT("Font") )
962 wxFont font
= wxANY_AS(value
, wxFont
);
963 wxASSERT( font
.Ok() );
965 m_pPropGridManager
->SetFont( font
);
968 if ( name
== wxT("Margin Colour") )
970 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
971 m_pPropGridManager
->GetGrid()->SetMarginColour( cpv
.m_colour
);
973 else if ( name
== wxT("Cell Colour") )
975 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
976 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( cpv
.m_colour
);
978 else if ( name
== wxT("Line Colour") )
980 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
981 m_pPropGridManager
->GetGrid()->SetLineColour( cpv
.m_colour
);
983 else if ( name
== wxT("Cell Text Colour") )
985 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
986 m_pPropGridManager
->GetGrid()->SetCellTextColour( cpv
.m_colour
);
990 // -----------------------------------------------------------------------
992 void FormMain::OnPropertyGridSelect( wxPropertyGridEvent
& event
)
994 wxPGProperty
* property
= event
.GetProperty();
997 m_itemEnable
->Enable( TRUE
);
998 if ( property
->IsEnabled() )
999 m_itemEnable
->SetItemLabel( wxT("Disable") );
1001 m_itemEnable
->SetItemLabel( wxT("Enable") );
1005 m_itemEnable
->Enable( FALSE
);
1009 wxPGProperty
* prop
= event
.GetProperty();
1010 wxStatusBar
* sb
= GetStatusBar();
1013 wxString
text(wxT("Selected: "));
1014 text
+= m_pPropGridManager
->GetPropertyLabel( prop
);
1015 sb
->SetStatusText ( text
);
1020 // -----------------------------------------------------------------------
1022 void FormMain::OnPropertyGridPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1025 wxStatusBar
* sb
= GetStatusBar();
1026 wxString
text(wxT("Page Changed: "));
1027 text
+= m_pPropGridManager
->GetPageName(m_pPropGridManager
->GetSelectedPage());
1028 sb
->SetStatusText( text
);
1032 // -----------------------------------------------------------------------
1034 void FormMain::OnPropertyGridLabelEditBegin( wxPropertyGridEvent
& event
)
1036 wxLogMessage("wxPG_EVT_LABEL_EDIT_BEGIN(%s)",
1037 event
.GetProperty()->GetLabel().c_str());
1040 // -----------------------------------------------------------------------
1042 void FormMain::OnPropertyGridLabelEditEnding( wxPropertyGridEvent
& event
)
1044 wxLogMessage("wxPG_EVT_LABEL_EDIT_ENDING(%s)",
1045 event
.GetProperty()->GetLabel().c_str());
1048 // -----------------------------------------------------------------------
1050 void FormMain::OnPropertyGridHighlight( wxPropertyGridEvent
& WXUNUSED(event
) )
1054 // -----------------------------------------------------------------------
1056 void FormMain::OnPropertyGridItemRightClick( wxPropertyGridEvent
& event
)
1059 wxPGProperty
* prop
= event
.GetProperty();
1060 wxStatusBar
* sb
= GetStatusBar();
1063 wxString
text(wxT("Right-clicked: "));
1064 text
+= prop
->GetLabel();
1065 text
+= wxT(", name=");
1066 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1067 sb
->SetStatusText( text
);
1071 sb
->SetStatusText( wxEmptyString
);
1076 // -----------------------------------------------------------------------
1078 void FormMain::OnPropertyGridItemDoubleClick( wxPropertyGridEvent
& event
)
1081 wxPGProperty
* prop
= event
.GetProperty();
1082 wxStatusBar
* sb
= GetStatusBar();
1085 wxString
text(wxT("Double-clicked: "));
1086 text
+= prop
->GetLabel();
1087 text
+= wxT(", name=");
1088 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1089 sb
->SetStatusText ( text
);
1093 sb
->SetStatusText ( wxEmptyString
);
1098 // -----------------------------------------------------------------------
1100 void FormMain::OnPropertyGridButtonClick ( wxCommandEvent
& )
1103 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1104 wxStatusBar
* sb
= GetStatusBar();
1107 wxString
text(wxT("Button clicked: "));
1108 text
+= m_pPropGridManager
->GetPropertyLabel(prop
);
1109 text
+= wxT(", name=");
1110 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1111 sb
->SetStatusText( text
);
1115 ::wxMessageBox(wxT("SHOULD NOT HAPPEN!!!"));
1120 // -----------------------------------------------------------------------
1122 void FormMain::OnPropertyGridItemCollapse( wxPropertyGridEvent
& )
1124 wxLogMessage(wxT("Item was Collapsed"));
1127 // -----------------------------------------------------------------------
1129 void FormMain::OnPropertyGridItemExpand( wxPropertyGridEvent
& )
1131 wxLogMessage(wxT("Item was Expanded"));
1134 // -----------------------------------------------------------------------
1136 void FormMain::OnPropertyGridColBeginDrag( wxPropertyGridEvent
& event
)
1138 if ( m_itemVetoDragging
->IsChecked() )
1140 wxLogMessage("Splitter %i resize was vetoed", event
.GetColumn());
1145 wxLogMessage("Splitter %i resize began", event
.GetColumn());
1149 // -----------------------------------------------------------------------
1151 void FormMain::OnPropertyGridColDragging( wxPropertyGridEvent
& event
)
1154 // For now, let's not spam the log output
1155 //wxLogMessage("Splitter %i is being resized", event.GetColumn());
1158 // -----------------------------------------------------------------------
1160 void FormMain::OnPropertyGridColEndDrag( wxPropertyGridEvent
& event
)
1162 wxLogMessage("Splitter %i resize ended", event
.GetColumn());
1165 // -----------------------------------------------------------------------
1167 // EVT_TEXT handling
1168 void FormMain::OnPropertyGridTextUpdate( wxCommandEvent
& event
)
1173 // -----------------------------------------------------------------------
1175 void FormMain::OnPropertyGridKeyEvent( wxKeyEvent
& WXUNUSED(event
) )
1177 // Occurs on wxGTK mostly, but not wxMSW.
1180 // -----------------------------------------------------------------------
1182 void FormMain::OnLabelTextChange( wxCommandEvent
& WXUNUSED(event
) )
1184 // Uncomment following to allow property label modify in real-time
1185 // wxPGProperty& p = m_pPropGridManager->GetGrid()->GetSelection();
1186 // if ( !p.IsOk() ) return;
1187 // m_pPropGridManager->SetPropertyLabel( p, m_tcPropLabel->DoGetValue() );
1190 // -----------------------------------------------------------------------
1192 static const wxChar
* _fs_windowstyle_labels
[] = {
1193 wxT("wxSIMPLE_BORDER"),
1194 wxT("wxDOUBLE_BORDER"),
1195 wxT("wxSUNKEN_BORDER"),
1196 wxT("wxRAISED_BORDER"),
1198 wxT("wxTRANSPARENT_WINDOW"),
1199 wxT("wxTAB_TRAVERSAL"),
1200 wxT("wxWANTS_CHARS"),
1201 #if wxNO_FULL_REPAINT_ON_RESIZE
1202 wxT("wxNO_FULL_REPAINT_ON_RESIZE"),
1205 wxT("wxALWAYS_SHOW_SB"),
1206 wxT("wxCLIP_CHILDREN"),
1207 #if wxFULL_REPAINT_ON_RESIZE
1208 wxT("wxFULL_REPAINT_ON_RESIZE"),
1210 (const wxChar
*) NULL
// terminator is always needed
1213 static const long _fs_windowstyle_values
[] = {
1219 wxTRANSPARENT_WINDOW
,
1222 #if wxNO_FULL_REPAINT_ON_RESIZE
1223 wxNO_FULL_REPAINT_ON_RESIZE
,
1228 #if wxFULL_REPAINT_ON_RESIZE
1229 wxFULL_REPAINT_ON_RESIZE
1233 static const wxChar
* _fs_framestyle_labels
[] = {
1238 wxT("wxSTAY_ON_TOP"),
1239 wxT("wxSYSTEM_MENU"),
1240 wxT("wxRESIZE_BORDER"),
1241 wxT("wxFRAME_TOOL_WINDOW"),
1242 wxT("wxFRAME_NO_TASKBAR"),
1243 wxT("wxFRAME_FLOAT_ON_PARENT"),
1244 wxT("wxFRAME_SHAPED"),
1245 (const wxChar
*) NULL
1248 static const long _fs_framestyle_values
[] = {
1256 wxFRAME_TOOL_WINDOW
,
1258 wxFRAME_FLOAT_ON_PARENT
,
1262 // -----------------------------------------------------------------------
1264 void FormMain::OnTestXRC(wxCommandEvent
& WXUNUSED(event
))
1266 wxMessageBox(wxT("Sorrt, not yet implemented"));
1269 void FormMain::OnEnableCommonValues(wxCommandEvent
& WXUNUSED(event
))
1271 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1273 prop
->EnableCommonValue();
1275 wxMessageBox(wxT("First select a property"));
1278 void FormMain::PopulateWithStandardItems ()
1280 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1281 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Standard Items"));
1283 // Append is ideal way to add items to wxPropertyGrid.
1284 pg
->Append( new wxPropertyCategory(wxT("Appearance"),wxPG_LABEL
) );
1286 pg
->Append( new wxStringProperty(wxT("Label"),wxPG_LABEL
,GetTitle()) );
1287 pg
->Append( new wxFontProperty(wxT("Font"),wxPG_LABEL
) );
1288 pg
->SetPropertyHelpString ( wxT("Font"), wxT("Editing this will change font used in the property grid.") );
1290 pg
->Append( new wxSystemColourProperty(wxT("Margin Colour"),wxPG_LABEL
,
1291 pg
->GetGrid()->GetMarginColour()) );
1293 pg
->Append( new wxSystemColourProperty(wxT("Cell Colour"),wxPG_LABEL
,
1294 pg
->GetGrid()->GetCellBackgroundColour()) );
1295 pg
->Append( new wxSystemColourProperty(wxT("Cell Text Colour"),wxPG_LABEL
,
1296 pg
->GetGrid()->GetCellTextColour()) );
1297 pg
->Append( new wxSystemColourProperty(wxT("Line Colour"),wxPG_LABEL
,
1298 pg
->GetGrid()->GetLineColour()) );
1299 pg
->Append( new wxFlagsProperty(wxT("Window Styles"),wxPG_LABEL
,
1300 m_combinedFlags
, GetWindowStyle()) );
1302 //pg->SetPropertyAttribute(wxT("Window Styles"),wxPG_BOOL_USE_CHECKBOX,true,wxPG_RECURSE);
1304 pg
->Append( new wxCursorProperty(wxT("Cursor"),wxPG_LABEL
) );
1306 pg
->Append( new wxPropertyCategory(wxT("Position"),wxT("PositionCategory")) );
1307 pg
->SetPropertyHelpString( wxT("PositionCategory"), wxT("Change in items in this category will cause respective changes in frame.") );
1309 // Let's demonstrate 'Units' attribute here
1311 // Note that we use many attribute constants instead of strings here
1312 // (for instance, wxPG_ATTR_MIN, instead of wxT("min")).
1313 // Using constant may reduce binary size.
1315 pg
->Append( new wxIntProperty(wxT("Height"),wxPG_LABEL
,480) );
1316 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MIN
, (long)10 );
1317 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MAX
, (long)2048 );
1318 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1320 // Set value to unspecified so that Hint attribute will be demonstrated
1321 pg
->SetPropertyValueUnspecified("Height");
1322 pg
->SetPropertyAttribute("Height", wxPG_ATTR_HINT
,
1323 "Enter new height for window" );
1325 // Difference between hint and help string is that the hint is shown in
1326 // an empty value cell, while help string is shown either in the
1327 // description text box, as a tool tip, or on the status bar.
1328 pg
->SetPropertyHelpString("Height",
1329 "This property uses attributes \"Units\" and \"Hint\"." );
1331 pg
->Append( new wxIntProperty(wxT("Width"),wxPG_LABEL
,640) );
1332 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MIN
, (long)10 );
1333 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MAX
, (long)2048 );
1334 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1336 pg
->SetPropertyValueUnspecified(wxT("Width"));
1337 pg
->SetPropertyAttribute("Width", wxPG_ATTR_HINT
,
1338 "Enter new width for window" );
1339 pg
->SetPropertyHelpString("Width",
1340 "This property uses attributes \"Units\" and \"Hint\"." );
1342 pg
->Append( new wxIntProperty(wxT("X"),wxPG_LABEL
,10) );
1343 pg
->SetPropertyAttribute(wxT("X"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1344 pg
->SetPropertyHelpString(wxT("X"), wxT("This property uses \"Units\" attribute.") );
1346 pg
->Append( new wxIntProperty(wxT("Y"),wxPG_LABEL
,10) );
1347 pg
->SetPropertyAttribute(wxT("Y"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1348 pg
->SetPropertyHelpString(wxT("Y"), wxT("This property uses \"Units\" attribute.") );
1350 const wxChar
* disabledHelpString
= wxT("This property is simply disabled. Inorder to have label disabled as well, ")
1351 wxT("you need to set wxPG_EX_GREY_LABEL_WHEN_DISABLED using SetExtraStyle.");
1353 pg
->Append( new wxPropertyCategory(wxT("Environment"),wxPG_LABEL
) );
1354 pg
->Append( new wxStringProperty(wxT("Operating System"),wxPG_LABEL
,::wxGetOsDescription()) );
1356 pg
->Append( new wxStringProperty(wxT("User Id"),wxPG_LABEL
,::wxGetUserId()) );
1357 pg
->Append( new wxDirProperty(wxT("User Home"),wxPG_LABEL
,::wxGetUserHome()) );
1358 pg
->Append( new wxStringProperty(wxT("User Name"),wxPG_LABEL
,::wxGetUserName()) );
1360 // Disable some of them
1361 pg
->DisableProperty( wxT("Operating System") );
1362 pg
->DisableProperty( wxT("User Id") );
1363 pg
->DisableProperty( wxT("User Name") );
1365 pg
->SetPropertyHelpString( wxT("Operating System"), disabledHelpString
);
1366 pg
->SetPropertyHelpString( wxT("User Id"), disabledHelpString
);
1367 pg
->SetPropertyHelpString( wxT("User Name"), disabledHelpString
);
1369 pg
->Append( new wxPropertyCategory(wxT("More Examples"),wxPG_LABEL
) );
1371 pg
->Append( new wxFontDataProperty( wxT("FontDataProperty"), wxPG_LABEL
) );
1372 pg
->SetPropertyHelpString( wxT("FontDataProperty"),
1373 wxT("This demonstrates wxFontDataProperty class defined in this sample app. ")
1374 wxT("It is exactly like wxFontProperty from the library, but also has colour sub-property.")
1377 pg
->Append( new wxDirsProperty(wxT("DirsProperty"),wxPG_LABEL
) );
1378 pg
->SetPropertyHelpString( wxT("DirsProperty"),
1379 wxT("This demonstrates wxDirsProperty class defined in this sample app. ")
1380 wxT("It is built with WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR macro, ")
1381 wxT("with custom action (dir dialog popup) defined.")
1384 pg
->Append( new wxAdvImageFileProperty(wxT("AdvImageFileProperty"),wxPG_LABEL
) );
1385 pg
->SetPropertyHelpString( wxT("AdvImageFileProperty"),
1386 wxT("This demonstrates wxAdvImageFileProperty class defined in this sample app. ")
1387 wxT("Button can be used to add new images to the popup list.")
1390 wxArrayDouble arrdbl
;
1397 pg
->Append( new wxArrayDoubleProperty(wxT("ArrayDoubleProperty"),wxPG_LABEL
,arrdbl
) );
1398 //pg->SetPropertyAttribute(wxT("ArrayDoubleProperty"),wxPG_FLOAT_PRECISION,(long)2);
1399 pg
->SetPropertyHelpString( wxT("ArrayDoubleProperty"),
1400 wxT("This demonstrates wxArrayDoubleProperty class defined in this sample app. ")
1401 wxT("It is an example of a custom list editor property.")
1404 pg
->Append( new wxLongStringProperty(wxT("Information"),wxPG_LABEL
,
1405 wxT("Editing properties will have immediate effect on this window, ")
1406 wxT("and vice versa (atleast in most cases, that is).")
1408 pg
->SetPropertyHelpString( wxT("Information"),
1409 wxT("This property is read-only.") );
1411 pg
->SetPropertyReadOnly( wxT("Information"), true );
1414 // Set test information for cells in columns 3 and 4
1415 // (reserve column 2 for displaying units)
1416 wxPropertyGridIterator it
;
1417 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_FOLDER
);
1419 for ( it
= pg
->GetGrid()->GetIterator();
1423 wxPGProperty
* p
= *it
;
1424 if ( p
->IsCategory() )
1427 pg
->SetPropertyCell( p
, 3, wxT("Cell 3"), bmp
);
1428 pg
->SetPropertyCell( p
, 4, wxT("Cell 4"), wxNullBitmap
, *wxWHITE
, *wxBLACK
);
1432 // -----------------------------------------------------------------------
1434 void FormMain::PopulateWithExamples ()
1436 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1437 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Examples"));
1441 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1442 //pg->SetPropertyHelpString ( wxT("Examples"), wxT("This category has example of (almost) every built-in property class.") );
1445 pg
->Append( new wxIntProperty ( wxT("SpinCtrl"), wxPG_LABEL
, 0 ) );
1447 pg
->SetPropertyEditor( wxT("SpinCtrl"), wxPGEditor_SpinCtrl
);
1448 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MIN
, (long)-10 ); // Use constants instead of string
1449 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MAX
, (long)16384 ); // for reduced binary size.
1450 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Step"), (long)2 );
1451 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("MotionSpin"), true );
1452 //pg->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Wrap"), true );
1454 pg
->SetPropertyHelpString( wxT("SpinCtrl"),
1455 wxT("This is regular wxIntProperty, which editor has been ")
1456 wxT("changed to wxPGEditor_SpinCtrl. Note however that ")
1457 wxT("static wxPropertyGrid::RegisterAdditionalEditors() ")
1458 wxT("needs to be called prior to using it."));
1462 // Add bool property
1463 pg
->Append( new wxBoolProperty( wxT("BoolProperty"), wxPG_LABEL
, false ) );
1465 // Add bool property with check box
1466 pg
->Append( new wxBoolProperty( wxT("BoolProperty with CheckBox"), wxPG_LABEL
, false ) );
1467 pg
->SetPropertyAttribute( wxT("BoolProperty with CheckBox"),
1468 wxPG_BOOL_USE_CHECKBOX
,
1471 pg
->SetPropertyHelpString( wxT("BoolProperty with CheckBox"),
1472 wxT("Property attribute wxPG_BOOL_USE_CHECKBOX has been set to true.") );
1474 prop
= pg
->Append( new wxFloatProperty("FloatProperty",
1477 prop
->SetAttribute("Min", -100.12);
1479 // A string property that can be edited in a separate editor dialog.
1480 pg
->Append( new wxLongStringProperty( wxT("LongStringProperty"), wxT("LongStringProp"),
1481 wxT("This is much longer string than the first one. Edit it by clicking the button.") ) );
1483 // A property that edits a wxArrayString.
1484 wxArrayString example_array
;
1485 example_array
.Add( wxT("String 1"));
1486 example_array
.Add( wxT("String 2"));
1487 example_array
.Add( wxT("String 3"));
1488 pg
->Append( new wxArrayStringProperty( wxT("ArrayStringProperty"), wxPG_LABEL
,
1491 // Test adding same category multiple times ( should not actually create a new one )
1492 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1494 // A file selector property. Note that argument between name
1495 // and initial value is wildcard (format same as in wxFileDialog).
1496 prop
= new wxFileProperty( wxT("FileProperty"), wxT("TextFile") );
1499 prop
->SetAttribute(wxPG_FILE_WILDCARD
,wxT("Text Files (*.txt)|*.txt"));
1500 prop
->SetAttribute(wxPG_FILE_DIALOG_TITLE
,wxT("Custom File Dialog Title"));
1501 prop
->SetAttribute(wxPG_FILE_SHOW_FULL_PATH
,false);
1504 prop
->SetAttribute(wxPG_FILE_SHOW_RELATIVE_PATH
,wxT("C:\\Windows"));
1505 pg
->SetPropertyValue(prop
,wxT("C:\\Windows\\System32\\msvcrt71.dll"));
1509 // An image file property. Arguments are just like for FileProperty, but
1510 // wildcard is missing (it is autogenerated from supported image formats).
1511 // If you really need to override it, create property separately, and call
1512 // its SetWildcard method.
1513 pg
->Append( new wxImageFileProperty( wxT("ImageFile"), wxPG_LABEL
) );
1516 pid
= pg
->Append( new wxColourProperty(wxT("ColourProperty"),wxPG_LABEL
,*wxRED
) );
1517 //pg->SetPropertyAttribute(pid,wxPG_COLOUR_ALLOW_CUSTOM,false);
1518 pg
->SetPropertyEditor( wxT("ColourProperty"), wxPGEditor_ComboBox
);
1519 pg
->GetProperty(wxT("ColourProperty"))->SetAutoUnspecified(true);
1520 pg
->SetPropertyHelpString( wxT("ColourProperty"),
1521 wxT("wxPropertyGrid::SetPropertyEditor method has been used to change ")
1522 wxT("editor of this property to wxPGEditor_ComboBox)"));
1525 // This demonstrates using alternative editor for colour property
1526 // to trigger colour dialog directly from button.
1527 pg
->Append( new wxColourProperty(wxT("ColourProperty2"),wxPG_LABEL
,*wxGREEN
) );
1530 // wxEnumProperty does not store strings or even list of strings
1531 // ( so that's why they are static in function ).
1532 static const wxChar
* enum_prop_labels
[] = { wxT("One Item"),
1533 wxT("Another Item"), wxT("One More"), wxT("This Is Last"), NULL
};
1535 // this value array would be optional if values matched string indexes
1536 static long enum_prop_values
[] = { 40, 80, 120, 160 };
1538 // note that the initial value (the last argument) is the actual value,
1539 // not index or anything like that. Thus, our value selects "Another Item".
1541 // 0 before value is number of items. If it is 0, like in our example,
1542 // number of items is calculated, and this requires that the string pointer
1543 // array is terminated with NULL.
1544 pg
->Append( new wxEnumProperty(wxT("EnumProperty"),wxPG_LABEL
,
1545 enum_prop_labels
, enum_prop_values
, 80 ) );
1549 // use basic table from our previous example
1550 // can also set/add wxArrayStrings and wxArrayInts directly.
1551 soc
.Set( enum_prop_labels
, enum_prop_values
);
1554 soc
.Add( wxT("Look, it continues"), 200 );
1555 soc
.Add( wxT("Even More"), 240 );
1556 soc
.Add( wxT("And More"), 280 );
1558 soc
.Add( wxT("True End of the List"), 320 );
1560 // Test custom colours ([] operator of wxPGChoices returns
1561 // references to wxPGChoiceEntry).
1562 soc
[1].SetFgCol(*wxRED
);
1563 soc
[1].SetBgCol(*wxLIGHT_GREY
);
1564 soc
[2].SetFgCol(*wxGREEN
);
1565 soc
[2].SetBgCol(*wxLIGHT_GREY
);
1566 soc
[3].SetFgCol(*wxBLUE
);
1567 soc
[3].SetBgCol(*wxLIGHT_GREY
);
1568 soc
[4].SetBitmap(wxArtProvider::GetBitmap(wxART_FOLDER
));
1570 pg
->Append( new wxEnumProperty(wxT("EnumProperty 2"),
1574 pg
->GetProperty(wxT("EnumProperty 2"))->AddChoice(wxT("Testing Extra"), 360);
1576 // Here we only display the original 'soc' choices
1577 pg
->Append( new wxEnumProperty(wxT("EnumProperty 3"),wxPG_LABEL
,
1580 // Test Hint attribute in EnumProperty
1581 pg
->GetProperty("EnumProperty 3")->SetAttribute("Hint", "Dummy Hint");
1583 pg
->SetPropertyHelpString("EnumProperty 3",
1584 "This property uses \"Hint\" attribute.");
1586 // 'soc' plus one exclusive extra choice "4th only"
1587 pg
->Append( new wxEnumProperty(wxT("EnumProperty 4"),wxPG_LABEL
,
1589 pg
->GetProperty(wxT("EnumProperty 4"))->AddChoice(wxT("4th only"), 360);
1591 pg
->SetPropertyHelpString(wxT("EnumProperty 4"),
1592 wxT("Should have one extra item when compared to EnumProperty 3"));
1594 // Password property example.
1595 pg
->Append( new wxStringProperty(wxT("Password"),wxPG_LABEL
, wxT("password")) );
1596 pg
->SetPropertyAttribute( wxT("Password"), wxPG_STRING_PASSWORD
, true );
1597 pg
->SetPropertyHelpString( wxT("Password"),
1598 wxT("Has attribute wxPG_STRING_PASSWORD set to true") );
1600 // String editor with dir selector button. Uses wxEmptyString as name, which
1601 // is allowed (naturally, in this case property cannot be accessed by name).
1602 pg
->Append( new wxDirProperty( wxT("DirProperty"), wxPG_LABEL
, ::wxGetUserHome()) );
1603 pg
->SetPropertyAttribute( wxT("DirProperty"),
1604 wxPG_DIR_DIALOG_MESSAGE
,
1605 wxT("This is a custom dir dialog message") );
1607 // Add string property - first arg is label, second name, and third initial value
1608 pg
->Append( new wxStringProperty ( wxT("StringProperty"), wxPG_LABEL
) );
1609 pg
->SetPropertyMaxLength( wxT("StringProperty"), 6 );
1610 pg
->SetPropertyHelpString( wxT("StringProperty"),
1611 wxT("Max length of this text has been limited to 6, using wxPropertyGrid::SetPropertyMaxLength.") );
1613 // Set value after limiting so that it will be applied
1614 pg
->SetPropertyValue( wxT("StringProperty"), wxT("some text") );
1617 // Demonstrate "AutoComplete" attribute
1618 pg
->Append( new wxStringProperty( "StringProperty AutoComplete",
1621 wxArrayString autoCompleteStrings
;
1622 autoCompleteStrings
.Add("One choice");
1623 autoCompleteStrings
.Add("Another choice");
1624 autoCompleteStrings
.Add("Another choice, yeah");
1625 autoCompleteStrings
.Add("Yet another choice");
1626 autoCompleteStrings
.Add("Yet another choice, bear with me");
1627 pg
->SetPropertyAttribute( "StringProperty AutoComplete",
1629 autoCompleteStrings
);
1631 pg
->SetPropertyHelpString( "StringProperty AutoComplete",
1632 "AutoComplete attribute has been set for this property "
1633 "(try writing something beginning with 'a', 'o' or 'y').");
1635 // Add string property with arbitrarily wide bitmap in front of it. We
1636 // intentionally lower-than-typical row height here so that the ugly
1637 // scaling code wont't be run.
1638 pg
->Append( new wxStringProperty( wxT("StringPropertyWithBitmap"),
1640 wxT("Test Text")) );
1641 wxBitmap
myTestBitmap(60, 15, 32);
1643 mdc
.SelectObject(myTestBitmap
);
1645 mdc
.SetPen(*wxBLACK
);
1646 mdc
.DrawLine(0, 0, 60, 15);
1647 mdc
.SelectObject(wxNullBitmap
);
1648 pg
->SetPropertyImage( wxT("StringPropertyWithBitmap"), myTestBitmap
);
1651 // this value array would be optional if values matched string indexes
1652 //long flags_prop_values[] = { wxICONIZE, wxCAPTION, wxMINIMIZE_BOX, wxMAXIMIZE_BOX };
1654 //pg->Append( wxFlagsProperty(wxT("Example of FlagsProperty"),wxT("FlagsProp"),
1655 // flags_prop_labels, flags_prop_values, 0, GetWindowStyle() ) );
1658 // Multi choice dialog.
1659 wxArrayString tchoices
;
1660 tchoices
.Add(wxT("Cabbage"));
1661 tchoices
.Add(wxT("Carrot"));
1662 tchoices
.Add(wxT("Onion"));
1663 tchoices
.Add(wxT("Potato"));
1664 tchoices
.Add(wxT("Strawberry"));
1666 wxArrayString tchoicesValues
;
1667 tchoicesValues
.Add(wxT("Carrot"));
1668 tchoicesValues
.Add(wxT("Potato"));
1670 pg
->Append( new wxEnumProperty(wxT("EnumProperty X"),wxPG_LABEL
, tchoices
) );
1672 pg
->Append( new wxMultiChoiceProperty( wxT("MultiChoiceProperty"), wxPG_LABEL
,
1673 tchoices
, tchoicesValues
) );
1674 pg
->SetPropertyAttribute( wxT("MultiChoiceProperty"), wxT("UserStringMode"), true );
1676 pg
->Append( new wxSizeProperty( wxT("SizeProperty"), wxT("Size"), GetSize() ) );
1677 pg
->Append( new wxPointProperty( wxT("PointProperty"), wxT("Position"), GetPosition() ) );
1680 pg
->Append( new wxUIntProperty( wxT("UIntProperty"), wxPG_LABEL
, wxULongLong(wxULL(0xFEEEFEEEFEEE))));
1681 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX
, wxPG_PREFIX_NONE
);
1682 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE
, wxPG_BASE_HEX
);
1683 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX, wxPG_PREFIX_NONE );
1684 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE, wxPG_BASE_OCT );
1687 // wxEditEnumProperty
1689 eech
.Add(wxT("Choice 1"));
1690 eech
.Add(wxT("Choice 2"));
1691 eech
.Add(wxT("Choice 3"));
1692 pg
->Append( new wxEditEnumProperty("EditEnumProperty",
1695 "Choice not in the list") );
1697 // Test Hint attribute in EditEnumProperty
1698 pg
->GetProperty("EditEnumProperty")->SetAttribute("Hint", "Dummy Hint");
1701 //wxTextValidator validator1(wxFILTER_NUMERIC,&v_);
1702 //pg->SetPropertyValidator( wxT("EditEnumProperty"), validator1 );
1706 // wxDateTimeProperty
1707 pg
->Append( new wxDateProperty(wxT("DateProperty"), wxPG_LABEL
, wxDateTime::Now() ) );
1709 #if wxUSE_DATEPICKCTRL
1710 pg
->SetPropertyAttribute( wxT("DateProperty"), wxPG_DATE_PICKER_STYLE
,
1711 (long)(wxDP_DROPDOWN
|
1715 pg
->SetPropertyHelpString( wxT("DateProperty"),
1716 wxT("Attribute wxPG_DATE_PICKER_STYLE has been set to (long)")
1717 wxT("(wxDP_DROPDOWN | wxDP_SHOWCENTURY | wxDP_ALLOWNONE).") );
1723 // Add Triangle properties as both wxTriangleProperty and
1724 // a generic parent property (using wxStringProperty).
1726 wxPGProperty
* topId
= pg
->Append( new wxStringProperty(wxT("3D Object"), wxPG_LABEL
, wxT("<composed>")) );
1728 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 1"), wxT("Triangle 1"), wxT("<composed>")) );
1729 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1730 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1731 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1733 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 2"), wxT("Triangle 2") ) );
1735 pg
->SetPropertyHelpString( wxT("3D Object"),
1736 wxT("3D Object is wxStringProperty with value \"<composed>\". Two of its children are similar wxStringProperties with ")
1737 wxT("three wxVectorProperty children, and other two are custom wxTriangleProperties.") );
1739 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 3"), wxT("Triangle 3"), wxT("<composed>")) );
1740 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1741 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1742 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1744 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 4"), wxT("Triangle 4") ) );
1747 // This snippet is a doc sample test
1749 wxPGProperty
* carProp
= pg
->Append(new wxStringProperty(wxT("Car"),
1751 wxT("<composed>")));
1753 pg
->AppendIn(carProp
, new wxStringProperty(wxT("Model"),
1755 wxT("Lamborghini Diablo SV")));
1757 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Engine Size (cc)"),
1761 wxPGProperty
* speedsProp
= pg
->AppendIn(carProp
,
1762 new wxStringProperty(wxT("Speeds"),
1764 wxT("<composed>")));
1766 pg
->AppendIn( speedsProp
, new wxIntProperty(wxT("Max. Speed (mph)"),
1768 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("0-100 mph (sec)"),
1770 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("1/4 mile (sec)"),
1773 // This is how child property can be referred to by name
1774 pg
->SetPropertyValue( wxT("Car.Speeds.Max. Speed (mph)"), 300 );
1776 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Price ($)"),
1780 pg
->AppendIn(carProp
, new wxBoolProperty(wxT("Convertible"),
1784 // Displayed value of "Car" property is now very close to this:
1785 // "Lamborghini Diablo SV; 5707 [300; 3.9; 8.6] 300000"
1788 // Test wxSampleMultiButtonEditor
1789 pg
->Append( new wxLongStringProperty(wxT("MultipleButtons"), wxPG_LABEL
) );
1790 pg
->SetPropertyEditor(wxT("MultipleButtons"), m_pSampleMultiButtonEditor
);
1792 // Test SingleChoiceProperty
1793 pg
->Append( new SingleChoiceProperty(wxT("SingleChoiceProperty")) );
1797 // Test adding variable height bitmaps in wxPGChoices
1800 bc
.Add(wxT("Wee"), wxBitmap(16, 16));
1801 bc
.Add(wxT("Not so wee"), wxBitmap(32, 32));
1802 bc
.Add(wxT("Friggin' huge"), wxBitmap(64, 64));
1804 pg
->Append( new wxEnumProperty(wxT("Variable Height Bitmaps"),
1810 // Test how non-editable composite strings appear
1811 pid
= new wxStringProperty(wxT("wxWidgets Traits"), wxPG_LABEL
, wxT("<composed>"));
1812 pg
->SetPropertyReadOnly(pid
);
1815 // For testing purposes, combine two methods of adding children
1818 pid
->AppendChild( new wxStringProperty(wxT("Latest Release"),
1821 pid
->AppendChild( new wxBoolProperty(wxT("Win API"),
1827 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1828 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Cocoa"), wxPG_LABEL
, true) );
1829 pg
->AppendIn(pid
, new wxBoolProperty(wxT("BeOS"), wxPG_LABEL
, false) );
1830 pg
->AppendIn(pid
, new wxStringProperty(wxT("SVN Trunk Version"), wxPG_LABEL
, wxT("2.9.0")) );
1831 pg
->AppendIn(pid
, new wxBoolProperty(wxT("GTK+"), wxPG_LABEL
, true) );
1832 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Sky OS"), wxPG_LABEL
, false) );
1833 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1835 AddTestProperties(pg
);
1838 // -----------------------------------------------------------------------
1840 void FormMain::PopulateWithLibraryConfig ()
1842 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1843 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("wxWidgets Library Config"));
1845 // Set custom column proportions (here in the sample app we need
1846 // to check if the grid has wxPG_SPLITTER_AUTO_CENTER style. You usually
1847 // need not to do it in your application).
1848 if ( pgman
->HasFlag(wxPG_SPLITTER_AUTO_CENTER
) )
1850 pg
->SetColumnProportion(0, 3);
1851 pg
->SetColumnProportion(1, 1);
1856 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_REPORT_VIEW
);
1860 wxFont italicFont
= pgman
->GetGrid()->GetCaptionFont();
1861 italicFont
.SetStyle(wxFONTSTYLE_ITALIC
);
1863 wxString italicFontHelp
= "Font of this property's wxPGCell has "
1864 "been modified. Obtain property's cell "
1865 "with wxPGProperty::"
1866 "GetOrCreateCell(column).";
1868 #define ADD_WX_LIB_CONF_GROUP(A) \
1869 cat = pg->AppendIn( pid, new wxPropertyCategory(A) ); \
1870 pg->SetPropertyCell( cat, 0, wxPG_LABEL, bmp ); \
1871 cat->GetCell(0).SetFont(italicFont); \
1872 cat->SetHelpString(italicFontHelp);
1874 #define ADD_WX_LIB_CONF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)((A>0)?true:false)));
1875 #define ADD_WX_LIB_CONF_NODEF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)false) ); \
1876 pg->DisableProperty(wxT(#A));
1878 pid
= pg
->Append( new wxPropertyCategory( wxT("wxWidgets Library Configuration") ) );
1879 pg
->SetPropertyCell( pid
, 0, wxPG_LABEL
, bmp
);
1881 // Both of following lines would set a label for the second column
1882 pg
->SetPropertyCell( pid
, 1, "Is Enabled" );
1883 pid
->SetValue("Is Enabled");
1885 ADD_WX_LIB_CONF_GROUP(wxT("Global Settings"))
1886 ADD_WX_LIB_CONF( wxUSE_GUI
)
1888 ADD_WX_LIB_CONF_GROUP(wxT("Compatibility Settings"))
1889 #if defined(WXWIN_COMPATIBILITY_2_2)
1890 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_2
)
1892 #if defined(WXWIN_COMPATIBILITY_2_4)
1893 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_4
)
1895 #if defined(WXWIN_COMPATIBILITY_2_6)
1896 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_6
)
1898 #if defined(WXWIN_COMPATIBILITY_2_8)
1899 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_8
)
1901 #ifdef wxFONT_SIZE_COMPATIBILITY
1902 ADD_WX_LIB_CONF( wxFONT_SIZE_COMPATIBILITY
)
1904 ADD_WX_LIB_CONF_NODEF ( wxFONT_SIZE_COMPATIBILITY
)
1906 #ifdef wxDIALOG_UNIT_COMPATIBILITY
1907 ADD_WX_LIB_CONF( wxDIALOG_UNIT_COMPATIBILITY
)
1909 ADD_WX_LIB_CONF_NODEF ( wxDIALOG_UNIT_COMPATIBILITY
)
1912 ADD_WX_LIB_CONF_GROUP(wxT("Debugging Settings"))
1913 ADD_WX_LIB_CONF( wxUSE_DEBUG_CONTEXT
)
1914 ADD_WX_LIB_CONF( wxUSE_MEMORY_TRACING
)
1915 ADD_WX_LIB_CONF( wxUSE_GLOBAL_MEMORY_OPERATORS
)
1916 ADD_WX_LIB_CONF( wxUSE_DEBUG_NEW_ALWAYS
)
1917 ADD_WX_LIB_CONF( wxUSE_ON_FATAL_EXCEPTION
)
1919 ADD_WX_LIB_CONF_GROUP(wxT("Unicode Support"))
1920 ADD_WX_LIB_CONF( wxUSE_UNICODE
)
1921 ADD_WX_LIB_CONF( wxUSE_UNICODE_MSLU
)
1923 ADD_WX_LIB_CONF_GROUP(wxT("Global Features"))
1924 ADD_WX_LIB_CONF( wxUSE_EXCEPTIONS
)
1925 ADD_WX_LIB_CONF( wxUSE_EXTENDED_RTTI
)
1926 ADD_WX_LIB_CONF( wxUSE_STL
)
1927 ADD_WX_LIB_CONF( wxUSE_LOG
)
1928 ADD_WX_LIB_CONF( wxUSE_LOGWINDOW
)
1929 ADD_WX_LIB_CONF( wxUSE_LOGGUI
)
1930 ADD_WX_LIB_CONF( wxUSE_LOG_DIALOG
)
1931 ADD_WX_LIB_CONF( wxUSE_CMDLINE_PARSER
)
1932 ADD_WX_LIB_CONF( wxUSE_THREADS
)
1933 ADD_WX_LIB_CONF( wxUSE_STREAMS
)
1934 ADD_WX_LIB_CONF( wxUSE_STD_IOSTREAM
)
1936 ADD_WX_LIB_CONF_GROUP(wxT("Non-GUI Features"))
1937 ADD_WX_LIB_CONF( wxUSE_LONGLONG
)
1938 ADD_WX_LIB_CONF( wxUSE_FILE
)
1939 ADD_WX_LIB_CONF( wxUSE_FFILE
)
1940 ADD_WX_LIB_CONF( wxUSE_FSVOLUME
)
1941 ADD_WX_LIB_CONF( wxUSE_TEXTBUFFER
)
1942 ADD_WX_LIB_CONF( wxUSE_TEXTFILE
)
1943 ADD_WX_LIB_CONF( wxUSE_INTL
)
1944 ADD_WX_LIB_CONF( wxUSE_DATETIME
)
1945 ADD_WX_LIB_CONF( wxUSE_TIMER
)
1946 ADD_WX_LIB_CONF( wxUSE_STOPWATCH
)
1947 ADD_WX_LIB_CONF( wxUSE_CONFIG
)
1948 #ifdef wxUSE_CONFIG_NATIVE
1949 ADD_WX_LIB_CONF( wxUSE_CONFIG_NATIVE
)
1951 ADD_WX_LIB_CONF_NODEF ( wxUSE_CONFIG_NATIVE
)
1953 ADD_WX_LIB_CONF( wxUSE_DIALUP_MANAGER
)
1954 ADD_WX_LIB_CONF( wxUSE_DYNLIB_CLASS
)
1955 ADD_WX_LIB_CONF( wxUSE_DYNAMIC_LOADER
)
1956 ADD_WX_LIB_CONF( wxUSE_SOCKETS
)
1957 ADD_WX_LIB_CONF( wxUSE_FILESYSTEM
)
1958 ADD_WX_LIB_CONF( wxUSE_FS_ZIP
)
1959 ADD_WX_LIB_CONF( wxUSE_FS_INET
)
1960 ADD_WX_LIB_CONF( wxUSE_ZIPSTREAM
)
1961 ADD_WX_LIB_CONF( wxUSE_ZLIB
)
1962 ADD_WX_LIB_CONF( wxUSE_APPLE_IEEE
)
1963 ADD_WX_LIB_CONF( wxUSE_JOYSTICK
)
1964 ADD_WX_LIB_CONF( wxUSE_FONTMAP
)
1965 ADD_WX_LIB_CONF( wxUSE_MIMETYPE
)
1966 ADD_WX_LIB_CONF( wxUSE_PROTOCOL
)
1967 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FILE
)
1968 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FTP
)
1969 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_HTTP
)
1970 ADD_WX_LIB_CONF( wxUSE_URL
)
1971 #ifdef wxUSE_URL_NATIVE
1972 ADD_WX_LIB_CONF( wxUSE_URL_NATIVE
)
1974 ADD_WX_LIB_CONF_NODEF ( wxUSE_URL_NATIVE
)
1976 ADD_WX_LIB_CONF( wxUSE_REGEX
)
1977 ADD_WX_LIB_CONF( wxUSE_SYSTEM_OPTIONS
)
1978 ADD_WX_LIB_CONF( wxUSE_SOUND
)
1980 ADD_WX_LIB_CONF( wxUSE_XRC
)
1982 ADD_WX_LIB_CONF_NODEF ( wxUSE_XRC
)
1984 ADD_WX_LIB_CONF( wxUSE_XML
)
1986 // Set them to use check box.
1987 pg
->SetPropertyAttribute(pid
,wxPG_BOOL_USE_CHECKBOX
,true,wxPG_RECURSE
);
1992 // Handle events of the third page here.
1993 class wxMyPropertyGridPage
: public wxPropertyGridPage
1997 // Return false here to indicate unhandled events should be
1998 // propagated to manager's parent, as normal.
1999 virtual bool IsHandlingAllEvents() const { return false; }
2003 virtual wxPGProperty
* DoInsert( wxPGProperty
* parent
,
2005 wxPGProperty
* property
)
2007 return wxPropertyGridPage::DoInsert(parent
,index
,property
);
2010 void OnPropertySelect( wxPropertyGridEvent
& event
);
2011 void OnPropertyChanging( wxPropertyGridEvent
& event
);
2012 void OnPropertyChange( wxPropertyGridEvent
& event
);
2013 void OnPageChange( wxPropertyGridEvent
& event
);
2016 DECLARE_EVENT_TABLE()
2020 BEGIN_EVENT_TABLE(wxMyPropertyGridPage
, wxPropertyGridPage
)
2021 EVT_PG_SELECTED( wxID_ANY
, wxMyPropertyGridPage::OnPropertySelect
)
2022 EVT_PG_CHANGING( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChanging
)
2023 EVT_PG_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChange
)
2024 EVT_PG_PAGE_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPageChange
)
2028 void wxMyPropertyGridPage::OnPropertySelect( wxPropertyGridEvent
& WXUNUSED(event
) )
2030 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertySelect()"));
2033 void wxMyPropertyGridPage::OnPropertyChange( wxPropertyGridEvent
& event
)
2035 wxPGProperty
* p
= event
.GetProperty();
2036 wxLogVerbose(wxT("wxMyPropertyGridPage::OnPropertyChange('%s', to value '%s')"),
2037 p
->GetName().c_str(),
2038 p
->GetDisplayedString().c_str());
2041 void wxMyPropertyGridPage::OnPropertyChanging( wxPropertyGridEvent
& event
)
2043 wxPGProperty
* p
= event
.GetProperty();
2044 wxLogVerbose(wxT("wxMyPropertyGridPage::OnPropertyChanging('%s', to value '%s')"),
2045 p
->GetName().c_str(),
2046 event
.GetValue().GetString().c_str());
2049 void wxMyPropertyGridPage::OnPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
2051 wxLogDebug(wxT("wxMyPropertyGridPage::OnPageChange()"));
2055 class wxPGKeyHandler
: public wxEvtHandler
2059 void OnKeyEvent( wxKeyEvent
& event
)
2061 wxMessageBox(wxString::Format(wxT("%i"),event
.GetKeyCode()));
2065 DECLARE_EVENT_TABLE()
2068 BEGIN_EVENT_TABLE(wxPGKeyHandler
,wxEvtHandler
)
2069 EVT_KEY_DOWN( wxPGKeyHandler::OnKeyEvent
)
2073 // -----------------------------------------------------------------------
2075 void FormMain::InitPanel()
2080 wxWindow
* panel
= new wxPanel(this, wxID_ANY
,
2081 wxPoint(0, 0), wxSize(400, 400),
2086 wxBoxSizer
* topSizer
= new wxBoxSizer ( wxVERTICAL
);
2088 m_topSizer
= topSizer
;
2091 void FormMain::FinalizePanel( bool wasCreated
)
2093 // Button for tab traversal testing
2094 m_topSizer
->Add( new wxButton(m_panel
, wxID_ANY
,
2095 wxS("Should be able to move here with Tab")),
2098 m_panel
->SetSizer( m_topSizer
);
2099 m_topSizer
->SetSizeHints( m_panel
);
2101 wxBoxSizer
* panelSizer
= new wxBoxSizer( wxHORIZONTAL
);
2102 panelSizer
->Add( m_panel
, 1, wxEXPAND
|wxFIXED_MINSIZE
);
2104 SetSizer( panelSizer
);
2105 panelSizer
->SetSizeHints( this );
2108 FinalizeFramePosition();
2111 void FormMain::PopulateGrid()
2113 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
2114 pgman
->AddPage(wxT("Standard Items"));
2116 PopulateWithStandardItems();
2118 pgman
->AddPage(wxT("wxWidgets Library Config"));
2120 PopulateWithLibraryConfig();
2122 wxPropertyGridPage
* myPage
= new wxMyPropertyGridPage();
2123 myPage
->Append( new wxIntProperty ( wxT("IntProperty"), wxPG_LABEL
, 12345678 ) );
2125 // Use wxMyPropertyGridPage (see above) to test the
2126 // custom wxPropertyGridPage feature.
2127 pgman
->AddPage(wxT("Examples"),wxNullBitmap
,myPage
);
2129 PopulateWithExamples();
2132 void FormMain::CreateGrid( int style
, int extraStyle
)
2135 // This function (re)creates the property grid in our sample
2139 style
= // default style
2140 wxPG_BOLD_MODIFIED
|
2141 wxPG_SPLITTER_AUTO_CENTER
|
2143 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2145 //wxPG_HIDE_CATEGORIES |
2146 //wxPG_LIMITED_EDITING |
2150 if ( extraStyle
== -1 )
2151 // default extra style
2152 extraStyle
= wxPG_EX_MODE_BUTTONS
|
2153 wxPG_EX_MULTIPLE_SELECTION
;
2154 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2155 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2156 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2157 //| wxPG_EX_HELP_AS_TOOLTIPS
2159 bool wasCreated
= m_panel
? false : true;
2164 // This shows how to combine two static choice descriptors
2165 m_combinedFlags
.Add( _fs_windowstyle_labels
, _fs_windowstyle_values
);
2166 m_combinedFlags
.Add( _fs_framestyle_labels
, _fs_framestyle_values
);
2168 wxPropertyGridManager
* pgman
= m_pPropGridManager
=
2169 new wxPropertyGridManager(m_panel
,
2170 // Don't change this into wxID_ANY in the sample, or the
2171 // event handling will obviously be broken.
2174 wxSize(100, 100), // FIXME: wxDefaultSize gives assertion in propgrid.
2175 // But calling SetInitialSize in manager changes the code
2176 // order to the grid gets created immediately, before SetExtraStyle
2180 m_propGrid
= pgman
->GetGrid();
2182 pgman
->SetExtraStyle(extraStyle
);
2184 // This is the default validation failure behavior
2185 m_pPropGridManager
->SetValidationFailureBehavior( wxPG_VFB_MARK_CELL
|
2186 wxPG_VFB_SHOW_MESSAGEBOX
);
2188 m_pPropGridManager
->GetGrid()->SetVerticalSpacing( 2 );
2191 // Set somewhat different unspecified value appearance
2193 cell
.SetText("Unspecified");
2194 cell
.SetFgCol(*wxLIGHT_GREY
);
2195 m_propGrid
->SetUnspecifiedValueAppearance(cell
);
2199 // Change some attributes in all properties
2200 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING,true);
2201 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_CHECKBOX,true);
2203 //m_pPropGridManager->SetSplitterLeft(true);
2204 //m_pPropGridManager->SetSplitterPosition(137);
2207 // This would setup event handling without event table entries
2208 Connect(m_pPropGridManager->GetId(), wxEVT_PG_SELECTED,
2209 wxPropertyGridEventHandler(FormMain::OnPropertyGridSelect) );
2210 Connect(m_pPropGridManager->GetId(), wxEVT_PG_CHANGED,
2211 wxPropertyGridEventHandler(FormMain::OnPropertyGridChange) );
2214 m_topSizer
->Add( m_pPropGridManager
, 1, wxEXPAND
);
2216 FinalizePanel(wasCreated
);
2219 // -----------------------------------------------------------------------
2221 FormMain::FormMain(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
) :
2222 wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
,
2223 (wxMINIMIZE_BOX
|wxMAXIMIZE_BOX
|wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|
2224 wxTAB_TRAVERSAL
|wxCLOSE_BOX
|wxNO_FULL_REPAINT_ON_RESIZE
) )
2226 SetIcon(wxICON(sample
));
2232 // we need this in order to allow the about menu relocation, since ABOUT is
2233 // not the default id of the about menu
2234 wxApp::s_macAboutMenuItemId
= ID_ABOUT
;
2238 // This is here to really test the wxImageFileProperty.
2239 wxInitAllImageHandlers();
2242 // Register all editors (SpinCtrl etc.)
2243 m_pPropGridManager
->RegisterAdditionalEditors();
2245 // Register our sample custom editors
2246 m_pSampleMultiButtonEditor
=
2247 wxPropertyGrid::RegisterEditorClass(new wxSampleMultiButtonEditor());
2249 CreateGrid( // style
2250 wxPG_BOLD_MODIFIED
|
2251 wxPG_SPLITTER_AUTO_CENTER
|
2253 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2255 //wxPG_HIDE_CATEGORIES |
2256 //wxPG_LIMITED_EDITING |
2260 wxPG_EX_MODE_BUTTONS
|
2261 wxPG_EX_MULTIPLE_SELECTION
2262 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2263 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2264 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2265 //| wxPG_EX_HELP_AS_TOOLTIPS
2270 wxMenu
*menuFile
= new wxMenu(wxEmptyString
, wxMENU_TEAROFF
);
2271 wxMenu
*menuTry
= new wxMenu
;
2272 wxMenu
*menuTools1
= new wxMenu
;
2273 wxMenu
*menuTools2
= new wxMenu
;
2274 wxMenu
*menuHelp
= new wxMenu
;
2276 menuHelp
->Append(ID_ABOUT
, wxT("&About..."), wxT("Show about dialog") );
2278 menuTools1
->Append(ID_APPENDPROP
, wxT("Append New Property") );
2279 menuTools1
->Append(ID_APPENDCAT
, wxT("Append New Category\tCtrl-S") );
2280 menuTools1
->AppendSeparator();
2281 menuTools1
->Append(ID_INSERTPROP
, wxT("Insert New Property\tCtrl-Q") );
2282 menuTools1
->Append(ID_INSERTCAT
, wxT("Insert New Category\tCtrl-W") );
2283 menuTools1
->AppendSeparator();
2284 menuTools1
->Append(ID_DELETE
, wxT("Delete Selected") );
2285 menuTools1
->Append(ID_DELETER
, wxT("Delete Random") );
2286 menuTools1
->Append(ID_DELETEALL
, wxT("Delete All") );
2287 menuTools1
->AppendSeparator();
2288 menuTools1
->Append(ID_SETBGCOLOUR
, wxT("Set Bg Colour") );
2289 menuTools1
->Append(ID_SETBGCOLOURRECUR
, wxT("Set Bg Colour (Recursively)") );
2290 menuTools1
->Append(ID_UNSPECIFY
, "Set Value to Unspecified");
2291 menuTools1
->AppendSeparator();
2292 m_itemEnable
= menuTools1
->Append(ID_ENABLE
, wxT("Enable"),
2293 wxT("Toggles item's enabled state.") );
2294 m_itemEnable
->Enable( FALSE
);
2295 menuTools1
->Append(ID_HIDE
, "Hide", "Hides a property" );
2296 menuTools1
->Append(ID_SETREADONLY
, "Set as Read-Only",
2297 "Set property as read-only" );
2299 menuTools2
->Append(ID_ITERATE1
, wxT("Iterate Over Properties") );
2300 menuTools2
->Append(ID_ITERATE2
, wxT("Iterate Over Visible Items") );
2301 menuTools2
->Append(ID_ITERATE3
, wxT("Reverse Iterate Over Properties") );
2302 menuTools2
->Append(ID_ITERATE4
, wxT("Iterate Over Categories") );
2303 menuTools2
->AppendSeparator();
2304 menuTools2
->Append(ID_ONEXTENDEDKEYNAV
, "Extend Keyboard Navigation",
2305 "This will set Enter to navigate to next property, "
2306 "and allows arrow keys to navigate even when in "
2308 menuTools2
->AppendSeparator();
2309 menuTools2
->Append(ID_SETPROPERTYVALUE
, wxT("Set Property Value") );
2310 menuTools2
->Append(ID_CLEARMODIF
, wxT("Clear Modified Status"), wxT("Clears wxPG_MODIFIED flag from all properties.") );
2311 menuTools2
->AppendSeparator();
2312 m_itemFreeze
= menuTools2
->AppendCheckItem(ID_FREEZE
, wxT("Freeze"),
2313 wxT("Disables painting, auto-sorting, etc.") );
2314 menuTools2
->AppendSeparator();
2315 menuTools2
->Append(ID_DUMPLIST
, wxT("Display Values as wxVariant List"), wxT("Tests GetAllValues method and wxVariant conversion.") );
2316 menuTools2
->AppendSeparator();
2317 menuTools2
->Append(ID_GETVALUES
, wxT("Get Property Values"), wxT("Stores all property values.") );
2318 menuTools2
->Append(ID_SETVALUES
, wxT("Set Property Values"), wxT("Reverts property values to those last stored.") );
2319 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).") );
2320 menuTools2
->AppendSeparator();
2321 menuTools2
->Append(ID_SAVESTATE
, wxT("Save Editable State") );
2322 menuTools2
->Append(ID_RESTORESTATE
, wxT("Restore Editable State") );
2323 menuTools2
->AppendSeparator();
2324 menuTools2
->Append(ID_ENABLECOMMONVALUES
, wxT("Enable Common Value"),
2325 wxT("Enable values that are common to all properties, for selected property."));
2326 menuTools2
->AppendSeparator();
2327 menuTools2
->Append(ID_COLLAPSE
, wxT("Collapse Selected") );
2328 menuTools2
->Append(ID_COLLAPSEALL
, wxT("Collapse All") );
2329 menuTools2
->AppendSeparator();
2330 menuTools2
->Append(ID_INSERTPAGE
, wxT("Add Page") );
2331 menuTools2
->Append(ID_REMOVEPAGE
, wxT("Remove Page") );
2332 menuTools2
->AppendSeparator();
2333 menuTools2
->Append(ID_FITCOLUMNS
, wxT("Fit Columns") );
2334 m_itemVetoDragging
=
2335 menuTools2
->AppendCheckItem(ID_VETOCOLDRAG
,
2336 "Veto Column Dragging");
2337 menuTools2
->AppendSeparator();
2338 menuTools2
->Append(ID_CHANGEFLAGSITEMS
, wxT("Change Children of FlagsProp") );
2339 menuTools2
->AppendSeparator();
2340 menuTools2
->Append(ID_TESTINSERTCHOICE
, wxT("Test InsertPropertyChoice") );
2341 menuTools2
->Append(ID_TESTDELETECHOICE
, wxT("Test DeletePropertyChoice") );
2342 menuTools2
->AppendSeparator();
2343 menuTools2
->Append(ID_SETSPINCTRLEDITOR
, wxT("Use SpinCtrl Editor") );
2344 menuTools2
->Append(ID_TESTREPLACE
, wxT("Test ReplaceProperty") );
2346 menuTry
->Append(ID_SELECTSTYLE
, wxT("Set Window Style"),
2347 wxT("Select window style flags used by the grid."));
2348 menuTry
->Append(ID_ENABLELABELEDITING
, "Enable label editing",
2349 "This calls wxPropertyGrid::MakeColumnEditable(0)");
2350 menuTry
->AppendCheckItem(ID_SHOWHEADER
,
2352 "This calls wxPropertyGridManager::ShowHeader()");
2353 menuTry
->AppendSeparator();
2354 menuTry
->AppendRadioItem( ID_COLOURSCHEME1
, wxT("Standard Colour Scheme") );
2355 menuTry
->AppendRadioItem( ID_COLOURSCHEME2
, wxT("White Colour Scheme") );
2356 menuTry
->AppendRadioItem( ID_COLOURSCHEME3
, wxT(".NET Colour Scheme") );
2357 menuTry
->AppendRadioItem( ID_COLOURSCHEME4
, wxT("Cream Colour Scheme") );
2358 menuTry
->AppendSeparator();
2359 m_itemCatColours
= menuTry
->AppendCheckItem(ID_CATCOLOURS
, wxT("Category Specific Colours"),
2360 wxT("Switches between category-specific cell colours and default scheme (actually done using SetPropertyTextColour and SetPropertyBackgroundColour).") );
2361 menuTry
->AppendSeparator();
2362 menuTry
->AppendCheckItem(ID_STATICLAYOUT
, wxT("Static Layout"),
2363 wxT("Switches between user-modifiedable and static layouts.") );
2364 menuTry
->Append(ID_SETCOLUMNS
, wxT("Set Number of Columns") );
2365 menuTry
->AppendSeparator();
2366 menuTry
->Append(ID_TESTXRC
, wxT("Display XRC sample") );
2367 menuTry
->AppendSeparator();
2368 menuTry
->Append(ID_RUNTESTFULL
, wxT("Run Tests (full)") );
2369 menuTry
->Append(ID_RUNTESTPARTIAL
, wxT("Run Tests (fast)") );
2371 menuFile
->Append(ID_RUNMINIMAL
, wxT("Run Minimal Sample") );
2372 menuFile
->AppendSeparator();
2373 menuFile
->Append(ID_QUIT
, wxT("E&xit\tAlt-X"), wxT("Quit this program") );
2375 // Now append the freshly created menu to the menu bar...
2376 wxMenuBar
*menuBar
= new wxMenuBar();
2377 menuBar
->Append(menuFile
, wxT("&File") );
2378 menuBar
->Append(menuTry
, wxT("&Try These!") );
2379 menuBar
->Append(menuTools1
, wxT("&Basic") );
2380 menuBar
->Append(menuTools2
, wxT("&Advanced") );
2381 menuBar
->Append(menuHelp
, wxT("&Help") );
2383 // ... and attach this menu bar to the frame
2384 SetMenuBar(menuBar
);
2387 // create a status bar
2389 SetStatusText(wxEmptyString
);
2390 #endif // wxUSE_STATUSBAR
2392 FinalizeFramePosition();
2395 // Create log window
2396 m_logWindow
= new wxLogWindow(this, "Log Messages", false);
2397 m_logWindow
->GetFrame()->Move(GetPosition().x
+ GetSize().x
+ 10,
2399 m_logWindow
->Show();
2403 void FormMain::FinalizeFramePosition()
2405 wxSize
frameSize((wxSystemSettings::GetMetric(wxSYS_SCREEN_X
)/10)*4,
2406 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
)/10)*8);
2408 if ( frameSize
.x
> 500 )
2417 // Normally, wxPropertyGrid does not check whether item with identical
2418 // label already exists. However, since in this sample we use labels for
2419 // identifying properties, we have to be sure not to generate identical
2422 void GenerateUniquePropertyLabel( wxPropertyGridManager
* pg
, wxString
& baselabel
)
2427 if ( pg
->GetPropertyByLabel( baselabel
) )
2432 newlabel
.Printf(wxT("%s%i"),baselabel
.c_str(),count
);
2433 if ( !pg
->GetPropertyByLabel( newlabel
) ) break;
2439 baselabel
= newlabel
;
2443 // -----------------------------------------------------------------------
2445 void FormMain::OnInsertPropClick( wxCommandEvent
& WXUNUSED(event
) )
2449 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2451 wxMessageBox(wxT("No items to relate - first add some with Append."));
2455 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2458 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2461 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2463 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2465 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2466 id
->GetIndexInParent(),
2467 new wxStringProperty(propLabel
) );
2471 // -----------------------------------------------------------------------
2473 void FormMain::OnAppendPropClick( wxCommandEvent
& WXUNUSED(event
) )
2477 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2479 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2481 m_pPropGridManager
->Append( new wxStringProperty(propLabel
) );
2483 m_pPropGridManager
->Refresh();
2486 // -----------------------------------------------------------------------
2488 void FormMain::OnClearClick( wxCommandEvent
& WXUNUSED(event
) )
2490 m_pPropGridManager
->GetGrid()->Clear();
2493 // -----------------------------------------------------------------------
2495 void FormMain::OnAppendCatClick( wxCommandEvent
& WXUNUSED(event
) )
2499 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2501 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2503 m_pPropGridManager
->Append( new wxPropertyCategory (propLabel
) );
2505 m_pPropGridManager
->Refresh();
2509 // -----------------------------------------------------------------------
2511 void FormMain::OnInsertCatClick( wxCommandEvent
& WXUNUSED(event
) )
2515 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2517 wxMessageBox(wxT("No items to relate - first add some with Append."));
2521 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2524 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2528 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2530 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2532 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2533 id
->GetIndexInParent(),
2534 new wxPropertyCategory (propLabel
) );
2537 // -----------------------------------------------------------------------
2539 void FormMain::OnDelPropClick( wxCommandEvent
& WXUNUSED(event
) )
2541 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2544 wxMessageBox(wxT("First select a property."));
2548 m_pPropGridManager
->DeleteProperty( id
);
2551 // -----------------------------------------------------------------------
2553 void FormMain::OnDelPropRClick( wxCommandEvent
& WXUNUSED(event
) )
2555 // Delete random property
2556 wxPGProperty
* p
= m_pPropGridManager
->GetGrid()->GetRoot();
2560 if ( !p
->IsCategory() )
2562 m_pPropGridManager
->DeleteProperty( p
);
2566 if ( !p
->GetChildCount() )
2569 int n
= rand() % ((int)p
->GetChildCount());
2575 // -----------------------------------------------------------------------
2577 void FormMain::OnContextMenu( wxContextMenuEvent
& event
)
2579 wxLogDebug(wxT("FormMain::OnContextMenu(%i,%i)"),
2580 event
.GetPosition().x
,event
.GetPosition().y
);
2587 // -----------------------------------------------------------------------
2589 void FormMain::OnCloseClick( wxCommandEvent
& WXUNUSED(event
) )
2591 /*#ifdef __WXDEBUG__
2592 m_pPropGridManager->GetGrid()->DumpAllocatedChoiceSets();
2593 wxLogDebug(wxT("\\-> Don't worry, this is perfectly normal in this sample."));
2599 // -----------------------------------------------------------------------
2601 int IterateMessage( wxPGProperty
* prop
)
2605 s
.Printf( wxT("\"%s\" class = %s, valuetype = %s"), prop
->GetLabel().c_str(),
2606 prop
->GetClassInfo()->GetClassName(), prop
->GetValueType().c_str() );
2608 return wxMessageBox( s
, wxT("Iterating... (press CANCEL to end)"), wxOK
|wxCANCEL
);
2611 // -----------------------------------------------------------------------
2613 void FormMain::OnIterate1Click( wxCommandEvent
& WXUNUSED(event
) )
2615 wxPropertyGridIterator it
;
2617 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2622 wxPGProperty
* p
= *it
;
2623 int res
= IterateMessage( p
);
2624 if ( res
== wxCANCEL
) break;
2628 // -----------------------------------------------------------------------
2630 void FormMain::OnIterate2Click( wxCommandEvent
& WXUNUSED(event
) )
2632 wxPropertyGridIterator it
;
2634 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2635 GetIterator( wxPG_ITERATE_VISIBLE
);
2639 wxPGProperty
* p
= *it
;
2641 int res
= IterateMessage( p
);
2642 if ( res
== wxCANCEL
) break;
2646 // -----------------------------------------------------------------------
2648 void FormMain::OnIterate3Click( wxCommandEvent
& WXUNUSED(event
) )
2650 // iterate over items in reverse order
2651 wxPropertyGridIterator it
;
2653 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2654 GetIterator( wxPG_ITERATE_DEFAULT
, wxBOTTOM
);
2658 wxPGProperty
* p
= *it
;
2660 int res
= IterateMessage( p
);
2661 if ( res
== wxCANCEL
) break;
2665 // -----------------------------------------------------------------------
2667 void FormMain::OnIterate4Click( wxCommandEvent
& WXUNUSED(event
) )
2669 wxPropertyGridIterator it
;
2671 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2672 GetIterator( wxPG_ITERATE_CATEGORIES
);
2676 wxPGProperty
* p
= *it
;
2678 int res
= IterateMessage( p
);
2679 if ( res
== wxCANCEL
) break;
2683 // -----------------------------------------------------------------------
2685 void FormMain::OnExtendedKeyNav( wxCommandEvent
& WXUNUSED(event
) )
2687 // Use AddActionTrigger() and DedicateKey() to set up Enter,
2688 // Up, and Down keys for navigating between properties.
2689 wxPropertyGrid
* propGrid
= m_pPropGridManager
->GetGrid();
2691 propGrid
->AddActionTrigger(wxPG_ACTION_NEXT_PROPERTY
,
2693 propGrid
->DedicateKey(WXK_RETURN
);
2695 // Up and Down keys are alredy associated with navigation,
2696 // but we must also prevent them from being eaten by
2698 propGrid
->DedicateKey(WXK_UP
);
2699 propGrid
->DedicateKey(WXK_DOWN
);
2702 // -----------------------------------------------------------------------
2704 void FormMain::OnFitColumnsClick( wxCommandEvent
& WXUNUSED(event
) )
2706 wxPropertyGridPage
* page
= m_pPropGridManager
->GetCurrentPage();
2708 // Remove auto-centering
2709 m_pPropGridManager
->SetWindowStyle( m_pPropGridManager
->GetWindowStyle() & ~wxPG_SPLITTER_AUTO_CENTER
);
2711 // Grow manager size just prior fit - otherwise
2712 // column information may be lost.
2713 wxSize oldGridSize
= m_pPropGridManager
->GetGrid()->GetClientSize();
2714 wxSize oldFullSize
= GetSize();
2715 SetSize(1000, oldFullSize
.y
);
2717 wxSize newSz
= page
->FitColumns();
2719 int dx
= oldFullSize
.x
- oldGridSize
.x
;
2720 int dy
= oldFullSize
.y
- oldGridSize
.y
;
2728 // -----------------------------------------------------------------------
2730 void FormMain::OnChangeFlagsPropItemsClick( wxCommandEvent
& WXUNUSED(event
) )
2732 wxPGProperty
* p
= m_pPropGridManager
->GetPropertyByName(wxT("Window Styles"));
2734 wxPGChoices newChoices
;
2736 newChoices
.Add(wxT("Fast"),0x1);
2737 newChoices
.Add(wxT("Powerful"),0x2);
2738 newChoices
.Add(wxT("Safe"),0x4);
2739 newChoices
.Add(wxT("Sleek"),0x8);
2741 p
->SetChoices(newChoices
);
2744 // -----------------------------------------------------------------------
2746 void FormMain::OnEnableDisable( wxCommandEvent
& )
2748 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2751 wxMessageBox(wxT("First select a property."));
2755 if ( m_pPropGridManager
->IsPropertyEnabled( id
) )
2757 m_pPropGridManager
->DisableProperty ( id
);
2758 m_itemEnable
->SetItemLabel( wxT("Enable") );
2762 m_pPropGridManager
->EnableProperty ( id
);
2763 m_itemEnable
->SetItemLabel( wxT("Disable") );
2767 // -----------------------------------------------------------------------
2769 void FormMain::OnSetReadOnly( wxCommandEvent
& WXUNUSED(event
) )
2771 wxPGProperty
* p
= m_pPropGridManager
->GetGrid()->GetSelection();
2774 wxMessageBox(wxT("First select a property."));
2777 m_pPropGridManager
->SetPropertyReadOnly(p
);
2780 // -----------------------------------------------------------------------
2782 void FormMain::OnHide( wxCommandEvent
& WXUNUSED(event
) )
2784 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2787 wxMessageBox(wxT("First select a property."));
2791 m_pPropGridManager
->HideProperty( id
, true );
2794 // -----------------------------------------------------------------------
2796 #include "wx/colordlg.h"
2799 FormMain::OnSetBackgroundColour( wxCommandEvent
& event
)
2801 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2802 wxPGProperty
* prop
= pg
->GetSelection();
2805 wxMessageBox(wxT("First select a property."));
2809 wxColour col
= ::wxGetColourFromUser(this, *wxWHITE
, "Choose colour");
2813 bool recursively
= (event
.GetId()==ID_SETBGCOLOURRECUR
) ? true : false;
2814 pg
->SetPropertyBackgroundColour(prop
, col
, recursively
);
2818 // -----------------------------------------------------------------------
2820 void FormMain::OnInsertPage( wxCommandEvent
& WXUNUSED(event
) )
2822 m_pPropGridManager
->AddPage(wxT("New Page"));
2825 // -----------------------------------------------------------------------
2827 void FormMain::OnRemovePage( wxCommandEvent
& WXUNUSED(event
) )
2829 m_pPropGridManager
->RemovePage(m_pPropGridManager
->GetSelectedPage());
2832 // -----------------------------------------------------------------------
2834 void FormMain::OnSaveState( wxCommandEvent
& WXUNUSED(event
) )
2836 m_savedState
= m_pPropGridManager
->SaveEditableState();
2837 wxLogDebug(wxT("Saved editable state string: \"%s\""), m_savedState
.c_str());
2840 // -----------------------------------------------------------------------
2842 void FormMain::OnRestoreState( wxCommandEvent
& WXUNUSED(event
) )
2844 m_pPropGridManager
->RestoreEditableState(m_savedState
);
2847 // -----------------------------------------------------------------------
2849 void FormMain::OnSetSpinCtrlEditorClick( wxCommandEvent
& WXUNUSED(event
) )
2852 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2854 m_pPropGridManager
->SetPropertyEditor( pgId
, wxPGEditor_SpinCtrl
);
2856 wxMessageBox(wxT("First select a property"));
2860 // -----------------------------------------------------------------------
2862 void FormMain::OnTestReplaceClick( wxCommandEvent
& WXUNUSED(event
) )
2864 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2867 wxPGChoices choices
;
2868 choices
.Add(wxT("Flag 0"),0x0001);
2869 choices
.Add(wxT("Flag 1"),0x0002);
2870 choices
.Add(wxT("Flag 2"),0x0004);
2871 choices
.Add(wxT("Flag 3"),0x0008);
2872 wxPGProperty
* newId
= m_pPropGridManager
->ReplaceProperty( pgId
,
2873 new wxFlagsProperty(wxT("ReplaceFlagsProperty"), wxPG_LABEL
, choices
, 0x0003) );
2874 m_pPropGridManager
->SetPropertyAttribute( newId
,
2875 wxPG_BOOL_USE_CHECKBOX
,
2880 wxMessageBox(wxT("First select a property"));
2883 // -----------------------------------------------------------------------
2885 void FormMain::OnClearModifyStatusClick( wxCommandEvent
& WXUNUSED(event
) )
2887 m_pPropGridManager
->ClearModifiedStatus();
2890 // -----------------------------------------------------------------------
2892 // Freeze check-box checked?
2893 void FormMain::OnFreezeClick( wxCommandEvent
& event
)
2895 if ( !m_pPropGridManager
) return;
2897 if ( event
.IsChecked() )
2899 if ( !m_pPropGridManager
->IsFrozen() )
2901 m_pPropGridManager
->Freeze();
2906 if ( m_pPropGridManager
->IsFrozen() )
2908 m_pPropGridManager
->Thaw();
2909 m_pPropGridManager
->Refresh();
2914 // -----------------------------------------------------------------------
2916 void FormMain::OnEnableLabelEditing( wxCommandEvent
& WXUNUSED(event
) )
2918 m_propGrid
->MakeColumnEditable(0);
2921 // -----------------------------------------------------------------------
2923 void FormMain::OnShowHeader( wxCommandEvent
& event
)
2925 m_pPropGridManager
->ShowHeader(event
.IsChecked());
2926 m_pPropGridManager
->SetColumnTitle(2, _("Units"));
2929 // -----------------------------------------------------------------------
2931 void FormMain::OnAbout(wxCommandEvent
& WXUNUSED(event
))
2934 msg
.Printf( wxT("wxPropertyGrid Sample")
2936 #if defined(wxUSE_UNICODE_UTF8) && wxUSE_UNICODE_UTF8
2950 wxT("Programmed by %s\n\n")
2951 wxT("Using %s\n\n"),
2952 wxT("Jaakko Salli"), wxVERSION_STRING
2955 wxMessageBox(msg
, wxT("About"), wxOK
| wxICON_INFORMATION
, this);
2958 // -----------------------------------------------------------------------
2960 void FormMain::OnColourScheme( wxCommandEvent
& event
)
2962 int id
= event
.GetId();
2963 if ( id
== ID_COLOURSCHEME1
)
2965 m_pPropGridManager
->GetGrid()->ResetColours();
2967 else if ( id
== ID_COLOURSCHEME2
)
2970 wxColour
my_grey_1(212,208,200);
2971 wxColour
my_grey_3(113,111,100);
2972 m_pPropGridManager
->Freeze();
2973 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2974 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2975 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( *wxWHITE
);
2976 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2977 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
); //wxColour(160,160,160)
2978 m_pPropGridManager
->Thaw();
2980 else if ( id
== ID_COLOURSCHEME3
)
2983 wxColour
my_grey_1(212,208,200);
2984 wxColour
my_grey_2(236,233,216);
2985 m_pPropGridManager
->Freeze();
2986 m_pPropGridManager
->GetGrid()->SetMarginColour( my_grey_1
);
2987 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( my_grey_1
);
2988 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2989 m_pPropGridManager
->Thaw();
2991 else if ( id
== ID_COLOURSCHEME4
)
2995 wxColour
my_grey_1(212,208,200);
2996 wxColour
my_grey_2(241,239,226);
2997 wxColour
my_grey_3(113,111,100);
2998 m_pPropGridManager
->Freeze();
2999 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
3000 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
3001 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
3002 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
3003 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
3004 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
3005 m_pPropGridManager
->Thaw();
3009 // -----------------------------------------------------------------------
3011 void FormMain::OnCatColours( wxCommandEvent
& event
)
3013 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3014 m_pPropGridManager
->Freeze();
3016 if ( event
.IsChecked() )
3018 // Set custom colours.
3019 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,0), false );
3020 pg
->SetPropertyBackgroundColour( wxT("Appearance"), wxColour(255,255,183) );
3021 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,183) );
3022 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(0,255,0), false );
3023 pg
->SetPropertyBackgroundColour( wxT("PositionCategory"), wxColour(255,226,190) );
3024 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(255,0,190) );
3025 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(0,0,255), false );
3026 pg
->SetPropertyBackgroundColour( wxT("Environment"), wxColour(208,240,175) );
3027 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(255,255,255) );
3028 pg
->SetPropertyBackgroundColour( wxT("More Examples"), wxColour(172,237,255) );
3029 pg
->SetPropertyTextColour( wxT("More Examples"), wxColour(172,0,255) );
3033 // Revert to original.
3034 pg
->SetPropertyColoursToDefault( wxT("Appearance") );
3035 pg
->SetPropertyColoursToDefault( wxT("PositionCategory") );
3036 pg
->SetPropertyColoursToDefault( wxT("Environment") );
3037 pg
->SetPropertyColoursToDefault( wxT("More Examples") );
3039 m_pPropGridManager
->Thaw();
3040 m_pPropGridManager
->Refresh();
3043 // -----------------------------------------------------------------------
3045 #define ADD_FLAG(FLAG) \
3046 chs.Add(wxT(#FLAG)); \
3048 if ( (flags & FLAG) == FLAG ) sel.Add(ind); \
3051 void FormMain::OnSelectStyle( wxCommandEvent
& WXUNUSED(event
) )
3060 unsigned int ind
= 0;
3061 int flags
= m_pPropGridManager
->GetWindowStyle();
3062 ADD_FLAG(wxPG_HIDE_CATEGORIES
)
3063 ADD_FLAG(wxPG_AUTO_SORT
)
3064 ADD_FLAG(wxPG_BOLD_MODIFIED
)
3065 ADD_FLAG(wxPG_SPLITTER_AUTO_CENTER
)
3066 ADD_FLAG(wxPG_TOOLTIPS
)
3067 ADD_FLAG(wxPG_STATIC_SPLITTER
)
3068 ADD_FLAG(wxPG_HIDE_MARGIN
)
3069 ADD_FLAG(wxPG_LIMITED_EDITING
)
3070 ADD_FLAG(wxPG_TOOLBAR
)
3071 ADD_FLAG(wxPG_DESCRIPTION
)
3072 ADD_FLAG(wxPG_NO_INTERNAL_BORDER
)
3073 wxMultiChoiceDialog
dlg( this, wxT("Select window styles to use"),
3074 wxT("wxPropertyGrid Window Style"), chs
);
3075 dlg
.SetSelections(sel
);
3076 if ( dlg
.ShowModal() == wxID_CANCEL
)
3080 sel
= dlg
.GetSelections();
3081 for ( ind
= 0; ind
< sel
.size(); ind
++ )
3082 flags
|= vls
[sel
[ind
]];
3091 unsigned int ind
= 0;
3092 int flags
= m_pPropGridManager
->GetExtraStyle();
3093 ADD_FLAG(wxPG_EX_INIT_NOCAT
)
3094 ADD_FLAG(wxPG_EX_NO_FLAT_TOOLBAR
)
3095 ADD_FLAG(wxPG_EX_MODE_BUTTONS
)
3096 ADD_FLAG(wxPG_EX_HELP_AS_TOOLTIPS
)
3097 ADD_FLAG(wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
3098 ADD_FLAG(wxPG_EX_AUTO_UNSPECIFIED_VALUES
)
3099 ADD_FLAG(wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
)
3100 ADD_FLAG(wxPG_EX_HIDE_PAGE_BUTTONS
)
3101 ADD_FLAG(wxPG_EX_MULTIPLE_SELECTION
)
3102 ADD_FLAG(wxPG_EX_ENABLE_TLP_TRACKING
)
3103 ADD_FLAG(wxPG_EX_NO_TOOLBAR_DIVIDER
)
3104 ADD_FLAG(wxPG_EX_TOOLBAR_SEPARATOR
)
3105 wxMultiChoiceDialog
dlg( this, wxT("Select extra window styles to use"),
3106 wxT("wxPropertyGrid Extra Style"), chs
);
3107 dlg
.SetSelections(sel
);
3108 if ( dlg
.ShowModal() == wxID_CANCEL
)
3112 sel
= dlg
.GetSelections();
3113 for ( ind
= 0; ind
< sel
.size(); ind
++ )
3114 flags
|= vls
[sel
[ind
]];
3119 CreateGrid( style
, extraStyle
);
3121 FinalizeFramePosition();
3124 // -----------------------------------------------------------------------
3126 void FormMain::OnSetColumns( wxCommandEvent
& WXUNUSED(event
) )
3128 long colCount
= ::wxGetNumberFromUser(wxT("Enter number of columns (2-20)."),wxT("Columns:"),
3129 wxT("Change Columns"),m_pPropGridManager
->GetColumnCount(),
3132 if ( colCount
>= 2 )
3134 m_pPropGridManager
->SetColumnCount(colCount
);
3138 // -----------------------------------------------------------------------
3140 void FormMain::OnSetPropertyValue( wxCommandEvent
& WXUNUSED(event
) )
3142 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3143 wxPGProperty
* selected
= pg
->GetSelection();
3147 wxString value
= ::wxGetTextFromUser( wxT("Enter new value:") );
3148 pg
->SetPropertyValue( selected
, value
);
3152 // -----------------------------------------------------------------------
3154 void FormMain::OnInsertChoice( wxCommandEvent
& WXUNUSED(event
) )
3156 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3158 wxPGProperty
* selected
= pg
->GetSelection();
3159 const wxPGChoices
& choices
= selected
->GetChoices();
3161 // Insert new choice to the center of list
3163 if ( choices
.IsOk() )
3165 int pos
= choices
.GetCount() / 2;
3166 selected
->InsertChoice(wxT("New Choice"), pos
);
3170 ::wxMessageBox(wxT("First select a property with some choices."));
3174 // -----------------------------------------------------------------------
3176 void FormMain::OnDeleteChoice( wxCommandEvent
& WXUNUSED(event
) )
3178 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3180 wxPGProperty
* selected
= pg
->GetSelection();
3181 const wxPGChoices
& choices
= selected
->GetChoices();
3183 // Deletes choice from the center of list
3185 if ( choices
.IsOk() )
3187 int pos
= choices
.GetCount() / 2;
3188 selected
->DeleteChoice(pos
);
3192 ::wxMessageBox(wxT("First select a property with some choices."));
3196 // -----------------------------------------------------------------------
3198 #include <wx/colordlg.h>
3200 void FormMain::OnMisc ( wxCommandEvent
& event
)
3202 int id
= event
.GetId();
3203 if ( id
== ID_STATICLAYOUT
)
3205 long wsf
= m_pPropGridManager
->GetWindowStyleFlag();
3206 if ( event
.IsChecked() ) m_pPropGridManager
->SetWindowStyleFlag( wsf
|wxPG_STATIC_LAYOUT
);
3207 else m_pPropGridManager
->SetWindowStyleFlag( wsf
&~(wxPG_STATIC_LAYOUT
) );
3209 else if ( id
== ID_COLLAPSEALL
)
3212 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3214 for ( it
= pg
->GetVIterator( wxPG_ITERATE_ALL
); !it
.AtEnd(); it
.Next() )
3215 it
.GetProperty()->SetExpanded( false );
3219 else if ( id
== ID_GETVALUES
)
3221 m_storedValues
= m_pPropGridManager
->GetGrid()->GetPropertyValues(wxT("Test"),
3222 m_pPropGridManager
->GetGrid()->GetRoot(),
3223 wxPG_KEEP_STRUCTURE
|wxPG_INC_ATTRIBUTES
);
3225 else if ( id
== ID_SETVALUES
)
3227 if ( m_storedValues
.GetType() == wxT("list") )
3229 m_pPropGridManager
->GetGrid()->SetPropertyValues(m_storedValues
);
3232 wxMessageBox(wxT("First use Get Property Values."));
3234 else if ( id
== ID_SETVALUES2
)
3238 list
.Append( wxVariant((long)1234,wxT("VariantLong")) );
3239 list
.Append( wxVariant((bool)TRUE
,wxT("VariantBool")) );
3240 list
.Append( wxVariant(wxT("Test Text"),wxT("VariantString")) );
3241 m_pPropGridManager
->GetGrid()->SetPropertyValues(list
);
3243 else if ( id
== ID_COLLAPSE
)
3245 // Collapses selected.
3246 wxPGProperty
* id
= m_pPropGridManager
->GetSelection();
3249 m_pPropGridManager
->Collapse(id
);
3252 else if ( id
== ID_RUNTESTFULL
)
3254 // Runs a regression test.
3257 else if ( id
== ID_RUNTESTPARTIAL
)
3259 // Runs a regression test.
3262 else if ( id
== ID_UNSPECIFY
)
3264 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
3267 m_pPropGridManager
->SetPropertyValueUnspecified(prop
);
3268 prop
->RefreshEditor();
3273 // -----------------------------------------------------------------------
3275 void FormMain::OnPopulateClick( wxCommandEvent
& event
)
3277 int id
= event
.GetId();
3278 m_propGrid
->Clear();
3279 m_propGrid
->Freeze();
3280 if ( id
== ID_POPULATE1
)
3282 PopulateWithStandardItems();
3284 else if ( id
== ID_POPULATE2
)
3286 PopulateWithLibraryConfig();
3291 // -----------------------------------------------------------------------
3293 void DisplayMinimalFrame(wxWindow
* parent
); // in minimal.cpp
3295 void FormMain::OnRunMinimalClick( wxCommandEvent
& WXUNUSED(event
) )
3297 DisplayMinimalFrame(this);
3300 // -----------------------------------------------------------------------
3302 FormMain::~FormMain()
3306 // -----------------------------------------------------------------------
3308 IMPLEMENT_APP(cxApplication
)
3310 bool cxApplication::OnInit()
3313 //Locale.Init(wxLANGUAGE_FINNISH);
3315 FormMain
* frame
= Form1
= new FormMain( wxT("wxPropertyGrid Sample"), wxPoint(0,0), wxSize(300,500) );
3319 // Parse command-line
3320 wxApp
& app
= wxGetApp();
3323 wxString s
= app
.argv
[1];
3324 if ( s
== wxT("--run-tests") )
3328 bool testResult
= frame
->RunTests(true);
3338 // -----------------------------------------------------------------------
3340 void FormMain::OnIdle( wxIdleEvent
& event
)
3343 // This code is useful for debugging focus problems
3344 static wxWindow* last_focus = (wxWindow*) NULL;
3346 wxWindow* cur_focus = ::wxWindow::FindFocus();
3348 if ( cur_focus != last_focus )
3350 const wxChar* class_name = wxT("<none>");
3352 class_name = cur_focus->GetClassInfo()->GetClassName();
3353 last_focus = cur_focus;
3354 wxLogDebug( wxT("FOCUSED: %s %X"),
3356 (unsigned int)cur_focus);
3363 // -----------------------------------------------------------------------