1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/propgrid/propgrid.cpp
3 // Purpose: wxPropertyGrid sample
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 // * Examples of custom property classes are in sampleprops.cpp.
18 // * Additional ones can be found below.
20 // * Currently there is no example of a custom property editor. However,
21 // SpinCtrl editor sample is well-commented. It can be found in
22 // src/propgrid/advprops.cpp.
24 // * To find code that populates the grid with properties, search for
25 // string "::Populate".
27 // * To find code that handles property grid changes, search for string
28 // "::OnPropertyGridChange".
31 // For compilers that support precompilation, includes "wx/wx.h".
32 #include "wx/wxprec.h"
38 // for all others, include the necessary headers (this file is usually all you
39 // need because it includes almost all "standard" wxWidgets headers)
45 #error "Please set wxUSE_PROPGRID to 1 and rebuild the library."
48 #include <wx/numdlg.h>
50 // -----------------------------------------------------------------------
53 // Main propertygrid header.
54 #include <wx/propgrid/propgrid.h>
56 // Extra property classes.
57 #include <wx/propgrid/advprops.h>
59 // This defines wxPropertyGridManager.
60 #include <wx/propgrid/manager.h>
63 #include "sampleprops.h"
65 #if wxUSE_DATEPICKCTRL
66 #include <wx/datectrl.h>
69 #include <wx/artprov.h>
72 #include "../sample.xpm"
75 // -----------------------------------------------------------------------
76 // wxSampleMultiButtonEditor
77 // A sample editor class that has multiple buttons.
78 // -----------------------------------------------------------------------
80 class wxSampleMultiButtonEditor
: public wxPGTextCtrlEditor
82 DECLARE_DYNAMIC_CLASS(wxSampleMultiButtonEditor
)
84 wxSampleMultiButtonEditor() {}
85 virtual ~wxSampleMultiButtonEditor() {}
87 virtual wxPGWindowList
CreateControls( wxPropertyGrid
* propGrid
,
88 wxPGProperty
* property
,
90 const wxSize
& sz
) const;
91 virtual bool OnEvent( wxPropertyGrid
* propGrid
,
92 wxPGProperty
* property
,
94 wxEvent
& event
) const;
97 IMPLEMENT_DYNAMIC_CLASS(wxSampleMultiButtonEditor
, wxPGTextCtrlEditor
)
99 wxPGWindowList
wxSampleMultiButtonEditor::CreateControls( wxPropertyGrid
* propGrid
,
100 wxPGProperty
* property
,
102 const wxSize
& sz
) const
104 // Create and populate buttons-subwindow
105 wxPGMultiButton
* buttons
= new wxPGMultiButton( propGrid
, sz
);
107 // Add two regular buttons
108 buttons
->Add( "..." );
110 // Add a bitmap button
111 buttons
->Add( wxArtProvider::GetBitmap(wxART_FOLDER
) );
113 // Create the 'primary' editor control (textctrl in this case)
114 wxPGWindowList wndList
= wxPGTextCtrlEditor::CreateControls
115 ( propGrid
, property
, pos
,
116 buttons
->GetPrimarySize() );
118 // Finally, move buttons-subwindow to correct position and make sure
119 // returned wxPGWindowList contains our custom button list.
120 buttons
->Finalize(propGrid
, pos
);
122 wndList
.SetSecondary( buttons
);
126 bool wxSampleMultiButtonEditor::OnEvent( wxPropertyGrid
* propGrid
,
127 wxPGProperty
* property
,
129 wxEvent
& event
) const
131 if ( event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
133 wxPGMultiButton
* buttons
= (wxPGMultiButton
*) propGrid
->GetEditorControlSecondary();
135 if ( event
.GetId() == buttons
->GetButtonId(0) )
137 // Do something when 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 m_pImage
= (wxImage
*) NULL
;
274 void wxAdvImageFileProperty::OnSetValue()
276 wxFileProperty::OnSetValue();
282 m_pImage
= (wxImage
*) NULL
;
285 wxString imagename
= GetValueAsString(0);
287 if ( imagename
.length() )
289 wxFileName filename
= GetFileName();
290 size_t prevCount
= g_myImageArray
.GetCount();
291 int index
= ms_choices
.Index(imagename
);
293 // If not in table, add now.
294 if ( index
== wxNOT_FOUND
)
296 ms_choices
.Add( imagename
);
297 g_myImageArray
.Add( new wxMyImageInfo( filename
.GetFullPath() ) );
299 index
= g_myImageArray
.GetCount() - 1;
302 // If no thumbnail ready, then need to load image.
303 if ( !g_myImageArray
[index
].m_pThumbnail2
)
305 // Load if file exists.
306 if ( filename
.FileExists() )
307 m_pImage
= new wxImage( filename
.GetFullPath() );
312 wxPropertyGrid
* pg
= GetGrid();
313 wxWindow
* control
= pg
->GetEditorControl();
315 if ( pg
->GetSelection() == this && control
)
317 wxString name
= GetValueAsString(0);
319 if ( g_myImageArray
.GetCount() != prevCount
)
321 wxASSERT( g_myImageArray
.GetCount() == (prevCount
+1) );
323 // Add to the control's array.
324 // (should be added to own array earlier)
327 GetEditorClass()->InsertItem(control
, name
, -1);
331 GetEditorClass()->UpdateControl(this, control
);
338 bool wxAdvImageFileProperty::IntToValue( wxVariant
& variant
, int number
, int WXUNUSED(argFlags
) ) const
340 wxASSERT( number
>= 0 );
341 return StringToValue( variant
, ms_choices
.GetLabel(number
), wxPG_FULL_VALUE
);
344 bool wxAdvImageFileProperty::OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* primary
,
347 if ( propgrid
->IsMainButtonEvent(event
) )
349 return wxFileProperty::OnEvent(propgrid
,primary
,event
);
354 wxSize
wxAdvImageFileProperty::OnMeasureImage( int item
) const
357 return wxPG_DEFAULT_IMAGE_SIZE
;
359 return wxSize(PREF_THUMBNAIL_HEIGHT
,PREF_THUMBNAIL_HEIGHT
);
362 void wxAdvImageFileProperty::LoadThumbnails( size_t index
)
364 wxMyImageInfo
& mii
= g_myImageArray
[index
];
366 if ( !mii
.m_pThumbnail2
)
368 wxFileName filename
= GetFileName();
370 if ( !m_pImage
|| !m_pImage
->Ok() ||
371 filename
!= mii
.m_path
376 m_pImage
= new wxImage( mii
.m_path
);
379 if ( m_pImage
&& m_pImage
->Ok() )
381 int im_wid
= m_pImage
->GetWidth();
382 int im_hei
= m_pImage
->GetHeight();
383 if ( im_hei
> PREF_THUMBNAIL_HEIGHT
)
386 im_wid
= (PREF_THUMBNAIL_HEIGHT
*m_pImage
->GetWidth())/m_pImage
->GetHeight();
387 im_hei
= PREF_THUMBNAIL_HEIGHT
;
390 m_pImage
->Rescale( im_wid
, im_hei
);
392 mii
.m_pThumbnail2
= new wxBitmap( *m_pImage
);
394 wxSize cis
= GetParentState()->GetGrid()->GetImageSize();
395 m_pImage
->Rescale ( cis
.x
, cis
.y
);
397 mii
.m_pThumbnail1
= new wxBitmap( *m_pImage
);
404 m_pImage
= (wxImage
*) NULL
;
409 void wxAdvImageFileProperty::OnCustomPaint( wxDC
& dc
,
414 if ( pd
.m_choiceItem
>= 0 )
415 index
= pd
.m_choiceItem
;
417 //wxLogDebug(wxT("%i"),index);
421 LoadThumbnails(index
);
423 // Is this a measure item call?
427 //pd.m_drawnHeight = PREF_THUMBNAIL_HEIGHT;
428 wxBitmap
* pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
430 pd
.m_drawnHeight
= pBitmap
->GetHeight();
432 pd
.m_drawnHeight
= 16;
436 // Draw the thumbnail
440 if ( pd
.m_choiceItem
>= 0 )
441 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail2
;
443 pBitmap
= (wxBitmap
*)g_myImageArray
[index
].m_pThumbnail1
;
447 dc
.DrawBitmap ( *pBitmap
, rect
.x
, rect
.y
, FALSE
);
449 // Tell the caller how wide we drew.
450 pd
.m_drawnWidth
= pBitmap
->GetWidth();
456 // No valid file - just draw a white box.
457 dc
.SetBrush ( *wxWHITE_BRUSH
);
458 dc
.DrawRectangle ( rect
);
462 // -----------------------------------------------------------------------
464 // -----------------------------------------------------------------------
466 // See propgridsample.h for wxVector3f class
468 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxVector3f
)
470 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxVectorProperty
,wxPGProperty
,
471 wxVector3f
,const wxVector3f
&,TextCtrl
)
474 wxVectorProperty::wxVectorProperty( const wxString
& label
,
475 const wxString
& name
,
476 const wxVector3f
& value
)
477 : wxPGProperty(label
,name
)
479 SetValue( WXVARIANT(value
) );
480 AddPrivateChild( new wxFloatProperty(wxT("X"),wxPG_LABEL
,value
.x
) );
481 AddPrivateChild( new wxFloatProperty(wxT("Y"),wxPG_LABEL
,value
.y
) );
482 AddPrivateChild( new wxFloatProperty(wxT("Z"),wxPG_LABEL
,value
.z
) );
485 wxVectorProperty::~wxVectorProperty() { }
487 void wxVectorProperty::RefreshChildren()
489 if ( !GetChildCount() ) return;
490 const wxVector3f
& vector
= wxVector3fRefFromVariant(m_value
);
491 Item(0)->SetValue( vector
.x
);
492 Item(1)->SetValue( vector
.y
);
493 Item(2)->SetValue( vector
.z
);
496 wxVariant
wxVectorProperty::ChildChanged( wxVariant
& thisValue
,
498 wxVariant
& childValue
) const
502 switch ( childIndex
)
504 case 0: vector
.x
= childValue
.GetDouble(); break;
505 case 1: vector
.y
= childValue
.GetDouble(); break;
506 case 2: vector
.z
= childValue
.GetDouble(); break;
508 wxVariant newVariant
;
509 newVariant
<< vector
;
514 // -----------------------------------------------------------------------
515 // wxTriangleProperty
516 // -----------------------------------------------------------------------
518 // See propgridsample.h for wxTriangle class
520 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxTriangle
)
522 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxTriangleProperty
,wxPGProperty
,
523 wxTriangle
,const wxTriangle
&,TextCtrl
)
526 wxTriangleProperty::wxTriangleProperty( const wxString
& label
,
527 const wxString
& name
,
528 const wxTriangle
& value
)
529 : wxPGProperty(label
,name
)
531 SetValue( WXVARIANT(value
) );
532 AddPrivateChild( new wxVectorProperty(wxT("A"),wxPG_LABEL
,value
.a
) );
533 AddPrivateChild( new wxVectorProperty(wxT("B"),wxPG_LABEL
,value
.b
) );
534 AddPrivateChild( new wxVectorProperty(wxT("C"),wxPG_LABEL
,value
.c
) );
537 wxTriangleProperty::~wxTriangleProperty() { }
539 void wxTriangleProperty::RefreshChildren()
541 if ( !GetChildCount() ) return;
542 const wxTriangle
& triangle
= wxTriangleRefFromVariant(m_value
);
543 Item(0)->SetValue( WXVARIANT(triangle
.a
) );
544 Item(1)->SetValue( WXVARIANT(triangle
.b
) );
545 Item(2)->SetValue( WXVARIANT(triangle
.c
) );
548 wxVariant
wxTriangleProperty::ChildChanged( wxVariant
& thisValue
,
550 wxVariant
& childValue
) const
553 triangle
<< thisValue
;
554 const wxVector3f
& vector
= wxVector3fRefFromVariant(childValue
);
555 switch ( childIndex
)
557 case 0: triangle
.a
= vector
; break;
558 case 1: triangle
.b
= vector
; break;
559 case 2: triangle
.c
= vector
; break;
561 wxVariant newVariant
;
562 newVariant
<< triangle
;
567 // -----------------------------------------------------------------------
568 // wxSingleChoiceDialogAdapter (wxPGEditorDialogAdapter sample)
569 // -----------------------------------------------------------------------
571 class wxSingleChoiceDialogAdapter
: public wxPGEditorDialogAdapter
575 wxSingleChoiceDialogAdapter( const wxPGChoices
& choices
)
576 : wxPGEditorDialogAdapter(), m_choices(choices
)
580 virtual bool DoShowDialog( wxPropertyGrid
* WXUNUSED(propGrid
),
581 wxPGProperty
* WXUNUSED(property
) )
583 wxString s
= ::wxGetSingleChoice(wxT("Message"),
585 m_choices
.GetLabels());
596 const wxPGChoices
& m_choices
;
600 class SingleChoiceProperty
: public wxStringProperty
604 SingleChoiceProperty( const wxString
& label
,
605 const wxString
& name
= wxPG_LABEL
,
606 const wxString
& value
= wxEmptyString
)
607 : wxStringProperty(label
, name
, value
)
610 m_choices
.Add(wxT("Cat"));
611 m_choices
.Add(wxT("Dog"));
612 m_choices
.Add(wxT("Gibbon"));
613 m_choices
.Add(wxT("Otter"));
616 // Set editor to have button
617 virtual const wxPGEditor
* DoGetEditorClass() const
619 return wxPGEditor_TextCtrlAndButton
;
622 // Set what happens on button click
623 virtual wxPGEditorDialogAdapter
* GetEditorDialog() const
625 return new wxSingleChoiceDialogAdapter(m_choices
);
629 wxPGChoices m_choices
;
632 // -----------------------------------------------------------------------
634 // -----------------------------------------------------------------------
682 ID_SETSPINCTRLEDITOR
,
687 ID_ENABLECOMMONVALUES
,
692 ID_ENABLELABELEDITING
,
697 // -----------------------------------------------------------------------
699 // -----------------------------------------------------------------------
701 BEGIN_EVENT_TABLE(FormMain
, wxFrame
)
702 EVT_IDLE(FormMain::OnIdle
)
703 EVT_MOVE(FormMain::OnMove
)
704 EVT_SIZE(FormMain::OnResize
)
706 // This occurs when a property is selected
707 EVT_PG_SELECTED( PGID
, FormMain::OnPropertyGridSelect
)
708 // This occurs when a property value changes
709 EVT_PG_CHANGED( PGID
, FormMain::OnPropertyGridChange
)
710 // This occurs just prior a property value is changed
711 EVT_PG_CHANGING( PGID
, FormMain::OnPropertyGridChanging
)
712 // This occurs when a mouse moves over another property
713 EVT_PG_HIGHLIGHTED( PGID
, FormMain::OnPropertyGridHighlight
)
714 // This occurs when mouse is right-clicked.
715 EVT_PG_RIGHT_CLICK( PGID
, FormMain::OnPropertyGridItemRightClick
)
716 // This occurs when mouse is double-clicked.
717 EVT_PG_DOUBLE_CLICK( PGID
, FormMain::OnPropertyGridItemDoubleClick
)
718 // This occurs when propgridmanager's page changes.
719 EVT_PG_PAGE_CHANGED( PGID
, FormMain::OnPropertyGridPageChange
)
720 // This occurs when user starts editing a property label
721 EVT_PG_LABEL_EDIT_BEGIN( PGID
,
722 FormMain::OnPropertyGridLabelEditBegin
)
723 // This occurs when user stops editing a property label
724 EVT_PG_LABEL_EDIT_ENDING( PGID
,
725 FormMain::OnPropertyGridLabelEditEnding
)
726 // This occurs when property's editor button (if any) is clicked.
727 EVT_BUTTON( PGID
, FormMain::OnPropertyGridButtonClick
)
729 EVT_PG_ITEM_COLLAPSED( PGID
, FormMain::OnPropertyGridItemCollapse
)
730 EVT_PG_ITEM_EXPANDED( PGID
, FormMain::OnPropertyGridItemExpand
)
732 EVT_PG_COL_BEGIN_DRAG( PGID
, FormMain::OnPropertyGridColBeginDrag
)
733 EVT_PG_COL_DRAGGING( PGID
, FormMain::OnPropertyGridColDragging
)
734 EVT_PG_COL_END_DRAG( PGID
, FormMain::OnPropertyGridColEndDrag
)
736 EVT_TEXT( PGID
, FormMain::OnPropertyGridTextUpdate
)
739 // Rest of the events are not property grid specific
740 EVT_KEY_DOWN( FormMain::OnPropertyGridKeyEvent
)
741 EVT_KEY_UP( FormMain::OnPropertyGridKeyEvent
)
743 EVT_MENU( ID_APPENDPROP
, FormMain::OnAppendPropClick
)
744 EVT_MENU( ID_APPENDCAT
, FormMain::OnAppendCatClick
)
745 EVT_MENU( ID_INSERTPROP
, FormMain::OnInsertPropClick
)
746 EVT_MENU( ID_INSERTCAT
, FormMain::OnInsertCatClick
)
747 EVT_MENU( ID_DELETE
, FormMain::OnDelPropClick
)
748 EVT_MENU( ID_DELETER
, FormMain::OnDelPropRClick
)
749 EVT_MENU( ID_UNSPECIFY
, FormMain::OnMisc
)
750 EVT_MENU( ID_DELETEALL
, FormMain::OnClearClick
)
751 EVT_MENU( ID_ENABLE
, FormMain::OnEnableDisable
)
752 EVT_MENU( ID_SETREADONLY
, FormMain::OnSetReadOnly
)
753 EVT_MENU( ID_HIDE
, FormMain::OnHide
)
755 EVT_MENU( ID_ITERATE1
, FormMain::OnIterate1Click
)
756 EVT_MENU( ID_ITERATE2
, FormMain::OnIterate2Click
)
757 EVT_MENU( ID_ITERATE3
, FormMain::OnIterate3Click
)
758 EVT_MENU( ID_ITERATE4
, FormMain::OnIterate4Click
)
759 EVT_MENU( ID_SETBGCOLOUR
, FormMain::OnSetBackgroundColour
)
760 EVT_MENU( ID_SETBGCOLOURRECUR
, FormMain::OnSetBackgroundColour
)
761 EVT_MENU( ID_CLEARMODIF
, FormMain::OnClearModifyStatusClick
)
762 EVT_MENU( ID_FREEZE
, FormMain::OnFreezeClick
)
763 EVT_MENU( ID_ENABLELABELEDITING
, FormMain::OnEnableLabelEditing
)
764 EVT_MENU( ID_SHOWHEADER
, FormMain::OnShowHeader
)
765 EVT_MENU( ID_DUMPLIST
, FormMain::OnDumpList
)
767 EVT_MENU( ID_COLOURSCHEME1
, FormMain::OnColourScheme
)
768 EVT_MENU( ID_COLOURSCHEME2
, FormMain::OnColourScheme
)
769 EVT_MENU( ID_COLOURSCHEME3
, FormMain::OnColourScheme
)
770 EVT_MENU( ID_COLOURSCHEME4
, FormMain::OnColourScheme
)
772 EVT_MENU( ID_ABOUT
, FormMain::OnAbout
)
773 EVT_MENU( ID_QUIT
, FormMain::OnCloseClick
)
775 EVT_MENU( ID_CATCOLOURS
, FormMain::OnCatColours
)
776 EVT_MENU( ID_SETCOLUMNS
, FormMain::OnSetColumns
)
777 EVT_MENU( ID_TESTXRC
, FormMain::OnTestXRC
)
778 EVT_MENU( ID_ENABLECOMMONVALUES
, FormMain::OnEnableCommonValues
)
779 EVT_MENU( ID_SELECTSTYLE
, FormMain::OnSelectStyle
)
781 EVT_MENU( ID_STATICLAYOUT
, FormMain::OnMisc
)
782 EVT_MENU( ID_COLLAPSE
, FormMain::OnMisc
)
783 EVT_MENU( ID_COLLAPSEALL
, FormMain::OnMisc
)
785 EVT_MENU( ID_POPULATE1
, FormMain::OnPopulateClick
)
786 EVT_MENU( ID_POPULATE2
, FormMain::OnPopulateClick
)
788 EVT_MENU( ID_GETVALUES
, FormMain::OnMisc
)
789 EVT_MENU( ID_SETVALUES
, FormMain::OnMisc
)
790 EVT_MENU( ID_SETVALUES2
, FormMain::OnMisc
)
792 EVT_MENU( ID_FITCOLUMNS
, FormMain::OnFitColumnsClick
)
794 EVT_MENU( ID_CHANGEFLAGSITEMS
, FormMain::OnChangeFlagsPropItemsClick
)
796 EVT_MENU( ID_RUNTESTFULL
, FormMain::OnMisc
)
797 EVT_MENU( ID_RUNTESTPARTIAL
, FormMain::OnMisc
)
799 EVT_MENU( ID_TESTINSERTCHOICE
, FormMain::OnInsertChoice
)
800 EVT_MENU( ID_TESTDELETECHOICE
, FormMain::OnDeleteChoice
)
802 EVT_MENU( ID_INSERTPAGE
, FormMain::OnInsertPage
)
803 EVT_MENU( ID_REMOVEPAGE
, FormMain::OnRemovePage
)
805 EVT_MENU( ID_SAVESTATE
, FormMain::OnSaveState
)
806 EVT_MENU( ID_RESTORESTATE
, FormMain::OnRestoreState
)
808 EVT_MENU( ID_SETSPINCTRLEDITOR
, FormMain::OnSetSpinCtrlEditorClick
)
809 EVT_MENU( ID_TESTREPLACE
, FormMain::OnTestReplaceClick
)
810 EVT_MENU( ID_SETPROPERTYVALUE
, FormMain::OnSetPropertyValue
)
812 EVT_MENU( ID_RUNMINIMAL
, FormMain::OnRunMinimalClick
)
814 EVT_CONTEXT_MENU( FormMain::OnContextMenu
)
817 // -----------------------------------------------------------------------
819 void FormMain::OnMove( wxMoveEvent
& event
)
821 if ( !m_pPropGridManager
)
823 // this check is here so the frame layout can be tested
824 // without creating propertygrid
829 // Update position properties
835 // Must check if properties exist (as they may be deleted).
837 // Using m_pPropGridManager, we can scan all pages automatically.
838 id
= m_pPropGridManager
->GetPropertyByName( wxT("X") );
840 m_pPropGridManager
->SetPropertyValue( id
, x
);
842 id
= m_pPropGridManager
->GetPropertyByName( wxT("Y") );
844 m_pPropGridManager
->SetPropertyValue( id
, y
);
846 id
= m_pPropGridManager
->GetPropertyByName( wxT("Position") );
848 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxPoint(x
,y
)) );
850 // Should always call event.Skip() in frame's MoveEvent handler
854 // -----------------------------------------------------------------------
856 void FormMain::OnResize( wxSizeEvent
& event
)
858 if ( !m_pPropGridManager
)
860 // this check is here so the frame layout can be tested
861 // without creating propertygrid
866 // Update size properties
873 // Must check if properties exist (as they may be deleted).
875 // Using m_pPropGridManager, we can scan all pages automatically.
876 p
= m_pPropGridManager
->GetPropertyByName( wxT("Width") );
877 if ( p
&& !p
->IsValueUnspecified() )
878 m_pPropGridManager
->SetPropertyValue( p
, w
);
880 p
= m_pPropGridManager
->GetPropertyByName( wxT("Height") );
881 if ( p
&& !p
->IsValueUnspecified() )
882 m_pPropGridManager
->SetPropertyValue( p
, h
);
884 id
= m_pPropGridManager
->GetPropertyByName ( wxT("Size") );
886 m_pPropGridManager
->SetPropertyValue( id
, WXVARIANT(wxSize(w
,h
)) );
888 // Should always call event.Skip() in frame's SizeEvent handler
892 // -----------------------------------------------------------------------
894 void FormMain::OnPropertyGridChanging( wxPropertyGridEvent
& event
)
896 wxPGProperty
* p
= event
.GetProperty();
898 if ( p
->GetName() == wxT("Font") )
901 wxMessageBox(wxString::Format(wxT("'%s' is about to change (to variant of type '%s')\n\nAllow or deny?"),
902 p
->GetName().c_str(),event
.GetValue().GetType().c_str()),
903 wxT("Testing wxEVT_PG_CHANGING"), wxYES_NO
, m_pPropGridManager
);
907 wxASSERT(event
.CanVeto());
911 // Since we ask a question, it is better if we omit any validation
913 event
.SetValidationFailureBehavior(0);
919 // Note how we use three types of value getting in this method:
920 // A) event.GetPropertyValueAsXXX
921 // B) event.GetPropertValue, and then variant's GetXXX
922 // C) grid's GetPropertyValueAsXXX(id)
924 void FormMain::OnPropertyGridChange( wxPropertyGridEvent
& event
)
926 wxPGProperty
* property
= event
.GetProperty();
928 const wxString
& name
= property
->GetName();
930 // Properties store values internally as wxVariants, but it is preferred
931 // to use the more modern wxAny at the interface level
932 wxAny value
= property
->GetValue();
934 // Don't handle 'unspecified' values
935 if ( value
.IsNull() )
939 // FIXME-VC6: In order to compile on Visual C++ 6.0, wxANY_AS()
940 // macro is used. Unless you want to support this old
941 // compiler in your own code, you can use the more
942 // nicer form value.As<FOO>() instead of
943 // wxANY_AS(value, FOO).
946 // Some settings are disabled outside Windows platform
947 if ( name
== wxT("X") )
948 SetSize( wxANY_AS(value
, int), -1, -1, -1, wxSIZE_USE_EXISTING
);
949 else if ( name
== wxT("Y") )
950 // wxPGVariantToInt is safe long int value getter
951 SetSize ( -1, wxANY_AS(value
, int), -1, -1, wxSIZE_USE_EXISTING
);
952 else if ( name
== wxT("Width") )
953 SetSize ( -1, -1, wxANY_AS(value
, int), -1, wxSIZE_USE_EXISTING
);
954 else if ( name
== wxT("Height") )
955 SetSize ( -1, -1, -1, wxANY_AS(value
, int), wxSIZE_USE_EXISTING
);
956 else if ( name
== wxT("Label") )
958 SetTitle( wxANY_AS(value
, wxString
) );
960 else if ( name
== wxT("Password") )
962 static int pwdMode
= 0;
964 //m_pPropGridManager->SetPropertyAttribute(property, wxPG_STRING_PASSWORD, (long)pwdMode);
970 if ( name
== wxT("Font") )
972 wxFont font
= wxANY_AS(value
, wxFont
);
973 wxASSERT( font
.Ok() );
975 m_pPropGridManager
->SetFont( font
);
978 if ( name
== wxT("Margin Colour") )
980 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
981 m_pPropGridManager
->GetGrid()->SetMarginColour( cpv
.m_colour
);
983 else if ( name
== wxT("Cell Colour") )
985 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
986 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( cpv
.m_colour
);
988 else if ( name
== wxT("Line Colour") )
990 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
991 m_pPropGridManager
->GetGrid()->SetLineColour( cpv
.m_colour
);
993 else if ( name
== wxT("Cell Text Colour") )
995 wxColourPropertyValue cpv
= wxANY_AS(value
, wxColourPropertyValue
);
996 m_pPropGridManager
->GetGrid()->SetCellTextColour( cpv
.m_colour
);
1000 // -----------------------------------------------------------------------
1002 void FormMain::OnPropertyGridSelect( wxPropertyGridEvent
& event
)
1004 wxPGProperty
* property
= event
.GetProperty();
1007 m_itemEnable
->Enable( TRUE
);
1008 if ( property
->IsEnabled() )
1009 m_itemEnable
->SetItemLabel( wxT("Disable") );
1011 m_itemEnable
->SetItemLabel( wxT("Enable") );
1015 m_itemEnable
->Enable( FALSE
);
1019 wxPGProperty
* prop
= event
.GetProperty();
1020 wxStatusBar
* sb
= GetStatusBar();
1023 wxString
text(wxT("Selected: "));
1024 text
+= m_pPropGridManager
->GetPropertyLabel( prop
);
1025 sb
->SetStatusText ( text
);
1030 // -----------------------------------------------------------------------
1032 void FormMain::OnPropertyGridPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
1035 wxStatusBar
* sb
= GetStatusBar();
1036 wxString
text(wxT("Page Changed: "));
1037 text
+= m_pPropGridManager
->GetPageName(m_pPropGridManager
->GetSelectedPage());
1038 sb
->SetStatusText( text
);
1042 // -----------------------------------------------------------------------
1044 void FormMain::OnPropertyGridLabelEditBegin( wxPropertyGridEvent
& event
)
1046 wxLogMessage("wxPG_EVT_LABEL_EDIT_BEGIN(%s)",
1047 event
.GetProperty()->GetLabel().c_str());
1050 // -----------------------------------------------------------------------
1052 void FormMain::OnPropertyGridLabelEditEnding( wxPropertyGridEvent
& event
)
1054 wxLogMessage("wxPG_EVT_LABEL_EDIT_ENDING(%s)",
1055 event
.GetProperty()->GetLabel().c_str());
1058 // -----------------------------------------------------------------------
1060 void FormMain::OnPropertyGridHighlight( wxPropertyGridEvent
& WXUNUSED(event
) )
1064 // -----------------------------------------------------------------------
1066 void FormMain::OnPropertyGridItemRightClick( wxPropertyGridEvent
& event
)
1069 wxPGProperty
* prop
= event
.GetProperty();
1070 wxStatusBar
* sb
= GetStatusBar();
1073 wxString
text(wxT("Right-clicked: "));
1074 text
+= prop
->GetLabel();
1075 text
+= wxT(", name=");
1076 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1077 sb
->SetStatusText( text
);
1081 sb
->SetStatusText( wxEmptyString
);
1086 // -----------------------------------------------------------------------
1088 void FormMain::OnPropertyGridItemDoubleClick( wxPropertyGridEvent
& event
)
1091 wxPGProperty
* prop
= event
.GetProperty();
1092 wxStatusBar
* sb
= GetStatusBar();
1095 wxString
text(wxT("Double-clicked: "));
1096 text
+= prop
->GetLabel();
1097 text
+= wxT(", name=");
1098 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1099 sb
->SetStatusText ( text
);
1103 sb
->SetStatusText ( wxEmptyString
);
1108 // -----------------------------------------------------------------------
1110 void FormMain::OnPropertyGridButtonClick ( wxCommandEvent
& )
1113 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1114 wxStatusBar
* sb
= GetStatusBar();
1117 wxString
text(wxT("Button clicked: "));
1118 text
+= m_pPropGridManager
->GetPropertyLabel(prop
);
1119 text
+= wxT(", name=");
1120 text
+= m_pPropGridManager
->GetPropertyName(prop
);
1121 sb
->SetStatusText( text
);
1125 ::wxMessageBox(wxT("SHOULD NOT HAPPEN!!!"));
1130 // -----------------------------------------------------------------------
1132 void FormMain::OnPropertyGridItemCollapse( wxPropertyGridEvent
& )
1134 wxLogMessage(wxT("Item was Collapsed"));
1137 // -----------------------------------------------------------------------
1139 void FormMain::OnPropertyGridItemExpand( wxPropertyGridEvent
& )
1141 wxLogMessage(wxT("Item was Expanded"));
1144 // -----------------------------------------------------------------------
1146 void FormMain::OnPropertyGridColBeginDrag( wxPropertyGridEvent
& event
)
1148 if ( m_itemVetoDragging
->IsChecked() )
1150 wxLogMessage("Splitter %i resize was vetoed", event
.GetColumn());
1155 wxLogMessage("Splitter %i resize began", event
.GetColumn());
1159 // -----------------------------------------------------------------------
1161 void FormMain::OnPropertyGridColDragging( wxPropertyGridEvent
& event
)
1164 // For now, let's not spam the log output
1165 //wxLogMessage("Splitter %i is being resized", event.GetColumn());
1168 // -----------------------------------------------------------------------
1170 void FormMain::OnPropertyGridColEndDrag( wxPropertyGridEvent
& event
)
1172 wxLogMessage("Splitter %i resize ended", event
.GetColumn());
1175 // -----------------------------------------------------------------------
1177 // EVT_TEXT handling
1178 void FormMain::OnPropertyGridTextUpdate( wxCommandEvent
& event
)
1183 // -----------------------------------------------------------------------
1185 void FormMain::OnPropertyGridKeyEvent( wxKeyEvent
& WXUNUSED(event
) )
1187 // Occurs on wxGTK mostly, but not wxMSW.
1190 // -----------------------------------------------------------------------
1192 void FormMain::OnLabelTextChange( wxCommandEvent
& WXUNUSED(event
) )
1194 // Uncomment following to allow property label modify in real-time
1195 // wxPGProperty& p = m_pPropGridManager->GetGrid()->GetSelection();
1196 // if ( !p.IsOk() ) return;
1197 // m_pPropGridManager->SetPropertyLabel( p, m_tcPropLabel->DoGetValue() );
1200 // -----------------------------------------------------------------------
1202 static const wxChar
* _fs_windowstyle_labels
[] = {
1203 wxT("wxSIMPLE_BORDER"),
1204 wxT("wxDOUBLE_BORDER"),
1205 wxT("wxSUNKEN_BORDER"),
1206 wxT("wxRAISED_BORDER"),
1208 wxT("wxTRANSPARENT_WINDOW"),
1209 wxT("wxTAB_TRAVERSAL"),
1210 wxT("wxWANTS_CHARS"),
1211 #if wxNO_FULL_REPAINT_ON_RESIZE
1212 wxT("wxNO_FULL_REPAINT_ON_RESIZE"),
1215 wxT("wxALWAYS_SHOW_SB"),
1216 wxT("wxCLIP_CHILDREN"),
1217 #if wxFULL_REPAINT_ON_RESIZE
1218 wxT("wxFULL_REPAINT_ON_RESIZE"),
1220 (const wxChar
*) NULL
// terminator is always needed
1223 static const long _fs_windowstyle_values
[] = {
1229 wxTRANSPARENT_WINDOW
,
1232 #if wxNO_FULL_REPAINT_ON_RESIZE
1233 wxNO_FULL_REPAINT_ON_RESIZE
,
1238 #if wxFULL_REPAINT_ON_RESIZE
1239 wxFULL_REPAINT_ON_RESIZE
1243 static const wxChar
* _fs_framestyle_labels
[] = {
1248 wxT("wxSTAY_ON_TOP"),
1249 wxT("wxSYSTEM_MENU"),
1250 wxT("wxRESIZE_BORDER"),
1251 wxT("wxFRAME_TOOL_WINDOW"),
1252 wxT("wxFRAME_NO_TASKBAR"),
1253 wxT("wxFRAME_FLOAT_ON_PARENT"),
1254 wxT("wxFRAME_SHAPED"),
1255 (const wxChar
*) NULL
1258 static const long _fs_framestyle_values
[] = {
1266 wxFRAME_TOOL_WINDOW
,
1268 wxFRAME_FLOAT_ON_PARENT
,
1272 // -----------------------------------------------------------------------
1274 void FormMain::OnTestXRC(wxCommandEvent
& WXUNUSED(event
))
1276 wxMessageBox(wxT("Sorrt, not yet implemented"));
1279 void FormMain::OnEnableCommonValues(wxCommandEvent
& WXUNUSED(event
))
1281 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
1283 prop
->EnableCommonValue();
1285 wxMessageBox(wxT("First select a property"));
1288 void FormMain::PopulateWithStandardItems ()
1290 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1291 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Standard Items"));
1293 // Append is ideal way to add items to wxPropertyGrid.
1294 pg
->Append( new wxPropertyCategory(wxT("Appearance"),wxPG_LABEL
) );
1296 pg
->Append( new wxStringProperty(wxT("Label"),wxPG_LABEL
,GetTitle()) );
1297 pg
->Append( new wxFontProperty(wxT("Font"),wxPG_LABEL
) );
1298 pg
->SetPropertyHelpString ( wxT("Font"), wxT("Editing this will change font used in the property grid.") );
1300 pg
->Append( new wxSystemColourProperty(wxT("Margin Colour"),wxPG_LABEL
,
1301 pg
->GetGrid()->GetMarginColour()) );
1303 pg
->Append( new wxSystemColourProperty(wxT("Cell Colour"),wxPG_LABEL
,
1304 pg
->GetGrid()->GetCellBackgroundColour()) );
1305 pg
->Append( new wxSystemColourProperty(wxT("Cell Text Colour"),wxPG_LABEL
,
1306 pg
->GetGrid()->GetCellTextColour()) );
1307 pg
->Append( new wxSystemColourProperty(wxT("Line Colour"),wxPG_LABEL
,
1308 pg
->GetGrid()->GetLineColour()) );
1309 pg
->Append( new wxFlagsProperty(wxT("Window Styles"),wxPG_LABEL
,
1310 m_combinedFlags
, GetWindowStyle()) );
1312 //pg->SetPropertyAttribute(wxT("Window Styles"),wxPG_BOOL_USE_CHECKBOX,true,wxPG_RECURSE);
1314 pg
->Append( new wxCursorProperty(wxT("Cursor"),wxPG_LABEL
) );
1316 pg
->Append( new wxPropertyCategory(wxT("Position"),wxT("PositionCategory")) );
1317 pg
->SetPropertyHelpString( wxT("PositionCategory"), wxT("Change in items in this category will cause respective changes in frame.") );
1319 // Let's demonstrate 'Units' attribute here
1321 // Note that we use many attribute constants instead of strings here
1322 // (for instance, wxPG_ATTR_MIN, instead of wxT("min")).
1323 // Using constant may reduce binary size.
1325 pg
->Append( new wxIntProperty(wxT("Height"),wxPG_LABEL
,480) );
1326 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MIN
, (long)10 );
1327 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MAX
, (long)2048 );
1328 pg
->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1330 // Set value to unspecified so that Hint attribute will be demonstrated
1331 pg
->SetPropertyValueUnspecified("Height");
1332 pg
->SetPropertyAttribute("Height", wxPG_ATTR_HINT
,
1333 "Enter new height for window" );
1335 // Difference between hint and help string is that the hint is shown in
1336 // an empty value cell, while help string is shown either in the
1337 // description text box, as a tool tip, or on the status bar.
1338 pg
->SetPropertyHelpString("Height",
1339 "This property uses attributes \"Units\" and \"Hint\"." );
1341 pg
->Append( new wxIntProperty(wxT("Width"),wxPG_LABEL
,640) );
1342 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MIN
, (long)10 );
1343 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MAX
, (long)2048 );
1344 pg
->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1346 pg
->SetPropertyValueUnspecified(wxT("Width"));
1347 pg
->SetPropertyAttribute("Width", wxPG_ATTR_HINT
,
1348 "Enter new width for window" );
1349 pg
->SetPropertyHelpString("Width",
1350 "This property uses attributes \"Units\" and \"Hint\"." );
1352 pg
->Append( new wxIntProperty(wxT("X"),wxPG_LABEL
,10) );
1353 pg
->SetPropertyAttribute(wxT("X"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1354 pg
->SetPropertyHelpString(wxT("X"), wxT("This property uses \"Units\" attribute.") );
1356 pg
->Append( new wxIntProperty(wxT("Y"),wxPG_LABEL
,10) );
1357 pg
->SetPropertyAttribute(wxT("Y"), wxPG_ATTR_UNITS
, wxT("Pixels") );
1358 pg
->SetPropertyHelpString(wxT("Y"), wxT("This property uses \"Units\" attribute.") );
1360 const wxChar
* disabledHelpString
= wxT("This property is simply disabled. Inorder to have label disabled as well, ")
1361 wxT("you need to set wxPG_EX_GREY_LABEL_WHEN_DISABLED using SetExtraStyle.");
1363 pg
->Append( new wxPropertyCategory(wxT("Environment"),wxPG_LABEL
) );
1364 pg
->Append( new wxStringProperty(wxT("Operating System"),wxPG_LABEL
,::wxGetOsDescription()) );
1366 pg
->Append( new wxStringProperty(wxT("User Id"),wxPG_LABEL
,::wxGetUserId()) );
1367 pg
->Append( new wxDirProperty(wxT("User Home"),wxPG_LABEL
,::wxGetUserHome()) );
1368 pg
->Append( new wxStringProperty(wxT("User Name"),wxPG_LABEL
,::wxGetUserName()) );
1370 // Disable some of them
1371 pg
->DisableProperty( wxT("Operating System") );
1372 pg
->DisableProperty( wxT("User Id") );
1373 pg
->DisableProperty( wxT("User Name") );
1375 pg
->SetPropertyHelpString( wxT("Operating System"), disabledHelpString
);
1376 pg
->SetPropertyHelpString( wxT("User Id"), disabledHelpString
);
1377 pg
->SetPropertyHelpString( wxT("User Name"), disabledHelpString
);
1379 pg
->Append( new wxPropertyCategory(wxT("More Examples"),wxPG_LABEL
) );
1381 pg
->Append( new wxFontDataProperty( wxT("FontDataProperty"), wxPG_LABEL
) );
1382 pg
->SetPropertyHelpString( wxT("FontDataProperty"),
1383 wxT("This demonstrates wxFontDataProperty class defined in this sample app. ")
1384 wxT("It is exactly like wxFontProperty from the library, but also has colour sub-property.")
1387 pg
->Append( new wxDirsProperty(wxT("DirsProperty"),wxPG_LABEL
) );
1388 pg
->SetPropertyHelpString( wxT("DirsProperty"),
1389 wxT("This demonstrates wxDirsProperty class defined in this sample app. ")
1390 wxT("It is built with WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR macro, ")
1391 wxT("with custom action (dir dialog popup) defined.")
1394 pg
->Append( new wxAdvImageFileProperty(wxT("AdvImageFileProperty"),wxPG_LABEL
) );
1395 pg
->SetPropertyHelpString( wxT("AdvImageFileProperty"),
1396 wxT("This demonstrates wxAdvImageFileProperty class defined in this sample app. ")
1397 wxT("Button can be used to add new images to the popup list.")
1400 wxArrayDouble arrdbl
;
1407 pg
->Append( new wxArrayDoubleProperty(wxT("ArrayDoubleProperty"),wxPG_LABEL
,arrdbl
) );
1408 //pg->SetPropertyAttribute(wxT("ArrayDoubleProperty"),wxPG_FLOAT_PRECISION,(long)2);
1409 pg
->SetPropertyHelpString( wxT("ArrayDoubleProperty"),
1410 wxT("This demonstrates wxArrayDoubleProperty class defined in this sample app. ")
1411 wxT("It is an example of a custom list editor property.")
1414 pg
->Append( new wxLongStringProperty(wxT("Information"),wxPG_LABEL
,
1415 wxT("Editing properties will have immediate effect on this window, ")
1416 wxT("and vice versa (atleast in most cases, that is).")
1418 pg
->SetPropertyHelpString( wxT("Information"),
1419 wxT("This property is read-only.") );
1421 pg
->SetPropertyReadOnly( wxT("Information"), true );
1424 // Set test information for cells in columns 3 and 4
1425 // (reserve column 2 for displaying units)
1426 wxPropertyGridIterator it
;
1427 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_FOLDER
);
1429 for ( it
= pg
->GetGrid()->GetIterator();
1433 wxPGProperty
* p
= *it
;
1434 if ( p
->IsCategory() )
1437 pg
->SetPropertyCell( p
, 3, wxT("Cell 3"), bmp
);
1438 pg
->SetPropertyCell( p
, 4, wxT("Cell 4"), wxNullBitmap
, *wxWHITE
, *wxBLACK
);
1442 // -----------------------------------------------------------------------
1444 void FormMain::PopulateWithExamples ()
1446 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1447 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("Examples"));
1451 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1452 //pg->SetPropertyHelpString ( wxT("Examples"), wxT("This category has example of (almost) every built-in property class.") );
1455 pg
->Append( new wxIntProperty ( wxT("SpinCtrl"), wxPG_LABEL
, 0 ) );
1457 pg
->SetPropertyEditor( wxT("SpinCtrl"), wxPGEditor_SpinCtrl
);
1458 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MIN
, (long)-10 ); // Use constants instead of string
1459 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MAX
, (long)16384 ); // for reduced binary size.
1460 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Step"), (long)2 );
1461 pg
->SetPropertyAttribute( wxT("SpinCtrl"), wxT("MotionSpin"), true );
1462 //pg->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Wrap"), true );
1464 pg
->SetPropertyHelpString( wxT("SpinCtrl"),
1465 wxT("This is regular wxIntProperty, which editor has been ")
1466 wxT("changed to wxPGEditor_SpinCtrl. Note however that ")
1467 wxT("static wxPropertyGrid::RegisterAdditionalEditors() ")
1468 wxT("needs to be called prior to using it."));
1472 // Add bool property
1473 pg
->Append( new wxBoolProperty( wxT("BoolProperty"), wxPG_LABEL
, false ) );
1475 // Add bool property with check box
1476 pg
->Append( new wxBoolProperty( wxT("BoolProperty with CheckBox"), wxPG_LABEL
, false ) );
1477 pg
->SetPropertyAttribute( wxT("BoolProperty with CheckBox"),
1478 wxPG_BOOL_USE_CHECKBOX
,
1481 pg
->SetPropertyHelpString( wxT("BoolProperty with CheckBox"),
1482 wxT("Property attribute wxPG_BOOL_USE_CHECKBOX has been set to true.") );
1484 pid
= pg
->Append( new wxFloatProperty( wxT("FloatProperty"),
1488 // A string property that can be edited in a separate editor dialog.
1489 pg
->Append( new wxLongStringProperty( wxT("LongStringProperty"), wxT("LongStringProp"),
1490 wxT("This is much longer string than the first one. Edit it by clicking the button.") ) );
1492 // A property that edits a wxArrayString.
1493 wxArrayString example_array
;
1494 example_array
.Add( wxT("String 1"));
1495 example_array
.Add( wxT("String 2"));
1496 example_array
.Add( wxT("String 3"));
1497 pg
->Append( new wxArrayStringProperty( wxT("ArrayStringProperty"), wxPG_LABEL
,
1500 // Test adding same category multiple times ( should not actually create a new one )
1501 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1503 // A file selector property. Note that argument between name
1504 // and initial value is wildcard (format same as in wxFileDialog).
1505 prop
= new wxFileProperty( wxT("FileProperty"), wxT("TextFile") );
1508 prop
->SetAttribute(wxPG_FILE_WILDCARD
,wxT("Text Files (*.txt)|*.txt"));
1509 prop
->SetAttribute(wxPG_FILE_DIALOG_TITLE
,wxT("Custom File Dialog Title"));
1510 prop
->SetAttribute(wxPG_FILE_SHOW_FULL_PATH
,false);
1513 prop
->SetAttribute(wxPG_FILE_SHOW_RELATIVE_PATH
,wxT("C:\\Windows"));
1514 pg
->SetPropertyValue(prop
,wxT("C:\\Windows\\System32\\msvcrt71.dll"));
1518 // An image file property. Arguments are just like for FileProperty, but
1519 // wildcard is missing (it is autogenerated from supported image formats).
1520 // If you really need to override it, create property separately, and call
1521 // its SetWildcard method.
1522 pg
->Append( new wxImageFileProperty( wxT("ImageFile"), wxPG_LABEL
) );
1525 pid
= pg
->Append( new wxColourProperty(wxT("ColourProperty"),wxPG_LABEL
,*wxRED
) );
1526 //pg->SetPropertyAttribute(pid,wxPG_COLOUR_ALLOW_CUSTOM,false);
1527 pg
->SetPropertyEditor( wxT("ColourProperty"), wxPGEditor_ComboBox
);
1528 pg
->GetProperty(wxT("ColourProperty"))->SetFlag(wxPG_PROP_AUTO_UNSPECIFIED
);
1529 pg
->SetPropertyHelpString( wxT("ColourProperty"),
1530 wxT("wxPropertyGrid::SetPropertyEditor method has been used to change ")
1531 wxT("editor of this property to wxPGEditor_ComboBox)"));
1534 // This demonstrates using alternative editor for colour property
1535 // to trigger colour dialog directly from button.
1536 pg
->Append( new wxColourProperty(wxT("ColourProperty2"),wxPG_LABEL
,*wxGREEN
) );
1539 // wxEnumProperty does not store strings or even list of strings
1540 // ( so that's why they are static in function ).
1541 static const wxChar
* enum_prop_labels
[] = { wxT("One Item"),
1542 wxT("Another Item"), wxT("One More"), wxT("This Is Last"), NULL
};
1544 // this value array would be optional if values matched string indexes
1545 static long enum_prop_values
[] = { 40, 80, 120, 160 };
1547 // note that the initial value (the last argument) is the actual value,
1548 // not index or anything like that. Thus, our value selects "Another Item".
1550 // 0 before value is number of items. If it is 0, like in our example,
1551 // number of items is calculated, and this requires that the string pointer
1552 // array is terminated with NULL.
1553 pg
->Append( new wxEnumProperty(wxT("EnumProperty"),wxPG_LABEL
,
1554 enum_prop_labels
, enum_prop_values
, 80 ) );
1558 // use basic table from our previous example
1559 // can also set/add wxArrayStrings and wxArrayInts directly.
1560 soc
.Set( enum_prop_labels
, enum_prop_values
);
1563 soc
.Add( wxT("Look, it continues"), 200 );
1564 soc
.Add( wxT("Even More"), 240 );
1565 soc
.Add( wxT("And More"), 280 );
1567 soc
.Add( wxT("True End of the List"), 320 );
1569 // Test custom colours ([] operator of wxPGChoices returns
1570 // references to wxPGChoiceEntry).
1571 soc
[1].SetFgCol(*wxRED
);
1572 soc
[1].SetBgCol(*wxLIGHT_GREY
);
1573 soc
[2].SetFgCol(*wxGREEN
);
1574 soc
[2].SetBgCol(*wxLIGHT_GREY
);
1575 soc
[3].SetFgCol(*wxBLUE
);
1576 soc
[3].SetBgCol(*wxLIGHT_GREY
);
1577 soc
[4].SetBitmap(wxArtProvider::GetBitmap(wxART_FOLDER
));
1579 pg
->Append( new wxEnumProperty(wxT("EnumProperty 2"),
1583 pg
->GetProperty(wxT("EnumProperty 2"))->AddChoice(wxT("Testing Extra"), 360);
1585 // Here we only display the original 'soc' choices
1586 pg
->Append( new wxEnumProperty(wxT("EnumProperty 3"),wxPG_LABEL
,
1589 // Test Hint attribute in EnumProperty
1590 pg
->GetProperty("EnumProperty 3")->SetAttribute("Hint", "Dummy Hint");
1592 pg
->SetPropertyHelpString("EnumProperty 3",
1593 "This property uses \"Hint\" attribute.");
1595 // 'soc' plus one exclusive extra choice "4th only"
1596 pg
->Append( new wxEnumProperty(wxT("EnumProperty 4"),wxPG_LABEL
,
1598 pg
->GetProperty(wxT("EnumProperty 4"))->AddChoice(wxT("4th only"), 360);
1600 pg
->SetPropertyHelpString(wxT("EnumProperty 4"),
1601 wxT("Should have one extra item when compared to EnumProperty 3"));
1603 // Password property example.
1604 pg
->Append( new wxStringProperty(wxT("Password"),wxPG_LABEL
, wxT("password")) );
1605 pg
->SetPropertyAttribute( wxT("Password"), wxPG_STRING_PASSWORD
, true );
1606 pg
->SetPropertyHelpString( wxT("Password"),
1607 wxT("Has attribute wxPG_STRING_PASSWORD set to true") );
1609 // String editor with dir selector button. Uses wxEmptyString as name, which
1610 // is allowed (naturally, in this case property cannot be accessed by name).
1611 pg
->Append( new wxDirProperty( wxT("DirProperty"), wxPG_LABEL
, ::wxGetUserHome()) );
1612 pg
->SetPropertyAttribute( wxT("DirProperty"),
1613 wxPG_DIR_DIALOG_MESSAGE
,
1614 wxT("This is a custom dir dialog message") );
1616 // Add string property - first arg is label, second name, and third initial value
1617 pg
->Append( new wxStringProperty ( wxT("StringProperty"), wxPG_LABEL
) );
1618 pg
->SetPropertyMaxLength( wxT("StringProperty"), 6 );
1619 pg
->SetPropertyHelpString( wxT("StringProperty"),
1620 wxT("Max length of this text has been limited to 6, using wxPropertyGrid::SetPropertyMaxLength.") );
1622 // Set value after limiting so that it will be applied
1623 pg
->SetPropertyValue( wxT("StringProperty"), wxT("some text") );
1626 // Demonstrate "AutoComplete" attribute
1627 pg
->Append( new wxStringProperty( "StringProperty AutoComplete",
1630 wxArrayString autoCompleteStrings
;
1631 autoCompleteStrings
.Add("One choice");
1632 autoCompleteStrings
.Add("Another choice");
1633 autoCompleteStrings
.Add("Another choice, yeah");
1634 autoCompleteStrings
.Add("Yet another choice");
1635 autoCompleteStrings
.Add("Yet another choice, bear with me");
1636 pg
->SetPropertyAttribute( "StringProperty AutoComplete",
1638 autoCompleteStrings
);
1640 pg
->SetPropertyHelpString( "StringProperty AutoComplete",
1641 "AutoComplete attribute has been set for this property "
1642 "(try writing something beginning with 'a', 'o' or 'y').");
1644 // Add string property with arbitrarily wide bitmap in front of it. We
1645 // intentionally lower-than-typical row height here so that the ugly
1646 // scaling code wont't be run.
1647 pg
->Append( new wxStringProperty( wxT("StringPropertyWithBitmap"),
1649 wxT("Test Text")) );
1650 wxBitmap
myTestBitmap(60, 15, 32);
1652 mdc
.SelectObject(myTestBitmap
);
1654 mdc
.SetPen(*wxBLACK
);
1655 mdc
.DrawLine(0, 0, 60, 15);
1656 mdc
.SelectObject(wxNullBitmap
);
1657 pg
->SetPropertyImage( wxT("StringPropertyWithBitmap"), myTestBitmap
);
1660 // this value array would be optional if values matched string indexes
1661 //long flags_prop_values[] = { wxICONIZE, wxCAPTION, wxMINIMIZE_BOX, wxMAXIMIZE_BOX };
1663 //pg->Append( wxFlagsProperty(wxT("Example of FlagsProperty"),wxT("FlagsProp"),
1664 // flags_prop_labels, flags_prop_values, 0, GetWindowStyle() ) );
1667 // Multi choice dialog.
1668 wxArrayString tchoices
;
1669 tchoices
.Add(wxT("Cabbage"));
1670 tchoices
.Add(wxT("Carrot"));
1671 tchoices
.Add(wxT("Onion"));
1672 tchoices
.Add(wxT("Potato"));
1673 tchoices
.Add(wxT("Strawberry"));
1675 wxArrayString tchoicesValues
;
1676 tchoicesValues
.Add(wxT("Carrot"));
1677 tchoicesValues
.Add(wxT("Potato"));
1679 pg
->Append( new wxEnumProperty(wxT("EnumProperty X"),wxPG_LABEL
, tchoices
) );
1681 pg
->Append( new wxMultiChoiceProperty( wxT("MultiChoiceProperty"), wxPG_LABEL
,
1682 tchoices
, tchoicesValues
) );
1683 pg
->SetPropertyAttribute( wxT("MultiChoiceProperty"), wxT("UserStringMode"), true );
1685 pg
->Append( new wxSizeProperty( wxT("SizeProperty"), wxT("Size"), GetSize() ) );
1686 pg
->Append( new wxPointProperty( wxT("PointProperty"), wxT("Position"), GetPosition() ) );
1689 pg
->Append( new wxUIntProperty( wxT("UIntProperty"), wxPG_LABEL
, wxULongLong(wxULL(0xFEEEFEEEFEEE))));
1690 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX
, wxPG_PREFIX_NONE
);
1691 pg
->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE
, wxPG_BASE_HEX
);
1692 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX, wxPG_PREFIX_NONE );
1693 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE, wxPG_BASE_OCT );
1696 // wxEditEnumProperty
1698 eech
.Add(wxT("Choice 1"));
1699 eech
.Add(wxT("Choice 2"));
1700 eech
.Add(wxT("Choice 3"));
1701 pg
->Append( new wxEditEnumProperty("EditEnumProperty",
1704 "Choice not in the list") );
1706 // Test Hint attribute in EditEnumProperty
1707 pg
->GetProperty("EditEnumProperty")->SetAttribute("Hint", "Dummy Hint");
1710 //wxTextValidator validator1(wxFILTER_NUMERIC,&v_);
1711 //pg->SetPropertyValidator( wxT("EditEnumProperty"), validator1 );
1715 // wxDateTimeProperty
1716 pg
->Append( new wxDateProperty(wxT("DateProperty"), wxPG_LABEL
, wxDateTime::Now() ) );
1718 #if wxUSE_DATEPICKCTRL
1719 pg
->SetPropertyAttribute( wxT("DateProperty"), wxPG_DATE_PICKER_STYLE
,
1720 (long)(wxDP_DROPDOWN
|
1724 pg
->SetPropertyHelpString( wxT("DateProperty"),
1725 wxT("Attribute wxPG_DATE_PICKER_STYLE has been set to (long)")
1726 wxT("(wxDP_DROPDOWN | wxDP_SHOWCENTURY | wxDP_ALLOWNONE).") );
1732 // Add Triangle properties as both wxTriangleProperty and
1733 // a generic parent property (using wxStringProperty).
1735 wxPGProperty
* topId
= pg
->Append( new wxStringProperty(wxT("3D Object"), wxPG_LABEL
, wxT("<composed>")) );
1737 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 1"), wxT("Triangle 1"), wxT("<composed>")) );
1738 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1739 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1740 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1742 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 2"), wxT("Triangle 2") ) );
1744 pg
->SetPropertyHelpString( wxT("3D Object"),
1745 wxT("3D Object is wxStringProperty with value \"<composed>\". Two of its children are similar wxStringProperties with ")
1746 wxT("three wxVectorProperty children, and other two are custom wxTriangleProperties.") );
1748 pid
= pg
->AppendIn( topId
, new wxStringProperty(wxT("Triangle 3"), wxT("Triangle 3"), wxT("<composed>")) );
1749 pg
->AppendIn( pid
, new wxVectorProperty( wxT("A"), wxPG_LABEL
) );
1750 pg
->AppendIn( pid
, new wxVectorProperty( wxT("B"), wxPG_LABEL
) );
1751 pg
->AppendIn( pid
, new wxVectorProperty( wxT("C"), wxPG_LABEL
) );
1753 pg
->AppendIn( topId
, new wxTriangleProperty( wxT("Triangle 4"), wxT("Triangle 4") ) );
1756 // This snippet is a doc sample test
1758 wxPGProperty
* carProp
= pg
->Append(new wxStringProperty(wxT("Car"),
1760 wxT("<composed>")));
1762 pg
->AppendIn(carProp
, new wxStringProperty(wxT("Model"),
1764 wxT("Lamborghini Diablo SV")));
1766 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Engine Size (cc)"),
1770 wxPGProperty
* speedsProp
= pg
->AppendIn(carProp
,
1771 new wxStringProperty(wxT("Speeds"),
1773 wxT("<composed>")));
1775 pg
->AppendIn( speedsProp
, new wxIntProperty(wxT("Max. Speed (mph)"),
1777 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("0-100 mph (sec)"),
1779 pg
->AppendIn( speedsProp
, new wxFloatProperty(wxT("1/4 mile (sec)"),
1782 // This is how child property can be referred to by name
1783 pg
->SetPropertyValue( wxT("Car.Speeds.Max. Speed (mph)"), 300 );
1785 pg
->AppendIn(carProp
, new wxIntProperty(wxT("Price ($)"),
1789 pg
->AppendIn(carProp
, new wxBoolProperty(wxT("Convertible"),
1793 // Displayed value of "Car" property is now very close to this:
1794 // "Lamborghini Diablo SV; 5707 [300; 3.9; 8.6] 300000"
1797 // Test wxSampleMultiButtonEditor
1798 pg
->Append( new wxLongStringProperty(wxT("MultipleButtons"), wxPG_LABEL
) );
1799 pg
->SetPropertyEditor(wxT("MultipleButtons"), m_pSampleMultiButtonEditor
);
1801 // Test SingleChoiceProperty
1802 pg
->Append( new SingleChoiceProperty(wxT("SingleChoiceProperty")) );
1806 // Test adding variable height bitmaps in wxPGChoices
1809 bc
.Add(wxT("Wee"), wxBitmap(16, 16));
1810 bc
.Add(wxT("Not so wee"), wxBitmap(32, 32));
1811 bc
.Add(wxT("Friggin' huge"), wxBitmap(64, 64));
1813 pg
->Append( new wxEnumProperty(wxT("Variable Height Bitmaps"),
1819 // Test how non-editable composite strings appear
1820 pid
= new wxStringProperty(wxT("wxWidgets Traits"), wxPG_LABEL
, wxT("<composed>"));
1821 pg
->SetPropertyReadOnly(pid
);
1824 // For testing purposes, combine two methods of adding children
1827 pid
->AppendChild( new wxStringProperty(wxT("Latest Release"),
1830 pid
->AppendChild( new wxBoolProperty(wxT("Win API"),
1836 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1837 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Cocoa"), wxPG_LABEL
, true) );
1838 pg
->AppendIn(pid
, new wxBoolProperty(wxT("BeOS"), wxPG_LABEL
, false) );
1839 pg
->AppendIn(pid
, new wxStringProperty(wxT("SVN Trunk Version"), wxPG_LABEL
, wxT("2.9.0")) );
1840 pg
->AppendIn(pid
, new wxBoolProperty(wxT("GTK+"), wxPG_LABEL
, true) );
1841 pg
->AppendIn(pid
, new wxBoolProperty(wxT("Sky OS"), wxPG_LABEL
, false) );
1842 pg
->AppendIn(pid
, new wxBoolProperty(wxT("QT"), wxPG_LABEL
, false) );
1844 AddTestProperties(pg
);
1847 // -----------------------------------------------------------------------
1849 void FormMain::PopulateWithLibraryConfig ()
1851 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
1852 wxPropertyGridPage
* pg
= pgman
->GetPage(wxT("wxWidgets Library Config"));
1854 // Set custom column proportions (here in the sample app we need
1855 // to check if the grid has wxPG_SPLITTER_AUTO_CENTER style. You usually
1856 // need not to do it in your application).
1857 if ( pgman
->HasFlag(wxPG_SPLITTER_AUTO_CENTER
) )
1859 pg
->SetColumnProportion(0, 3);
1860 pg
->SetColumnProportion(1, 1);
1865 wxBitmap bmp
= wxArtProvider::GetBitmap(wxART_REPORT_VIEW
);
1869 wxFont italicFont
= pgman
->GetGrid()->GetCaptionFont();
1870 italicFont
.SetStyle(wxFONTSTYLE_ITALIC
);
1872 wxString italicFontHelp
= "Font of this property's wxPGCell has "
1873 "been modified. Obtain property's cell "
1874 "with wxPGProperty::"
1875 "GetOrCreateCell(column).";
1877 #define ADD_WX_LIB_CONF_GROUP(A) \
1878 cat = pg->AppendIn( pid, new wxPropertyCategory(A) ); \
1879 pg->SetPropertyCell( cat, 0, wxPG_LABEL, bmp ); \
1880 cat->GetCell(0).SetFont(italicFont); \
1881 cat->SetHelpString(italicFontHelp);
1883 #define ADD_WX_LIB_CONF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)((A>0)?true:false)));
1884 #define ADD_WX_LIB_CONF_NODEF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)false) ); \
1885 pg->DisableProperty(wxT(#A));
1887 pid
= pg
->Append( new wxPropertyCategory( wxT("wxWidgets Library Configuration") ) );
1888 pg
->SetPropertyCell( pid
, 0, wxPG_LABEL
, bmp
);
1890 // Both of following lines would set a label for the second column
1891 pg
->SetPropertyCell( pid
, 1, "Is Enabled" );
1892 pid
->SetValue("Is Enabled");
1894 ADD_WX_LIB_CONF_GROUP(wxT("Global Settings"))
1895 ADD_WX_LIB_CONF( wxUSE_GUI
)
1897 ADD_WX_LIB_CONF_GROUP(wxT("Compatibility Settings"))
1898 #if defined(WXWIN_COMPATIBILITY_2_2)
1899 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_2
)
1901 #if defined(WXWIN_COMPATIBILITY_2_4)
1902 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_4
)
1904 #if defined(WXWIN_COMPATIBILITY_2_6)
1905 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_6
)
1907 #if defined(WXWIN_COMPATIBILITY_2_8)
1908 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_8
)
1910 #ifdef wxFONT_SIZE_COMPATIBILITY
1911 ADD_WX_LIB_CONF( wxFONT_SIZE_COMPATIBILITY
)
1913 ADD_WX_LIB_CONF_NODEF ( wxFONT_SIZE_COMPATIBILITY
)
1915 #ifdef wxDIALOG_UNIT_COMPATIBILITY
1916 ADD_WX_LIB_CONF( wxDIALOG_UNIT_COMPATIBILITY
)
1918 ADD_WX_LIB_CONF_NODEF ( wxDIALOG_UNIT_COMPATIBILITY
)
1921 ADD_WX_LIB_CONF_GROUP(wxT("Debugging Settings"))
1922 ADD_WX_LIB_CONF( wxUSE_DEBUG_CONTEXT
)
1923 ADD_WX_LIB_CONF( wxUSE_MEMORY_TRACING
)
1924 ADD_WX_LIB_CONF( wxUSE_GLOBAL_MEMORY_OPERATORS
)
1925 ADD_WX_LIB_CONF( wxUSE_DEBUG_NEW_ALWAYS
)
1926 ADD_WX_LIB_CONF( wxUSE_ON_FATAL_EXCEPTION
)
1928 ADD_WX_LIB_CONF_GROUP(wxT("Unicode Support"))
1929 ADD_WX_LIB_CONF( wxUSE_UNICODE
)
1930 ADD_WX_LIB_CONF( wxUSE_UNICODE_MSLU
)
1932 ADD_WX_LIB_CONF_GROUP(wxT("Global Features"))
1933 ADD_WX_LIB_CONF( wxUSE_EXCEPTIONS
)
1934 ADD_WX_LIB_CONF( wxUSE_EXTENDED_RTTI
)
1935 ADD_WX_LIB_CONF( wxUSE_STL
)
1936 ADD_WX_LIB_CONF( wxUSE_LOG
)
1937 ADD_WX_LIB_CONF( wxUSE_LOGWINDOW
)
1938 ADD_WX_LIB_CONF( wxUSE_LOGGUI
)
1939 ADD_WX_LIB_CONF( wxUSE_LOG_DIALOG
)
1940 ADD_WX_LIB_CONF( wxUSE_CMDLINE_PARSER
)
1941 ADD_WX_LIB_CONF( wxUSE_THREADS
)
1942 ADD_WX_LIB_CONF( wxUSE_STREAMS
)
1943 ADD_WX_LIB_CONF( wxUSE_STD_IOSTREAM
)
1945 ADD_WX_LIB_CONF_GROUP(wxT("Non-GUI Features"))
1946 ADD_WX_LIB_CONF( wxUSE_LONGLONG
)
1947 ADD_WX_LIB_CONF( wxUSE_FILE
)
1948 ADD_WX_LIB_CONF( wxUSE_FFILE
)
1949 ADD_WX_LIB_CONF( wxUSE_FSVOLUME
)
1950 ADD_WX_LIB_CONF( wxUSE_TEXTBUFFER
)
1951 ADD_WX_LIB_CONF( wxUSE_TEXTFILE
)
1952 ADD_WX_LIB_CONF( wxUSE_INTL
)
1953 ADD_WX_LIB_CONF( wxUSE_DATETIME
)
1954 ADD_WX_LIB_CONF( wxUSE_TIMER
)
1955 ADD_WX_LIB_CONF( wxUSE_STOPWATCH
)
1956 ADD_WX_LIB_CONF( wxUSE_CONFIG
)
1957 #ifdef wxUSE_CONFIG_NATIVE
1958 ADD_WX_LIB_CONF( wxUSE_CONFIG_NATIVE
)
1960 ADD_WX_LIB_CONF_NODEF ( wxUSE_CONFIG_NATIVE
)
1962 ADD_WX_LIB_CONF( wxUSE_DIALUP_MANAGER
)
1963 ADD_WX_LIB_CONF( wxUSE_DYNLIB_CLASS
)
1964 ADD_WX_LIB_CONF( wxUSE_DYNAMIC_LOADER
)
1965 ADD_WX_LIB_CONF( wxUSE_SOCKETS
)
1966 ADD_WX_LIB_CONF( wxUSE_FILESYSTEM
)
1967 ADD_WX_LIB_CONF( wxUSE_FS_ZIP
)
1968 ADD_WX_LIB_CONF( wxUSE_FS_INET
)
1969 ADD_WX_LIB_CONF( wxUSE_ZIPSTREAM
)
1970 ADD_WX_LIB_CONF( wxUSE_ZLIB
)
1971 ADD_WX_LIB_CONF( wxUSE_APPLE_IEEE
)
1972 ADD_WX_LIB_CONF( wxUSE_JOYSTICK
)
1973 ADD_WX_LIB_CONF( wxUSE_FONTMAP
)
1974 ADD_WX_LIB_CONF( wxUSE_MIMETYPE
)
1975 ADD_WX_LIB_CONF( wxUSE_PROTOCOL
)
1976 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FILE
)
1977 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FTP
)
1978 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_HTTP
)
1979 ADD_WX_LIB_CONF( wxUSE_URL
)
1980 #ifdef wxUSE_URL_NATIVE
1981 ADD_WX_LIB_CONF( wxUSE_URL_NATIVE
)
1983 ADD_WX_LIB_CONF_NODEF ( wxUSE_URL_NATIVE
)
1985 ADD_WX_LIB_CONF( wxUSE_REGEX
)
1986 ADD_WX_LIB_CONF( wxUSE_SYSTEM_OPTIONS
)
1987 ADD_WX_LIB_CONF( wxUSE_SOUND
)
1989 ADD_WX_LIB_CONF( wxUSE_XRC
)
1991 ADD_WX_LIB_CONF_NODEF ( wxUSE_XRC
)
1993 ADD_WX_LIB_CONF( wxUSE_XML
)
1995 // Set them to use check box.
1996 pg
->SetPropertyAttribute(pid
,wxPG_BOOL_USE_CHECKBOX
,true,wxPG_RECURSE
);
2001 // Handle events of the third page here.
2002 class wxMyPropertyGridPage
: public wxPropertyGridPage
2006 // Return false here to indicate unhandled events should be
2007 // propagated to manager's parent, as normal.
2008 virtual bool IsHandlingAllEvents() const { return false; }
2012 virtual wxPGProperty
* DoInsert( wxPGProperty
* parent
,
2014 wxPGProperty
* property
)
2016 return wxPropertyGridPage::DoInsert(parent
,index
,property
);
2019 void OnPropertySelect( wxPropertyGridEvent
& event
);
2020 void OnPropertyChanging( wxPropertyGridEvent
& event
);
2021 void OnPropertyChange( wxPropertyGridEvent
& event
);
2022 void OnPageChange( wxPropertyGridEvent
& event
);
2025 DECLARE_EVENT_TABLE()
2029 BEGIN_EVENT_TABLE(wxMyPropertyGridPage
, wxPropertyGridPage
)
2030 EVT_PG_SELECTED( wxID_ANY
, wxMyPropertyGridPage::OnPropertySelect
)
2031 EVT_PG_CHANGING( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChanging
)
2032 EVT_PG_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPropertyChange
)
2033 EVT_PG_PAGE_CHANGED( wxID_ANY
, wxMyPropertyGridPage::OnPageChange
)
2037 void wxMyPropertyGridPage::OnPropertySelect( wxPropertyGridEvent
& WXUNUSED(event
) )
2039 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertySelect()"));
2042 void wxMyPropertyGridPage::OnPropertyChange( wxPropertyGridEvent
& event
)
2044 wxPGProperty
* p
= event
.GetProperty();
2045 wxLogVerbose(wxT("wxMyPropertyGridPage::OnPropertyChange('%s', to value '%s')"),
2046 p
->GetName().c_str(),
2047 p
->GetDisplayedString().c_str());
2050 void wxMyPropertyGridPage::OnPropertyChanging( wxPropertyGridEvent
& event
)
2052 wxPGProperty
* p
= event
.GetProperty();
2053 wxLogVerbose(wxT("wxMyPropertyGridPage::OnPropertyChanging('%s', to value '%s')"),
2054 p
->GetName().c_str(),
2055 event
.GetValue().GetString().c_str());
2058 void wxMyPropertyGridPage::OnPageChange( wxPropertyGridEvent
& WXUNUSED(event
) )
2060 wxLogDebug(wxT("wxMyPropertyGridPage::OnPageChange()"));
2064 class wxPGKeyHandler
: public wxEvtHandler
2068 void OnKeyEvent( wxKeyEvent
& event
)
2070 wxMessageBox(wxString::Format(wxT("%i"),event
.GetKeyCode()));
2074 DECLARE_EVENT_TABLE()
2077 BEGIN_EVENT_TABLE(wxPGKeyHandler
,wxEvtHandler
)
2078 EVT_KEY_DOWN( wxPGKeyHandler::OnKeyEvent
)
2082 // -----------------------------------------------------------------------
2084 void FormMain::InitPanel()
2089 wxWindow
* panel
= new wxPanel(this, wxID_ANY
,
2090 wxPoint(0, 0), wxSize(400, 400),
2095 wxBoxSizer
* topSizer
= new wxBoxSizer ( wxVERTICAL
);
2097 m_topSizer
= topSizer
;
2100 void FormMain::FinalizePanel( bool wasCreated
)
2102 // Button for tab traversal testing
2103 m_topSizer
->Add( new wxButton(m_panel
, wxID_ANY
,
2104 wxS("Should be able to move here with Tab")),
2107 m_panel
->SetSizer( m_topSizer
);
2108 m_topSizer
->SetSizeHints( m_panel
);
2110 wxBoxSizer
* panelSizer
= new wxBoxSizer( wxHORIZONTAL
);
2111 panelSizer
->Add( m_panel
, 1, wxEXPAND
|wxFIXED_MINSIZE
);
2113 SetSizer( panelSizer
);
2114 panelSizer
->SetSizeHints( this );
2117 FinalizeFramePosition();
2120 void FormMain::PopulateGrid()
2122 wxPropertyGridManager
* pgman
= m_pPropGridManager
;
2123 pgman
->AddPage(wxT("Standard Items"));
2125 PopulateWithStandardItems();
2127 pgman
->AddPage(wxT("wxWidgets Library Config"));
2129 PopulateWithLibraryConfig();
2131 wxPropertyGridPage
* myPage
= new wxMyPropertyGridPage();
2132 myPage
->Append( new wxIntProperty ( wxT("IntProperty"), wxPG_LABEL
, 12345678 ) );
2134 // Use wxMyPropertyGridPage (see above) to test the
2135 // custom wxPropertyGridPage feature.
2136 pgman
->AddPage(wxT("Examples"),wxNullBitmap
,myPage
);
2138 PopulateWithExamples();
2141 void FormMain::CreateGrid( int style
, int extraStyle
)
2144 // This function (re)creates the property grid in our sample
2148 style
= // default style
2149 wxPG_BOLD_MODIFIED
|
2150 wxPG_SPLITTER_AUTO_CENTER
|
2152 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2154 //wxPG_HIDE_CATEGORIES |
2155 //wxPG_LIMITED_EDITING |
2159 if ( extraStyle
== -1 )
2160 // default extra style
2161 extraStyle
= wxPG_EX_MODE_BUTTONS
|
2162 wxPG_EX_MULTIPLE_SELECTION
;
2163 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2164 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2165 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2166 //| wxPG_EX_HELP_AS_TOOLTIPS
2168 bool wasCreated
= m_panel
? false : true;
2173 // This shows how to combine two static choice descriptors
2174 m_combinedFlags
.Add( _fs_windowstyle_labels
, _fs_windowstyle_values
);
2175 m_combinedFlags
.Add( _fs_framestyle_labels
, _fs_framestyle_values
);
2177 wxPropertyGridManager
* pgman
= m_pPropGridManager
=
2178 new wxPropertyGridManager(m_panel
,
2179 // Don't change this into wxID_ANY in the sample, or the
2180 // event handling will obviously be broken.
2183 wxSize(100, 100), // FIXME: wxDefaultSize gives assertion in propgrid.
2184 // But calling SetInitialSize in manager changes the code
2185 // order to the grid gets created immediately, before SetExtraStyle
2189 m_propGrid
= pgman
->GetGrid();
2191 pgman
->SetExtraStyle(extraStyle
);
2193 m_pPropGridManager
->SetValidationFailureBehavior( wxPG_VFB_BEEP
| wxPG_VFB_MARK_CELL
| wxPG_VFB_SHOW_MESSAGE
);
2195 m_pPropGridManager
->GetGrid()->SetVerticalSpacing( 2 );
2198 // Set somewhat different unspecified value appearance
2200 cell
.SetText("Unspecified");
2201 cell
.SetFgCol(*wxLIGHT_GREY
);
2202 m_propGrid
->SetUnspecifiedValueAppearance(cell
);
2206 // Change some attributes in all properties
2207 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING,true);
2208 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_CHECKBOX,true);
2210 //m_pPropGridManager->SetSplitterLeft(true);
2211 //m_pPropGridManager->SetSplitterPosition(137);
2214 // This would setup event handling without event table entries
2215 Connect(m_pPropGridManager->GetId(), wxEVT_PG_SELECTED,
2216 wxPropertyGridEventHandler(FormMain::OnPropertyGridSelect) );
2217 Connect(m_pPropGridManager->GetId(), wxEVT_PG_CHANGED,
2218 wxPropertyGridEventHandler(FormMain::OnPropertyGridChange) );
2221 m_topSizer
->Add( m_pPropGridManager
, 1, wxEXPAND
);
2223 FinalizePanel(wasCreated
);
2226 // -----------------------------------------------------------------------
2228 FormMain::FormMain(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
) :
2229 wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
,
2230 (wxMINIMIZE_BOX
|wxMAXIMIZE_BOX
|wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|
2231 wxTAB_TRAVERSAL
|wxCLOSE_BOX
|wxNO_FULL_REPAINT_ON_RESIZE
) )
2233 SetIcon(wxICON(sample
));
2239 // we need this in order to allow the about menu relocation, since ABOUT is
2240 // not the default id of the about menu
2241 wxApp::s_macAboutMenuItemId
= ID_ABOUT
;
2245 // This is here to really test the wxImageFileProperty.
2246 wxInitAllImageHandlers();
2249 // Register all editors (SpinCtrl etc.)
2250 m_pPropGridManager
->RegisterAdditionalEditors();
2252 // Register our sample custom editors
2253 m_pSampleMultiButtonEditor
=
2254 wxPropertyGrid::RegisterEditorClass(new wxSampleMultiButtonEditor());
2256 CreateGrid( // style
2257 wxPG_BOLD_MODIFIED
|
2258 wxPG_SPLITTER_AUTO_CENTER
|
2260 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2262 //wxPG_HIDE_CATEGORIES |
2263 //wxPG_LIMITED_EDITING |
2267 wxPG_EX_MODE_BUTTONS
|
2268 wxPG_EX_MULTIPLE_SELECTION
2269 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2270 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2271 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2272 //| wxPG_EX_HELP_AS_TOOLTIPS
2277 wxMenu
*menuFile
= new wxMenu(wxEmptyString
, wxMENU_TEAROFF
);
2278 wxMenu
*menuTry
= new wxMenu
;
2279 wxMenu
*menuTools1
= new wxMenu
;
2280 wxMenu
*menuTools2
= new wxMenu
;
2281 wxMenu
*menuHelp
= new wxMenu
;
2283 menuHelp
->Append(ID_ABOUT
, wxT("&About..."), wxT("Show about dialog") );
2285 menuTools1
->Append(ID_APPENDPROP
, wxT("Append New Property") );
2286 menuTools1
->Append(ID_APPENDCAT
, wxT("Append New Category\tCtrl-S") );
2287 menuTools1
->AppendSeparator();
2288 menuTools1
->Append(ID_INSERTPROP
, wxT("Insert New Property\tCtrl-Q") );
2289 menuTools1
->Append(ID_INSERTCAT
, wxT("Insert New Category\tCtrl-W") );
2290 menuTools1
->AppendSeparator();
2291 menuTools1
->Append(ID_DELETE
, wxT("Delete Selected") );
2292 menuTools1
->Append(ID_DELETER
, wxT("Delete Random") );
2293 menuTools1
->Append(ID_DELETEALL
, wxT("Delete All") );
2294 menuTools1
->AppendSeparator();
2295 menuTools1
->Append(ID_SETBGCOLOUR
, wxT("Set Bg Colour") );
2296 menuTools1
->Append(ID_SETBGCOLOURRECUR
, wxT("Set Bg Colour (Recursively)") );
2297 menuTools1
->Append(ID_UNSPECIFY
, "Set Value to Unspecified");
2298 menuTools1
->AppendSeparator();
2299 m_itemEnable
= menuTools1
->Append(ID_ENABLE
, wxT("Enable"),
2300 wxT("Toggles item's enabled state.") );
2301 m_itemEnable
->Enable( FALSE
);
2302 menuTools1
->Append(ID_HIDE
, "Hide", "Hides a property" );
2303 menuTools1
->Append(ID_SETREADONLY
, "Set as Read-Only",
2304 "Set property as read-only" );
2306 menuTools2
->Append(ID_ITERATE1
, wxT("Iterate Over Properties") );
2307 menuTools2
->Append(ID_ITERATE2
, wxT("Iterate Over Visible Items") );
2308 menuTools2
->Append(ID_ITERATE3
, wxT("Reverse Iterate Over Properties") );
2309 menuTools2
->Append(ID_ITERATE4
, wxT("Iterate Over Categories") );
2310 menuTools2
->AppendSeparator();
2311 menuTools2
->Append(ID_SETPROPERTYVALUE
, wxT("Set Property Value") );
2312 menuTools2
->Append(ID_CLEARMODIF
, wxT("Clear Modified Status"), wxT("Clears wxPG_MODIFIED flag from all properties.") );
2313 menuTools2
->AppendSeparator();
2314 m_itemFreeze
= menuTools2
->AppendCheckItem(ID_FREEZE
, wxT("Freeze"),
2315 wxT("Disables painting, auto-sorting, etc.") );
2316 menuTools2
->AppendSeparator();
2317 menuTools2
->Append(ID_DUMPLIST
, wxT("Display Values as wxVariant List"), wxT("Tests GetAllValues method and wxVariant conversion.") );
2318 menuTools2
->AppendSeparator();
2319 menuTools2
->Append(ID_GETVALUES
, wxT("Get Property Values"), wxT("Stores all property values.") );
2320 menuTools2
->Append(ID_SETVALUES
, wxT("Set Property Values"), wxT("Reverts property values to those last stored.") );
2321 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).") );
2322 menuTools2
->AppendSeparator();
2323 menuTools2
->Append(ID_SAVESTATE
, wxT("Save Editable State") );
2324 menuTools2
->Append(ID_RESTORESTATE
, wxT("Restore Editable State") );
2325 menuTools2
->AppendSeparator();
2326 menuTools2
->Append(ID_ENABLECOMMONVALUES
, wxT("Enable Common Value"),
2327 wxT("Enable values that are common to all properties, for selected property."));
2328 menuTools2
->AppendSeparator();
2329 menuTools2
->Append(ID_COLLAPSE
, wxT("Collapse Selected") );
2330 menuTools2
->Append(ID_COLLAPSEALL
, wxT("Collapse All") );
2331 menuTools2
->AppendSeparator();
2332 menuTools2
->Append(ID_INSERTPAGE
, wxT("Add Page") );
2333 menuTools2
->Append(ID_REMOVEPAGE
, wxT("Remove Page") );
2334 menuTools2
->AppendSeparator();
2335 menuTools2
->Append(ID_FITCOLUMNS
, wxT("Fit Columns") );
2336 m_itemVetoDragging
=
2337 menuTools2
->AppendCheckItem(ID_VETOCOLDRAG
,
2338 "Veto Column Dragging");
2339 menuTools2
->AppendSeparator();
2340 menuTools2
->Append(ID_CHANGEFLAGSITEMS
, wxT("Change Children of FlagsProp") );
2341 menuTools2
->AppendSeparator();
2342 menuTools2
->Append(ID_TESTINSERTCHOICE
, wxT("Test InsertPropertyChoice") );
2343 menuTools2
->Append(ID_TESTDELETECHOICE
, wxT("Test DeletePropertyChoice") );
2344 menuTools2
->AppendSeparator();
2345 menuTools2
->Append(ID_SETSPINCTRLEDITOR
, wxT("Use SpinCtrl Editor") );
2346 menuTools2
->Append(ID_TESTREPLACE
, wxT("Test ReplaceProperty") );
2348 menuTry
->Append(ID_SELECTSTYLE
, wxT("Set Window Style"),
2349 wxT("Select window style flags used by the grid."));
2350 menuTry
->Append(ID_ENABLELABELEDITING
, "Enable label editing",
2351 "This calls wxPropertyGrid::MakeColumnEditable(0)");
2352 menuTry
->AppendCheckItem(ID_SHOWHEADER
,
2354 "This calls wxPropertyGridManager::ShowHeader()");
2355 menuTry
->AppendSeparator();
2356 menuTry
->AppendRadioItem( ID_COLOURSCHEME1
, wxT("Standard Colour Scheme") );
2357 menuTry
->AppendRadioItem( ID_COLOURSCHEME2
, wxT("White Colour Scheme") );
2358 menuTry
->AppendRadioItem( ID_COLOURSCHEME3
, wxT(".NET Colour Scheme") );
2359 menuTry
->AppendRadioItem( ID_COLOURSCHEME4
, wxT("Cream Colour Scheme") );
2360 menuTry
->AppendSeparator();
2361 m_itemCatColours
= menuTry
->AppendCheckItem(ID_CATCOLOURS
, wxT("Category Specific Colours"),
2362 wxT("Switches between category-specific cell colours and default scheme (actually done using SetPropertyTextColour and SetPropertyBackgroundColour).") );
2363 menuTry
->AppendSeparator();
2364 menuTry
->AppendCheckItem(ID_STATICLAYOUT
, wxT("Static Layout"),
2365 wxT("Switches between user-modifiedable and static layouts.") );
2366 menuTry
->Append(ID_SETCOLUMNS
, wxT("Set Number of Columns") );
2367 menuTry
->AppendSeparator();
2368 menuTry
->Append(ID_TESTXRC
, wxT("Display XRC sample") );
2369 menuTry
->AppendSeparator();
2370 menuTry
->Append(ID_RUNTESTFULL
, wxT("Run Tests (full)") );
2371 menuTry
->Append(ID_RUNTESTPARTIAL
, wxT("Run Tests (fast)") );
2373 menuFile
->Append(ID_RUNMINIMAL
, wxT("Run Minimal Sample") );
2374 menuFile
->AppendSeparator();
2375 menuFile
->Append(ID_QUIT
, wxT("E&xit\tAlt-X"), wxT("Quit this program") );
2377 // Now append the freshly created menu to the menu bar...
2378 wxMenuBar
*menuBar
= new wxMenuBar();
2379 menuBar
->Append(menuFile
, wxT("&File") );
2380 menuBar
->Append(menuTry
, wxT("&Try These!") );
2381 menuBar
->Append(menuTools1
, wxT("&Basic") );
2382 menuBar
->Append(menuTools2
, wxT("&Advanced") );
2383 menuBar
->Append(menuHelp
, wxT("&Help") );
2385 // ... and attach this menu bar to the frame
2386 SetMenuBar(menuBar
);
2389 // create a status bar
2391 SetStatusText(wxEmptyString
);
2392 #endif // wxUSE_STATUSBAR
2394 FinalizeFramePosition();
2397 // Create log window
2398 m_logWindow
= new wxLogWindow(this, "Log Messages", false);
2399 m_logWindow
->GetFrame()->Move(GetPosition().x
+ GetSize().x
+ 10,
2401 m_logWindow
->Show();
2405 void FormMain::FinalizeFramePosition()
2407 wxSize
frameSize((wxSystemSettings::GetMetric(wxSYS_SCREEN_X
)/10)*4,
2408 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
)/10)*8);
2410 if ( frameSize
.x
> 500 )
2419 // Normally, wxPropertyGrid does not check whether item with identical
2420 // label already exists. However, since in this sample we use labels for
2421 // identifying properties, we have to be sure not to generate identical
2424 void GenerateUniquePropertyLabel( wxPropertyGridManager
* pg
, wxString
& baselabel
)
2429 if ( pg
->GetPropertyByLabel( baselabel
) )
2434 newlabel
.Printf(wxT("%s%i"),baselabel
.c_str(),count
);
2435 if ( !pg
->GetPropertyByLabel( newlabel
) ) break;
2441 baselabel
= newlabel
;
2445 // -----------------------------------------------------------------------
2447 void FormMain::OnInsertPropClick( wxCommandEvent
& WXUNUSED(event
) )
2451 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2453 wxMessageBox(wxT("No items to relate - first add some with Append."));
2457 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2460 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2463 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2465 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2467 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2468 id
->GetIndexInParent(),
2469 new wxStringProperty(propLabel
) );
2473 // -----------------------------------------------------------------------
2475 void FormMain::OnAppendPropClick( wxCommandEvent
& WXUNUSED(event
) )
2479 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Property");
2481 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2483 m_pPropGridManager
->Append( new wxStringProperty(propLabel
) );
2485 m_pPropGridManager
->Refresh();
2488 // -----------------------------------------------------------------------
2490 void FormMain::OnClearClick( wxCommandEvent
& WXUNUSED(event
) )
2492 m_pPropGridManager
->GetGrid()->Clear();
2495 // -----------------------------------------------------------------------
2497 void FormMain::OnAppendCatClick( wxCommandEvent
& WXUNUSED(event
) )
2501 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2503 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2505 m_pPropGridManager
->Append( new wxPropertyCategory (propLabel
) );
2507 m_pPropGridManager
->Refresh();
2511 // -----------------------------------------------------------------------
2513 void FormMain::OnInsertCatClick( wxCommandEvent
& WXUNUSED(event
) )
2517 if ( !m_pPropGridManager
->GetGrid()->GetRoot()->GetChildCount() )
2519 wxMessageBox(wxT("No items to relate - first add some with Append."));
2523 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2526 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2530 if ( propLabel
.Len() < 1 ) propLabel
= wxT("Category");
2532 GenerateUniquePropertyLabel( m_pPropGridManager
, propLabel
);
2534 m_pPropGridManager
->Insert( m_pPropGridManager
->GetPropertyParent(id
),
2535 id
->GetIndexInParent(),
2536 new wxPropertyCategory (propLabel
) );
2539 // -----------------------------------------------------------------------
2541 void FormMain::OnDelPropClick( wxCommandEvent
& WXUNUSED(event
) )
2543 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2546 wxMessageBox(wxT("First select a property."));
2550 m_pPropGridManager
->DeleteProperty( id
);
2553 // -----------------------------------------------------------------------
2555 void FormMain::OnDelPropRClick( wxCommandEvent
& WXUNUSED(event
) )
2557 // Delete random property
2558 wxPGProperty
* p
= m_pPropGridManager
->GetGrid()->GetRoot();
2562 if ( !p
->IsCategory() )
2564 m_pPropGridManager
->DeleteProperty( p
);
2568 if ( !p
->GetChildCount() )
2571 int n
= rand() % ((int)p
->GetChildCount());
2577 // -----------------------------------------------------------------------
2579 void FormMain::OnContextMenu( wxContextMenuEvent
& event
)
2581 wxLogDebug(wxT("FormMain::OnContextMenu(%i,%i)"),
2582 event
.GetPosition().x
,event
.GetPosition().y
);
2589 // -----------------------------------------------------------------------
2591 void FormMain::OnCloseClick( wxCommandEvent
& WXUNUSED(event
) )
2593 /*#ifdef __WXDEBUG__
2594 m_pPropGridManager->GetGrid()->DumpAllocatedChoiceSets();
2595 wxLogDebug(wxT("\\-> Don't worry, this is perfectly normal in this sample."));
2601 // -----------------------------------------------------------------------
2603 int IterateMessage( wxPGProperty
* prop
)
2607 s
.Printf( wxT("\"%s\" class = %s, valuetype = %s"), prop
->GetLabel().c_str(),
2608 prop
->GetClassInfo()->GetClassName(), prop
->GetValueType().c_str() );
2610 return wxMessageBox( s
, wxT("Iterating... (press CANCEL to end)"), wxOK
|wxCANCEL
);
2613 // -----------------------------------------------------------------------
2615 void FormMain::OnIterate1Click( wxCommandEvent
& WXUNUSED(event
) )
2617 wxPropertyGridIterator it
;
2619 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2624 wxPGProperty
* p
= *it
;
2625 int res
= IterateMessage( p
);
2626 if ( res
== wxCANCEL
) break;
2630 // -----------------------------------------------------------------------
2632 void FormMain::OnIterate2Click( wxCommandEvent
& WXUNUSED(event
) )
2634 wxPropertyGridIterator it
;
2636 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2637 GetIterator( wxPG_ITERATE_VISIBLE
);
2641 wxPGProperty
* p
= *it
;
2643 int res
= IterateMessage( p
);
2644 if ( res
== wxCANCEL
) break;
2648 // -----------------------------------------------------------------------
2650 void FormMain::OnIterate3Click( wxCommandEvent
& WXUNUSED(event
) )
2652 // iterate over items in reverse order
2653 wxPropertyGridIterator it
;
2655 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2656 GetIterator( wxPG_ITERATE_DEFAULT
, wxBOTTOM
);
2660 wxPGProperty
* p
= *it
;
2662 int res
= IterateMessage( p
);
2663 if ( res
== wxCANCEL
) break;
2667 // -----------------------------------------------------------------------
2669 void FormMain::OnIterate4Click( wxCommandEvent
& WXUNUSED(event
) )
2671 wxPropertyGridIterator it
;
2673 for ( it
= m_pPropGridManager
->GetCurrentPage()->
2674 GetIterator( wxPG_ITERATE_CATEGORIES
);
2678 wxPGProperty
* p
= *it
;
2680 int res
= IterateMessage( p
);
2681 if ( res
== wxCANCEL
) break;
2685 // -----------------------------------------------------------------------
2687 void FormMain::OnFitColumnsClick( wxCommandEvent
& WXUNUSED(event
) )
2689 wxPropertyGridPage
* page
= m_pPropGridManager
->GetCurrentPage();
2691 // Remove auto-centering
2692 m_pPropGridManager
->SetWindowStyle( m_pPropGridManager
->GetWindowStyle() & ~wxPG_SPLITTER_AUTO_CENTER
);
2694 // Grow manager size just prior fit - otherwise
2695 // column information may be lost.
2696 wxSize oldGridSize
= m_pPropGridManager
->GetGrid()->GetClientSize();
2697 wxSize oldFullSize
= GetSize();
2698 SetSize(1000, oldFullSize
.y
);
2700 wxSize newSz
= page
->FitColumns();
2702 int dx
= oldFullSize
.x
- oldGridSize
.x
;
2703 int dy
= oldFullSize
.y
- oldGridSize
.y
;
2711 // -----------------------------------------------------------------------
2713 void FormMain::OnChangeFlagsPropItemsClick( wxCommandEvent
& WXUNUSED(event
) )
2715 wxPGProperty
* p
= m_pPropGridManager
->GetPropertyByName(wxT("Window Styles"));
2717 wxPGChoices newChoices
;
2719 newChoices
.Add(wxT("Fast"),0x1);
2720 newChoices
.Add(wxT("Powerful"),0x2);
2721 newChoices
.Add(wxT("Safe"),0x4);
2722 newChoices
.Add(wxT("Sleek"),0x8);
2724 p
->SetChoices(newChoices
);
2727 // -----------------------------------------------------------------------
2729 void FormMain::OnEnableDisable( wxCommandEvent
& )
2731 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2734 wxMessageBox(wxT("First select a property."));
2738 if ( m_pPropGridManager
->IsPropertyEnabled( id
) )
2740 m_pPropGridManager
->DisableProperty ( id
);
2741 m_itemEnable
->SetItemLabel( wxT("Enable") );
2745 m_pPropGridManager
->EnableProperty ( id
);
2746 m_itemEnable
->SetItemLabel( wxT("Disable") );
2750 // -----------------------------------------------------------------------
2752 void FormMain::OnSetReadOnly( wxCommandEvent
& WXUNUSED(event
) )
2754 wxPGProperty
* p
= m_pPropGridManager
->GetGrid()->GetSelection();
2757 wxMessageBox(wxT("First select a property."));
2760 m_pPropGridManager
->SetPropertyReadOnly(p
);
2763 // -----------------------------------------------------------------------
2765 void FormMain::OnHide( wxCommandEvent
& WXUNUSED(event
) )
2767 wxPGProperty
* id
= m_pPropGridManager
->GetGrid()->GetSelection();
2770 wxMessageBox(wxT("First select a property."));
2774 m_pPropGridManager
->HideProperty( id
, true );
2777 // -----------------------------------------------------------------------
2779 #include "wx/colordlg.h"
2782 FormMain::OnSetBackgroundColour( wxCommandEvent
& event
)
2784 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2785 wxPGProperty
* prop
= pg
->GetSelection();
2788 wxMessageBox(wxT("First select a property."));
2792 wxColour col
= ::wxGetColourFromUser(this, *wxWHITE
, "Choose colour");
2796 bool recursively
= (event
.GetId()==ID_SETBGCOLOURRECUR
) ? true : false;
2797 pg
->SetPropertyBackgroundColour(prop
, col
, recursively
);
2801 // -----------------------------------------------------------------------
2803 void FormMain::OnInsertPage( wxCommandEvent
& WXUNUSED(event
) )
2805 m_pPropGridManager
->AddPage(wxT("New Page"));
2808 // -----------------------------------------------------------------------
2810 void FormMain::OnRemovePage( wxCommandEvent
& WXUNUSED(event
) )
2812 m_pPropGridManager
->RemovePage(m_pPropGridManager
->GetSelectedPage());
2815 // -----------------------------------------------------------------------
2817 void FormMain::OnSaveState( wxCommandEvent
& WXUNUSED(event
) )
2819 m_savedState
= m_pPropGridManager
->SaveEditableState();
2820 wxLogDebug(wxT("Saved editable state string: \"%s\""), m_savedState
.c_str());
2823 // -----------------------------------------------------------------------
2825 void FormMain::OnRestoreState( wxCommandEvent
& WXUNUSED(event
) )
2827 m_pPropGridManager
->RestoreEditableState(m_savedState
);
2830 // -----------------------------------------------------------------------
2832 void FormMain::OnSetSpinCtrlEditorClick( wxCommandEvent
& WXUNUSED(event
) )
2835 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2837 m_pPropGridManager
->SetPropertyEditor( pgId
, wxPGEditor_SpinCtrl
);
2839 wxMessageBox(wxT("First select a property"));
2843 // -----------------------------------------------------------------------
2845 void FormMain::OnTestReplaceClick( wxCommandEvent
& WXUNUSED(event
) )
2847 wxPGProperty
* pgId
= m_pPropGridManager
->GetSelection();
2850 wxPGChoices choices
;
2851 choices
.Add(wxT("Flag 0"),0x0001);
2852 choices
.Add(wxT("Flag 1"),0x0002);
2853 choices
.Add(wxT("Flag 2"),0x0004);
2854 choices
.Add(wxT("Flag 3"),0x0008);
2855 wxPGProperty
* newId
= m_pPropGridManager
->ReplaceProperty( pgId
,
2856 new wxFlagsProperty(wxT("ReplaceFlagsProperty"), wxPG_LABEL
, choices
, 0x0003) );
2857 m_pPropGridManager
->SetPropertyAttribute( newId
,
2858 wxPG_BOOL_USE_CHECKBOX
,
2863 wxMessageBox(wxT("First select a property"));
2866 // -----------------------------------------------------------------------
2868 void FormMain::OnClearModifyStatusClick( wxCommandEvent
& WXUNUSED(event
) )
2870 m_pPropGridManager
->ClearModifiedStatus();
2873 // -----------------------------------------------------------------------
2875 // Freeze check-box checked?
2876 void FormMain::OnFreezeClick( wxCommandEvent
& event
)
2878 if ( !m_pPropGridManager
) return;
2880 if ( event
.IsChecked() )
2882 if ( !m_pPropGridManager
->IsFrozen() )
2884 m_pPropGridManager
->Freeze();
2889 if ( m_pPropGridManager
->IsFrozen() )
2891 m_pPropGridManager
->Thaw();
2892 m_pPropGridManager
->Refresh();
2897 // -----------------------------------------------------------------------
2899 void FormMain::OnEnableLabelEditing( wxCommandEvent
& WXUNUSED(event
) )
2901 m_propGrid
->MakeColumnEditable(0);
2904 // -----------------------------------------------------------------------
2906 void FormMain::OnShowHeader( wxCommandEvent
& event
)
2908 m_pPropGridManager
->ShowHeader(event
.IsChecked());
2909 m_pPropGridManager
->SetColumnTitle(2, _("Units"));
2912 // -----------------------------------------------------------------------
2914 void FormMain::OnAbout(wxCommandEvent
& WXUNUSED(event
))
2917 msg
.Printf( wxT("wxPropertyGrid Sample")
2919 #if defined(wxUSE_UNICODE_UTF8) && wxUSE_UNICODE_UTF8
2933 wxT("Programmed by %s\n\n")
2934 wxT("Using %s\n\n"),
2935 wxT("Jaakko Salli"), wxVERSION_STRING
2938 wxMessageBox(msg
, wxT("About"), wxOK
| wxICON_INFORMATION
, this);
2941 // -----------------------------------------------------------------------
2943 void FormMain::OnColourScheme( wxCommandEvent
& event
)
2945 int id
= event
.GetId();
2946 if ( id
== ID_COLOURSCHEME1
)
2948 m_pPropGridManager
->GetGrid()->ResetColours();
2950 else if ( id
== ID_COLOURSCHEME2
)
2953 wxColour
my_grey_1(212,208,200);
2954 wxColour
my_grey_3(113,111,100);
2955 m_pPropGridManager
->Freeze();
2956 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2957 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2958 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( *wxWHITE
);
2959 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2960 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
); //wxColour(160,160,160)
2961 m_pPropGridManager
->Thaw();
2963 else if ( id
== ID_COLOURSCHEME3
)
2966 wxColour
my_grey_1(212,208,200);
2967 wxColour
my_grey_2(236,233,216);
2968 m_pPropGridManager
->Freeze();
2969 m_pPropGridManager
->GetGrid()->SetMarginColour( my_grey_1
);
2970 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( my_grey_1
);
2971 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2972 m_pPropGridManager
->Thaw();
2974 else if ( id
== ID_COLOURSCHEME4
)
2978 wxColour
my_grey_1(212,208,200);
2979 wxColour
my_grey_2(241,239,226);
2980 wxColour
my_grey_3(113,111,100);
2981 m_pPropGridManager
->Freeze();
2982 m_pPropGridManager
->GetGrid()->SetMarginColour( *wxWHITE
);
2983 m_pPropGridManager
->GetGrid()->SetCaptionBackgroundColour( *wxWHITE
);
2984 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2985 m_pPropGridManager
->GetGrid()->SetCellBackgroundColour( my_grey_2
);
2986 m_pPropGridManager
->GetGrid()->SetCellTextColour( my_grey_3
);
2987 m_pPropGridManager
->GetGrid()->SetLineColour( my_grey_1
);
2988 m_pPropGridManager
->Thaw();
2992 // -----------------------------------------------------------------------
2994 void FormMain::OnCatColours( wxCommandEvent
& event
)
2996 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
2997 m_pPropGridManager
->Freeze();
2999 if ( event
.IsChecked() )
3001 // Set custom colours.
3002 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,0), false );
3003 pg
->SetPropertyBackgroundColour( wxT("Appearance"), wxColour(255,255,183) );
3004 pg
->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,183) );
3005 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(0,255,0), false );
3006 pg
->SetPropertyBackgroundColour( wxT("PositionCategory"), wxColour(255,226,190) );
3007 pg
->SetPropertyTextColour( wxT("PositionCategory"), wxColour(255,0,190) );
3008 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(0,0,255), false );
3009 pg
->SetPropertyBackgroundColour( wxT("Environment"), wxColour(208,240,175) );
3010 pg
->SetPropertyTextColour( wxT("Environment"), wxColour(255,255,255) );
3011 pg
->SetPropertyBackgroundColour( wxT("More Examples"), wxColour(172,237,255) );
3012 pg
->SetPropertyTextColour( wxT("More Examples"), wxColour(172,0,255) );
3016 // Revert to original.
3017 pg
->SetPropertyColoursToDefault( wxT("Appearance") );
3018 pg
->SetPropertyColoursToDefault( wxT("PositionCategory") );
3019 pg
->SetPropertyColoursToDefault( wxT("Environment") );
3020 pg
->SetPropertyColoursToDefault( wxT("More Examples") );
3022 m_pPropGridManager
->Thaw();
3023 m_pPropGridManager
->Refresh();
3026 // -----------------------------------------------------------------------
3028 #define ADD_FLAG(FLAG) \
3029 chs.Add(wxT(#FLAG)); \
3031 if ( (flags & FLAG) == FLAG ) sel.Add(ind); \
3034 void FormMain::OnSelectStyle( wxCommandEvent
& WXUNUSED(event
) )
3043 unsigned int ind
= 0;
3044 int flags
= m_pPropGridManager
->GetWindowStyle();
3045 ADD_FLAG(wxPG_HIDE_CATEGORIES
)
3046 ADD_FLAG(wxPG_AUTO_SORT
)
3047 ADD_FLAG(wxPG_BOLD_MODIFIED
)
3048 ADD_FLAG(wxPG_SPLITTER_AUTO_CENTER
)
3049 ADD_FLAG(wxPG_TOOLTIPS
)
3050 ADD_FLAG(wxPG_STATIC_SPLITTER
)
3051 ADD_FLAG(wxPG_HIDE_MARGIN
)
3052 ADD_FLAG(wxPG_LIMITED_EDITING
)
3053 ADD_FLAG(wxPG_TOOLBAR
)
3054 ADD_FLAG(wxPG_DESCRIPTION
)
3055 ADD_FLAG(wxPG_NO_INTERNAL_BORDER
)
3056 wxMultiChoiceDialog
dlg( this, wxT("Select window styles to use"),
3057 wxT("wxPropertyGrid Window Style"), chs
);
3058 dlg
.SetSelections(sel
);
3059 if ( dlg
.ShowModal() == wxID_CANCEL
)
3063 sel
= dlg
.GetSelections();
3064 for ( ind
= 0; ind
< sel
.size(); ind
++ )
3065 flags
|= vls
[sel
[ind
]];
3074 unsigned int ind
= 0;
3075 int flags
= m_pPropGridManager
->GetExtraStyle();
3076 ADD_FLAG(wxPG_EX_INIT_NOCAT
)
3077 ADD_FLAG(wxPG_EX_NO_FLAT_TOOLBAR
)
3078 ADD_FLAG(wxPG_EX_MODE_BUTTONS
)
3079 ADD_FLAG(wxPG_EX_HELP_AS_TOOLTIPS
)
3080 ADD_FLAG(wxPG_EX_NATIVE_DOUBLE_BUFFERING
)
3081 ADD_FLAG(wxPG_EX_AUTO_UNSPECIFIED_VALUES
)
3082 ADD_FLAG(wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
)
3083 ADD_FLAG(wxPG_EX_HIDE_PAGE_BUTTONS
)
3084 ADD_FLAG(wxPG_EX_MULTIPLE_SELECTION
)
3085 ADD_FLAG(wxPG_EX_ENABLE_TLP_TRACKING
)
3086 ADD_FLAG(wxPG_EX_NO_TOOLBAR_DIVIDER
)
3087 ADD_FLAG(wxPG_EX_TOOLBAR_SEPARATOR
)
3088 wxMultiChoiceDialog
dlg( this, wxT("Select extra window styles to use"),
3089 wxT("wxPropertyGrid Extra Style"), chs
);
3090 dlg
.SetSelections(sel
);
3091 if ( dlg
.ShowModal() == wxID_CANCEL
)
3095 sel
= dlg
.GetSelections();
3096 for ( ind
= 0; ind
< sel
.size(); ind
++ )
3097 flags
|= vls
[sel
[ind
]];
3102 CreateGrid( style
, extraStyle
);
3104 FinalizeFramePosition();
3107 // -----------------------------------------------------------------------
3109 void FormMain::OnSetColumns( wxCommandEvent
& WXUNUSED(event
) )
3111 long colCount
= ::wxGetNumberFromUser(wxT("Enter number of columns (2-20)."),wxT("Columns:"),
3112 wxT("Change Columns"),m_pPropGridManager
->GetColumnCount(),
3115 if ( colCount
>= 2 )
3117 m_pPropGridManager
->SetColumnCount(colCount
);
3121 // -----------------------------------------------------------------------
3123 void FormMain::OnSetPropertyValue( wxCommandEvent
& WXUNUSED(event
) )
3125 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3126 wxPGProperty
* selected
= pg
->GetSelection();
3130 wxString value
= ::wxGetTextFromUser( wxT("Enter new value:") );
3131 pg
->SetPropertyValue( selected
, value
);
3135 // -----------------------------------------------------------------------
3137 void FormMain::OnInsertChoice( wxCommandEvent
& WXUNUSED(event
) )
3139 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3141 wxPGProperty
* selected
= pg
->GetSelection();
3142 const wxPGChoices
& choices
= selected
->GetChoices();
3144 // Insert new choice to the center of list
3146 if ( choices
.IsOk() )
3148 int pos
= choices
.GetCount() / 2;
3149 selected
->InsertChoice(wxT("New Choice"), pos
);
3153 ::wxMessageBox(wxT("First select a property with some choices."));
3157 // -----------------------------------------------------------------------
3159 void FormMain::OnDeleteChoice( wxCommandEvent
& WXUNUSED(event
) )
3161 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3163 wxPGProperty
* selected
= pg
->GetSelection();
3164 const wxPGChoices
& choices
= selected
->GetChoices();
3166 // Deletes choice from the center of list
3168 if ( choices
.IsOk() )
3170 int pos
= choices
.GetCount() / 2;
3171 selected
->DeleteChoice(pos
);
3175 ::wxMessageBox(wxT("First select a property with some choices."));
3179 // -----------------------------------------------------------------------
3181 #include <wx/colordlg.h>
3183 void FormMain::OnMisc ( wxCommandEvent
& event
)
3185 int id
= event
.GetId();
3186 if ( id
== ID_STATICLAYOUT
)
3188 long wsf
= m_pPropGridManager
->GetWindowStyleFlag();
3189 if ( event
.IsChecked() ) m_pPropGridManager
->SetWindowStyleFlag( wsf
|wxPG_STATIC_LAYOUT
);
3190 else m_pPropGridManager
->SetWindowStyleFlag( wsf
&~(wxPG_STATIC_LAYOUT
) );
3192 else if ( id
== ID_COLLAPSEALL
)
3195 wxPropertyGrid
* pg
= m_pPropGridManager
->GetGrid();
3197 for ( it
= pg
->GetVIterator( wxPG_ITERATE_ALL
); !it
.AtEnd(); it
.Next() )
3198 it
.GetProperty()->SetExpanded( false );
3202 else if ( id
== ID_GETVALUES
)
3204 m_storedValues
= m_pPropGridManager
->GetGrid()->GetPropertyValues(wxT("Test"),
3205 m_pPropGridManager
->GetGrid()->GetRoot(),
3206 wxPG_KEEP_STRUCTURE
|wxPG_INC_ATTRIBUTES
);
3208 else if ( id
== ID_SETVALUES
)
3210 if ( m_storedValues
.GetType() == wxT("list") )
3212 m_pPropGridManager
->GetGrid()->SetPropertyValues(m_storedValues
);
3215 wxMessageBox(wxT("First use Get Property Values."));
3217 else if ( id
== ID_SETVALUES2
)
3221 list
.Append( wxVariant((long)1234,wxT("VariantLong")) );
3222 list
.Append( wxVariant((bool)TRUE
,wxT("VariantBool")) );
3223 list
.Append( wxVariant(wxT("Test Text"),wxT("VariantString")) );
3224 m_pPropGridManager
->GetGrid()->SetPropertyValues(list
);
3226 else if ( id
== ID_COLLAPSE
)
3228 // Collapses selected.
3229 wxPGProperty
* id
= m_pPropGridManager
->GetSelection();
3232 m_pPropGridManager
->Collapse(id
);
3235 else if ( id
== ID_RUNTESTFULL
)
3237 // Runs a regression test.
3240 else if ( id
== ID_RUNTESTPARTIAL
)
3242 // Runs a regression test.
3245 else if ( id
== ID_UNSPECIFY
)
3247 wxPGProperty
* prop
= m_pPropGridManager
->GetSelection();
3250 m_pPropGridManager
->SetPropertyValueUnspecified(prop
);
3251 prop
->RefreshEditor();
3256 // -----------------------------------------------------------------------
3258 void FormMain::OnPopulateClick( wxCommandEvent
& event
)
3260 int id
= event
.GetId();
3261 m_propGrid
->Clear();
3262 m_propGrid
->Freeze();
3263 if ( id
== ID_POPULATE1
)
3265 PopulateWithStandardItems();
3267 else if ( id
== ID_POPULATE2
)
3269 PopulateWithLibraryConfig();
3274 // -----------------------------------------------------------------------
3276 void DisplayMinimalFrame(wxWindow
* parent
); // in minimal.cpp
3278 void FormMain::OnRunMinimalClick( wxCommandEvent
& WXUNUSED(event
) )
3280 DisplayMinimalFrame(this);
3283 // -----------------------------------------------------------------------
3285 FormMain::~FormMain()
3289 // -----------------------------------------------------------------------
3291 IMPLEMENT_APP(cxApplication
)
3293 bool cxApplication::OnInit()
3296 //Locale.Init(wxLANGUAGE_FINNISH);
3298 FormMain
* frame
= Form1
= new FormMain( wxT("wxPropertyGrid Sample"), wxPoint(0,0), wxSize(300,500) );
3302 // Parse command-line
3303 wxApp
& app
= wxGetApp();
3306 wxString s
= app
.argv
[1];
3307 if ( s
== wxT("--run-tests") )
3311 bool testResult
= frame
->RunTests(true);
3321 // -----------------------------------------------------------------------
3323 void FormMain::OnIdle( wxIdleEvent
& event
)
3326 // This code is useful for debugging focus problems
3327 static wxWindow* last_focus = (wxWindow*) NULL;
3329 wxWindow* cur_focus = ::wxWindow::FindFocus();
3331 if ( cur_focus != last_focus )
3333 const wxChar* class_name = wxT("<none>");
3335 class_name = cur_focus->GetClassInfo()->GetClassName();
3336 last_focus = cur_focus;
3337 wxLogDebug( wxT("FOCUSED: %s %X"),
3339 (unsigned int)cur_focus);
3346 // -----------------------------------------------------------------------