Update 'intro' comment in propgrid sample
[wxWidgets.git] / samples / propgrid / propgrid.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/propgrid/propgrid.cpp
3 // Purpose: wxPropertyGrid sample
4 // Author: Jaakko Salli
5 // Modified by:
6 // Created: 2004-09-25
7 // RCS-ID: $Id$
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 //
13 //
14 // NOTES
15 //
16 // * Examples of custom property classes are in sampleprops.cpp.
17 //
18 // * Additional ones can be found below.
19 //
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.
23 //
24 // * To find code that populates the grid with properties, search for
25 // string "::Populate".
26 //
27 // * To find code that handles property grid changes, search for string
28 // "::OnPropertyGridChange".
29 //
30
31 // For compilers that support precompilation, includes "wx/wx.h".
32 #include "wx/wxprec.h"
33
34 #ifdef __BORLANDC__
35 #pragma hdrstop
36 #endif
37
38 // for all others, include the necessary headers (this file is usually all you
39 // need because it includes almost all "standard" wxWidgets headers)
40 #ifndef WX_PRECOMP
41 #include "wx/wx.h"
42 #endif
43
44 #if !wxUSE_PROPGRID
45 #error "Please set wxUSE_PROPGRID to 1 and rebuild the library."
46 #endif
47
48 #include <wx/numdlg.h>
49
50 // -----------------------------------------------------------------------
51
52
53 // Main propertygrid header.
54 #include <wx/propgrid/propgrid.h>
55
56 // Extra property classes.
57 #include <wx/propgrid/advprops.h>
58
59 // This defines wxPropertyGridManager.
60 #include <wx/propgrid/manager.h>
61
62 #include "propgrid.h"
63 #include "sampleprops.h"
64
65 #if wxUSE_DATEPICKCTRL
66 #include <wx/datectrl.h>
67 #endif
68
69 #include <wx/artprov.h>
70
71
72 // -----------------------------------------------------------------------
73 // wxSampleMultiButtonEditor
74 // A sample editor class that has multiple buttons.
75 // -----------------------------------------------------------------------
76
77 class wxSampleMultiButtonEditor : public wxPGTextCtrlEditor
78 {
79 DECLARE_DYNAMIC_CLASS(wxSampleMultiButtonEditor)
80 public:
81 wxSampleMultiButtonEditor() {}
82 virtual ~wxSampleMultiButtonEditor() {}
83
84 virtual wxPGWindowList CreateControls( wxPropertyGrid* propGrid,
85 wxPGProperty* property,
86 const wxPoint& pos,
87 const wxSize& sz ) const;
88 virtual bool OnEvent( wxPropertyGrid* propGrid,
89 wxPGProperty* property,
90 wxWindow* ctrl,
91 wxEvent& event ) const;
92 };
93
94 IMPLEMENT_DYNAMIC_CLASS(wxSampleMultiButtonEditor, wxPGTextCtrlEditor)
95
96 wxPGWindowList wxSampleMultiButtonEditor::CreateControls( wxPropertyGrid* propGrid,
97 wxPGProperty* property,
98 const wxPoint& pos,
99 const wxSize& sz ) const
100 {
101 // Create and populate buttons-subwindow
102 wxPGMultiButton* buttons = new wxPGMultiButton( propGrid, sz );
103
104 // Add two regular buttons
105 buttons->Add( "..." );
106 buttons->Add( "A" );
107 // Add a bitmap button
108 buttons->Add( wxArtProvider::GetBitmap(wxART_FOLDER) );
109
110 // Create the 'primary' editor control (textctrl in this case)
111 wxPGWindowList wndList = wxPGTextCtrlEditor::CreateControls
112 ( propGrid, property, pos,
113 buttons->GetPrimarySize() );
114
115 // Finally, move buttons-subwindow to correct position and make sure
116 // returned wxPGWindowList contains our custom button list.
117 buttons->Finalize(propGrid, pos);
118
119 wndList.SetSecondary( buttons );
120 return wndList;
121 }
122
123 bool wxSampleMultiButtonEditor::OnEvent( wxPropertyGrid* propGrid,
124 wxPGProperty* property,
125 wxWindow* ctrl,
126 wxEvent& event ) const
127 {
128 if ( event.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED )
129 {
130 wxPGMultiButton* buttons = (wxPGMultiButton*) propGrid->GetEditorControlSecondary();
131
132 if ( event.GetId() == buttons->GetButtonId(0) )
133 {
134 // Do something when first button is pressed
135 wxLogDebug("First button pressed");
136 return true;
137 }
138 if ( event.GetId() == buttons->GetButtonId(1) )
139 {
140 // Do something when second button is pressed
141 wxLogDebug("Second button pressed");
142 return true;
143 }
144 if ( event.GetId() == buttons->GetButtonId(2) )
145 {
146 // Do something when third button is pressed
147 wxLogDebug("Third button pressed");
148 return true;
149 }
150 }
151 return wxPGTextCtrlEditor::OnEvent(propGrid, property, ctrl, event);
152 }
153
154 // -----------------------------------------------------------------------
155 // Validator for wxValidator use sample
156 // -----------------------------------------------------------------------
157
158 #if wxUSE_VALIDATORS
159
160 // wxValidator for testing
161
162 class wxInvalidWordValidator : public wxValidator
163 {
164 public:
165
166 wxInvalidWordValidator( const wxString& invalidWord )
167 : wxValidator(), m_invalidWord(invalidWord)
168 {
169 }
170
171 virtual wxObject* Clone() const
172 {
173 return new wxInvalidWordValidator(m_invalidWord);
174 }
175
176 virtual bool Validate(wxWindow* WXUNUSED(parent))
177 {
178 wxTextCtrl* tc = wxDynamicCast(GetWindow(), wxTextCtrl);
179 wxCHECK_MSG(tc, true, wxT("validator window must be wxTextCtrl"));
180
181 wxString val = tc->GetValue();
182
183 if ( val.find(m_invalidWord) == wxString::npos )
184 return true;
185
186 ::wxMessageBox(wxString::Format(wxT("%s is not allowed word"),m_invalidWord.c_str()),
187 wxT("Validation Failure"));
188
189 return false;
190 }
191
192 private:
193 wxString m_invalidWord;
194 };
195
196 #endif // wxUSE_VALIDATORS
197
198 // -----------------------------------------------------------------------
199 // AdvImageFile Property
200 // -----------------------------------------------------------------------
201
202 class wxMyImageInfo;
203
204 WX_DECLARE_OBJARRAY(wxMyImageInfo, wxArrayMyImageInfo);
205
206 class wxMyImageInfo
207 {
208 public:
209 wxString m_path;
210 wxBitmap* m_pThumbnail1; // smaller thumbnail
211 wxBitmap* m_pThumbnail2; // larger thumbnail
212
213 wxMyImageInfo ( const wxString& str )
214 {
215 m_path = str;
216 m_pThumbnail1 = (wxBitmap*) NULL;
217 m_pThumbnail2 = (wxBitmap*) NULL;
218 }
219 virtual ~wxMyImageInfo()
220 {
221 if ( m_pThumbnail1 )
222 delete m_pThumbnail1;
223 if ( m_pThumbnail2 )
224 delete m_pThumbnail2;
225 }
226
227 };
228
229
230 #include <wx/arrimpl.cpp>
231 WX_DEFINE_OBJARRAY(wxArrayMyImageInfo);
232
233 wxArrayMyImageInfo g_myImageArray;
234
235
236 // Preferred thumbnail height.
237 #define PREF_THUMBNAIL_HEIGHT 64
238
239
240 wxPGChoices wxAdvImageFileProperty::ms_choices;
241
242 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxAdvImageFileProperty,wxFileProperty,
243 wxString,const wxString&,ChoiceAndButton)
244
245
246 wxAdvImageFileProperty::wxAdvImageFileProperty( const wxString& label,
247 const wxString& name,
248 const wxString& value)
249 : wxFileProperty(label,name,value)
250 {
251 m_wildcard = wxPGGetDefaultImageWildcard();
252
253 m_index = -1;
254
255 m_pImage = (wxImage*) NULL;
256
257 // Only show names.
258 m_flags &= ~(wxPG_PROP_SHOW_FULL_FILENAME);
259 }
260
261 wxAdvImageFileProperty::~wxAdvImageFileProperty ()
262 {
263 // Delete old image
264 if ( m_pImage )
265 {
266 delete m_pImage;
267 m_pImage = (wxImage*) NULL;
268 }
269 }
270
271 void wxAdvImageFileProperty::OnSetValue()
272 {
273 wxFileProperty::OnSetValue();
274
275 // Delete old image
276 if ( m_pImage )
277 {
278 delete m_pImage;
279 m_pImage = (wxImage*) NULL;
280 }
281
282 wxString imagename = GetValueAsString(0);
283
284 if ( imagename.length() )
285 {
286 wxFileName filename = GetFileName();
287 size_t prevCount = g_myImageArray.GetCount();
288 int index = ms_choices.Index(imagename);
289
290 // If not in table, add now.
291 if ( index == wxNOT_FOUND )
292 {
293 ms_choices.Add( imagename );
294 g_myImageArray.Add( new wxMyImageInfo( filename.GetFullPath() ) );
295
296 index = g_myImageArray.GetCount() - 1;
297 }
298
299 // If no thumbnail ready, then need to load image.
300 if ( !g_myImageArray[index].m_pThumbnail2 )
301 {
302 // Load if file exists.
303 if ( filename.FileExists() )
304 m_pImage = new wxImage( filename.GetFullPath() );
305 }
306
307 m_index = index;
308
309 wxPropertyGrid* pg = GetGrid();
310 wxWindow* control = pg->GetEditorControl();
311
312 if ( pg->GetSelection() == this && control )
313 {
314 wxString name = GetValueAsString(0);
315
316 if ( g_myImageArray.GetCount() != prevCount )
317 {
318 wxASSERT( g_myImageArray.GetCount() == (prevCount+1) );
319
320 // Add to the control's array.
321 // (should be added to own array earlier)
322
323 if ( control )
324 GetEditorClass()->InsertItem(control, name, -1);
325 }
326
327 if ( control )
328 GetEditorClass()->UpdateControl(this, control);
329 }
330 }
331 else
332 m_index = -1;
333 }
334
335 bool wxAdvImageFileProperty::IntToValue( wxVariant& variant, int number, int WXUNUSED(argFlags) ) const
336 {
337 wxASSERT( number >= 0 );
338 return StringToValue( variant, ms_choices.GetLabel(number), wxPG_FULL_VALUE );
339 }
340
341 bool wxAdvImageFileProperty::OnEvent( wxPropertyGrid* propgrid, wxWindow* primary,
342 wxEvent& event )
343 {
344 if ( propgrid->IsMainButtonEvent(event) )
345 {
346 return wxFileProperty::OnEvent(propgrid,primary,event);
347 }
348 return false;
349 }
350
351 wxSize wxAdvImageFileProperty::OnMeasureImage( int item ) const
352 {
353 if ( item == -1 )
354 return wxPG_DEFAULT_IMAGE_SIZE;
355
356 return wxSize(PREF_THUMBNAIL_HEIGHT,PREF_THUMBNAIL_HEIGHT);
357 }
358
359 void wxAdvImageFileProperty::LoadThumbnails( size_t index )
360 {
361 wxMyImageInfo& mii = g_myImageArray[index];
362
363 if ( !mii.m_pThumbnail2 )
364 {
365 wxFileName filename = GetFileName();
366
367 if ( !m_pImage || !m_pImage->Ok() ||
368 filename != mii.m_path
369 )
370 {
371 if ( m_pImage )
372 delete m_pImage;
373 m_pImage = new wxImage( mii.m_path );
374 }
375
376 if ( m_pImage && m_pImage->Ok() )
377 {
378 int im_wid = m_pImage->GetWidth();
379 int im_hei = m_pImage->GetHeight();
380 if ( im_hei > PREF_THUMBNAIL_HEIGHT )
381 {
382 // TNW = (TNH*IW)/IH
383 im_wid = (PREF_THUMBNAIL_HEIGHT*m_pImage->GetWidth())/m_pImage->GetHeight();
384 im_hei = PREF_THUMBNAIL_HEIGHT;
385 }
386
387 m_pImage->Rescale( im_wid, im_hei );
388
389 mii.m_pThumbnail2 = new wxBitmap( *m_pImage );
390
391 wxSize cis = GetParentState()->GetGrid()->GetImageSize();
392 m_pImage->Rescale ( cis.x, cis.y );
393
394 mii.m_pThumbnail1 = new wxBitmap( *m_pImage );
395
396 }
397
398 if ( m_pImage )
399 {
400 delete m_pImage;
401 m_pImage = (wxImage*) NULL;
402 }
403 }
404 }
405
406 void wxAdvImageFileProperty::OnCustomPaint( wxDC& dc,
407 const wxRect& rect,
408 wxPGPaintData& pd )
409 {
410 int index = m_index;
411 if ( pd.m_choiceItem >= 0 )
412 index = pd.m_choiceItem;
413
414 //wxLogDebug(wxT("%i"),index);
415
416 if ( index >= 0 )
417 {
418 LoadThumbnails(index);
419
420 // Is this a measure item call?
421 if ( rect.x < 0 )
422 {
423 // Variable height
424 //pd.m_drawnHeight = PREF_THUMBNAIL_HEIGHT;
425 wxBitmap* pBitmap = (wxBitmap*)g_myImageArray[index].m_pThumbnail2;
426 if ( pBitmap )
427 pd.m_drawnHeight = pBitmap->GetHeight();
428 else
429 pd.m_drawnHeight = 16;
430 return;
431 }
432
433 // Draw the thumbnail
434
435 wxBitmap* pBitmap;
436
437 if ( pd.m_choiceItem >= 0 )
438 pBitmap = (wxBitmap*)g_myImageArray[index].m_pThumbnail2;
439 else
440 pBitmap = (wxBitmap*)g_myImageArray[index].m_pThumbnail1;
441
442 if ( pBitmap )
443 {
444 dc.DrawBitmap ( *pBitmap, rect.x, rect.y, FALSE );
445
446 // Tell the caller how wide we drew.
447 pd.m_drawnWidth = pBitmap->GetWidth();
448
449 return;
450 }
451 }
452
453 // No valid file - just draw a white box.
454 dc.SetBrush ( *wxWHITE_BRUSH );
455 dc.DrawRectangle ( rect );
456 }
457
458
459 // -----------------------------------------------------------------------
460 // wxVectorProperty
461 // -----------------------------------------------------------------------
462
463 // See propgridsample.h for wxVector3f class
464
465 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxVector3f)
466
467 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxVectorProperty,wxPGProperty,
468 wxVector3f,const wxVector3f&,TextCtrl)
469
470
471 wxVectorProperty::wxVectorProperty( const wxString& label,
472 const wxString& name,
473 const wxVector3f& value )
474 : wxPGProperty(label,name)
475 {
476 SetValue( WXVARIANT(value) );
477 SetParentalType(wxPG_PROP_AGGREGATE);
478 AddChild( new wxFloatProperty(wxT("X"),wxPG_LABEL,value.x) );
479 AddChild( new wxFloatProperty(wxT("Y"),wxPG_LABEL,value.y) );
480 AddChild( new wxFloatProperty(wxT("Z"),wxPG_LABEL,value.z) );
481 }
482
483 wxVectorProperty::~wxVectorProperty() { }
484
485 void wxVectorProperty::RefreshChildren()
486 {
487 if ( !GetChildCount() ) return;
488 const wxVector3f& vector = wxVector3fRefFromVariant(m_value);
489 Item(0)->SetValue( vector.x );
490 Item(1)->SetValue( vector.y );
491 Item(2)->SetValue( vector.z );
492 }
493
494 void wxVectorProperty::ChildChanged( wxVariant& thisValue, int childIndex, wxVariant& childValue ) const
495 {
496 wxVector3f vector;
497 vector << thisValue;
498 switch ( childIndex )
499 {
500 case 0: vector.x = childValue.GetDouble(); break;
501 case 1: vector.y = childValue.GetDouble(); break;
502 case 2: vector.z = childValue.GetDouble(); break;
503 }
504 thisValue << vector;
505 }
506
507
508 // -----------------------------------------------------------------------
509 // wxTriangleProperty
510 // -----------------------------------------------------------------------
511
512 // See propgridsample.h for wxTriangle class
513
514 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(wxTriangle)
515
516 WX_PG_IMPLEMENT_PROPERTY_CLASS(wxTriangleProperty,wxPGProperty,
517 wxTriangle,const wxTriangle&,TextCtrl)
518
519
520 wxTriangleProperty::wxTriangleProperty( const wxString& label,
521 const wxString& name,
522 const wxTriangle& value)
523 : wxPGProperty(label,name)
524 {
525 SetValue( WXVARIANT(value) );
526 SetParentalType(wxPG_PROP_AGGREGATE);
527 AddChild( new wxVectorProperty(wxT("A"),wxPG_LABEL,value.a) );
528 AddChild( new wxVectorProperty(wxT("B"),wxPG_LABEL,value.b) );
529 AddChild( new wxVectorProperty(wxT("C"),wxPG_LABEL,value.c) );
530 }
531
532 wxTriangleProperty::~wxTriangleProperty() { }
533
534 void wxTriangleProperty::RefreshChildren()
535 {
536 if ( !GetChildCount() ) return;
537 const wxTriangle& triangle = wxTriangleRefFromVariant(m_value);
538 Item(0)->SetValue( WXVARIANT(triangle.a) );
539 Item(1)->SetValue( WXVARIANT(triangle.b) );
540 Item(2)->SetValue( WXVARIANT(triangle.c) );
541 }
542
543 void wxTriangleProperty::ChildChanged( wxVariant& thisValue, int childIndex, wxVariant& childValue ) const
544 {
545 wxTriangle triangle;
546 triangle << thisValue;
547 const wxVector3f& vector = wxVector3fRefFromVariant(childValue);
548 switch ( childIndex )
549 {
550 case 0: triangle.a = vector; break;
551 case 1: triangle.b = vector; break;
552 case 2: triangle.c = vector; break;
553 }
554 thisValue << triangle;
555 }
556
557
558 // -----------------------------------------------------------------------
559 // wxSingleChoiceDialogAdapter (wxPGEditorDialogAdapter sample)
560 // -----------------------------------------------------------------------
561
562 class wxSingleChoiceDialogAdapter : public wxPGEditorDialogAdapter
563 {
564 public:
565
566 wxSingleChoiceDialogAdapter( const wxPGChoices& choices )
567 : wxPGEditorDialogAdapter(), m_choices(choices)
568 {
569 }
570
571 virtual bool DoShowDialog( wxPropertyGrid* WXUNUSED(propGrid),
572 wxPGProperty* WXUNUSED(property) )
573 {
574 wxString s = ::wxGetSingleChoice(wxT("Message"),
575 wxT("Caption"),
576 m_choices.GetLabels());
577 if ( s.length() )
578 {
579 SetValue(s);
580 return true;
581 }
582
583 return false;
584 }
585
586 protected:
587 const wxPGChoices& m_choices;
588 };
589
590
591 class SingleChoiceProperty : public wxStringProperty
592 {
593 public:
594
595 SingleChoiceProperty( const wxString& label,
596 const wxString& name = wxPG_LABEL,
597 const wxString& value = wxEmptyString )
598 : wxStringProperty(label, name, value)
599 {
600 // Prepare choices
601 m_choices.Add(wxT("Cat"));
602 m_choices.Add(wxT("Dog"));
603 m_choices.Add(wxT("Gibbon"));
604 m_choices.Add(wxT("Otter"));
605 }
606
607 // Set editor to have button
608 virtual const wxPGEditor* DoGetEditorClass() const
609 {
610 return wxPGEditor_TextCtrlAndButton;
611 }
612
613 // Set what happens on button click
614 virtual wxPGEditorDialogAdapter* GetEditorDialog() const
615 {
616 return new wxSingleChoiceDialogAdapter(m_choices);
617 }
618
619 protected:
620 wxPGChoices m_choices;
621 };
622
623 // -----------------------------------------------------------------------
624 // Menu IDs
625 // -----------------------------------------------------------------------
626
627 enum
628 {
629 PGID = 1,
630 TCID,
631 ID_ABOUT,
632 ID_QUIT,
633 ID_APPENDPROP,
634 ID_APPENDCAT,
635 ID_INSERTPROP,
636 ID_INSERTCAT,
637 ID_ENABLE,
638 ID_HIDE,
639 ID_DELETE,
640 ID_DELETER,
641 ID_DELETEALL,
642 ID_UNSPECIFY,
643 ID_ITERATE1,
644 ID_ITERATE2,
645 ID_ITERATE3,
646 ID_ITERATE4,
647 ID_CLEARMODIF,
648 ID_FREEZE,
649 ID_DUMPLIST,
650 ID_COLOURSCHEME1,
651 ID_COLOURSCHEME2,
652 ID_COLOURSCHEME3,
653 ID_CATCOLOURS,
654 ID_SETCOLOUR,
655 ID_STATICLAYOUT,
656 ID_POPULATE1,
657 ID_POPULATE2,
658 ID_COLLAPSE,
659 ID_COLLAPSEALL,
660 ID_GETVALUES,
661 ID_SETVALUES,
662 ID_SETVALUES2,
663 ID_RUNTESTFULL,
664 ID_RUNTESTPARTIAL,
665 ID_FITCOLUMNS,
666 ID_CHANGEFLAGSITEMS,
667 ID_TESTINSERTCHOICE,
668 ID_TESTDELETECHOICE,
669 ID_INSERTPAGE,
670 ID_REMOVEPAGE,
671 ID_SETSPINCTRLEDITOR,
672 ID_SETPROPERTYVALUE,
673 ID_TESTREPLACE,
674 ID_SETCOLUMNS,
675 ID_TESTXRC,
676 ID_ENABLECOMMONVALUES,
677 ID_SELECTSTYLE,
678 ID_SAVESTATE,
679 ID_RESTORESTATE,
680 ID_RUNMINIMAL
681 };
682
683 // -----------------------------------------------------------------------
684 // Event table
685 // -----------------------------------------------------------------------
686
687 BEGIN_EVENT_TABLE(FormMain, wxFrame)
688 EVT_IDLE(FormMain::OnIdle)
689 EVT_MOVE(FormMain::OnMove)
690 EVT_SIZE(FormMain::OnResize)
691
692 // This occurs when a property is selected
693 EVT_PG_SELECTED( PGID, FormMain::OnPropertyGridSelect )
694 // This occurs when a property value changes
695 EVT_PG_CHANGED( PGID, FormMain::OnPropertyGridChange )
696 // This occurs just prior a property value is changed
697 EVT_PG_CHANGING( PGID, FormMain::OnPropertyGridChanging )
698 // This occurs when a mouse moves over another property
699 EVT_PG_HIGHLIGHTED( PGID, FormMain::OnPropertyGridHighlight )
700 // This occurs when mouse is right-clicked.
701 EVT_PG_RIGHT_CLICK( PGID, FormMain::OnPropertyGridItemRightClick )
702 // This occurs when mouse is double-clicked.
703 EVT_PG_DOUBLE_CLICK( PGID, FormMain::OnPropertyGridItemDoubleClick )
704 // This occurs when propgridmanager's page changes.
705 EVT_PG_PAGE_CHANGED( PGID, FormMain::OnPropertyGridPageChange )
706 // This occurs when property's editor button (if any) is clicked.
707 EVT_BUTTON( PGID, FormMain::OnPropertyGridButtonClick )
708
709 EVT_PG_ITEM_COLLAPSED( PGID, FormMain::OnPropertyGridItemCollapse )
710 EVT_PG_ITEM_EXPANDED( PGID, FormMain::OnPropertyGridItemExpand )
711
712 EVT_TEXT( PGID, FormMain::OnPropertyGridTextUpdate )
713
714 //
715 // Rest of the events are not property grid specific
716 EVT_KEY_DOWN( FormMain::OnPropertyGridKeyEvent )
717 EVT_KEY_UP( FormMain::OnPropertyGridKeyEvent )
718
719 EVT_MENU( ID_APPENDPROP, FormMain::OnAppendPropClick )
720 EVT_MENU( ID_APPENDCAT, FormMain::OnAppendCatClick )
721 EVT_MENU( ID_INSERTPROP, FormMain::OnInsertPropClick )
722 EVT_MENU( ID_INSERTCAT, FormMain::OnInsertCatClick )
723 EVT_MENU( ID_DELETE, FormMain::OnDelPropClick )
724 EVT_MENU( ID_DELETER, FormMain::OnDelPropRClick )
725 EVT_MENU( ID_UNSPECIFY, FormMain::OnMisc )
726 EVT_MENU( ID_DELETEALL, FormMain::OnClearClick )
727 EVT_MENU( ID_ENABLE, FormMain::OnEnableDisable )
728 EVT_MENU( ID_HIDE, FormMain::OnHideShow )
729 EVT_MENU( ID_ITERATE1, FormMain::OnIterate1Click )
730 EVT_MENU( ID_ITERATE2, FormMain::OnIterate2Click )
731 EVT_MENU( ID_ITERATE3, FormMain::OnIterate3Click )
732 EVT_MENU( ID_ITERATE4, FormMain::OnIterate4Click )
733 EVT_MENU( ID_SETCOLOUR, FormMain::OnMisc )
734 EVT_MENU( ID_CLEARMODIF, FormMain::OnClearModifyStatusClick )
735 EVT_MENU( ID_FREEZE, FormMain::OnFreezeClick )
736 EVT_MENU( ID_DUMPLIST, FormMain::OnDumpList )
737
738 EVT_MENU( ID_COLOURSCHEME1, FormMain::OnColourScheme )
739 EVT_MENU( ID_COLOURSCHEME2, FormMain::OnColourScheme )
740 EVT_MENU( ID_COLOURSCHEME3, FormMain::OnColourScheme )
741 EVT_MENU( ID_COLOURSCHEME4, FormMain::OnColourScheme )
742
743 EVT_MENU( ID_ABOUT, FormMain::OnAbout )
744 EVT_MENU( ID_QUIT, FormMain::OnCloseClick )
745
746 EVT_MENU( ID_CATCOLOURS, FormMain::OnCatColours )
747 EVT_MENU( ID_SETCOLUMNS, FormMain::OnSetColumns )
748 EVT_MENU( ID_TESTXRC, FormMain::OnTestXRC )
749 EVT_MENU( ID_ENABLECOMMONVALUES, FormMain::OnEnableCommonValues )
750 EVT_MENU( ID_SELECTSTYLE, FormMain::OnSelectStyle )
751
752 EVT_MENU( ID_STATICLAYOUT, FormMain::OnMisc )
753 EVT_MENU( ID_COLLAPSE, FormMain::OnMisc )
754 EVT_MENU( ID_COLLAPSEALL, FormMain::OnMisc )
755
756 EVT_MENU( ID_POPULATE1, FormMain::OnPopulateClick )
757 EVT_MENU( ID_POPULATE2, FormMain::OnPopulateClick )
758
759 EVT_MENU( ID_GETVALUES, FormMain::OnMisc )
760 EVT_MENU( ID_SETVALUES, FormMain::OnMisc )
761 EVT_MENU( ID_SETVALUES2, FormMain::OnMisc )
762
763 EVT_MENU( ID_FITCOLUMNS, FormMain::OnFitColumnsClick )
764
765 EVT_MENU( ID_CHANGEFLAGSITEMS, FormMain::OnChangeFlagsPropItemsClick )
766
767 EVT_MENU( ID_RUNTESTFULL, FormMain::OnMisc )
768 EVT_MENU( ID_RUNTESTPARTIAL, FormMain::OnMisc )
769
770 EVT_MENU( ID_TESTINSERTCHOICE, FormMain::OnInsertChoice )
771 EVT_MENU( ID_TESTDELETECHOICE, FormMain::OnDeleteChoice )
772
773 EVT_MENU( ID_INSERTPAGE, FormMain::OnInsertPage )
774 EVT_MENU( ID_REMOVEPAGE, FormMain::OnRemovePage )
775
776 EVT_MENU( ID_SAVESTATE, FormMain::OnSaveState )
777 EVT_MENU( ID_RESTORESTATE, FormMain::OnRestoreState )
778
779 EVT_MENU( ID_SETSPINCTRLEDITOR, FormMain::OnSetSpinCtrlEditorClick )
780 EVT_MENU( ID_TESTREPLACE, FormMain::OnTestReplaceClick )
781 EVT_MENU( ID_SETPROPERTYVALUE, FormMain::OnSetPropertyValue )
782
783 EVT_MENU( ID_RUNMINIMAL, FormMain::OnRunMinimalClick )
784
785 EVT_CONTEXT_MENU( FormMain::OnContextMenu )
786 END_EVENT_TABLE()
787
788 // -----------------------------------------------------------------------
789
790 void FormMain::OnMove( wxMoveEvent& event )
791 {
792 if ( !m_pPropGridManager )
793 {
794 // this check is here so the frame layout can be tested
795 // without creating propertygrid
796 event.Skip();
797 return;
798 }
799
800 // Update position properties
801 int x, y;
802 GetPosition(&x,&y);
803
804 wxPGProperty* id;
805
806 // Must check if properties exist (as they may be deleted).
807
808 // Using m_pPropGridManager, we can scan all pages automatically.
809 id = m_pPropGridManager->GetPropertyByName( wxT("X") );
810 if ( id )
811 m_pPropGridManager->SetPropertyValue( id, x );
812
813 id = m_pPropGridManager->GetPropertyByName( wxT("Y") );
814 if ( id )
815 m_pPropGridManager->SetPropertyValue( id, y );
816
817 id = m_pPropGridManager->GetPropertyByName( wxT("Position") );
818 if ( id )
819 m_pPropGridManager->SetPropertyValue( id, WXVARIANT(wxPoint(x,y)) );
820
821 // Should always call event.Skip() in frame's MoveEvent handler
822 event.Skip();
823 }
824
825 // -----------------------------------------------------------------------
826
827 void FormMain::OnResize( wxSizeEvent& event )
828 {
829 if ( !m_pPropGridManager )
830 {
831 // this check is here so the frame layout can be tested
832 // without creating propertygrid
833 event.Skip();
834 return;
835 }
836
837 // Update size properties
838 int w, h;
839 GetSize(&w,&h);
840
841 wxPGProperty* id;
842 wxPGProperty* p;
843
844 // Must check if properties exist (as they may be deleted).
845
846 // Using m_pPropGridManager, we can scan all pages automatically.
847 p = m_pPropGridManager->GetPropertyByName( wxT("Width") );
848 if ( p && !p->IsValueUnspecified() )
849 m_pPropGridManager->SetPropertyValue( p, w );
850
851 p = m_pPropGridManager->GetPropertyByName( wxT("Height") );
852 if ( p && !p->IsValueUnspecified() )
853 m_pPropGridManager->SetPropertyValue( p, h );
854
855 id = m_pPropGridManager->GetPropertyByName ( wxT("Size") );
856 if ( id )
857 m_pPropGridManager->SetPropertyValue( id, WXVARIANT(wxSize(w,h)) );
858
859 // Should always call event.Skip() in frame's SizeEvent handler
860 event.Skip();
861 }
862
863 // -----------------------------------------------------------------------
864
865 void FormMain::OnPropertyGridChanging( wxPropertyGridEvent& event )
866 {
867 wxPGProperty* p = event.GetProperty();
868
869 if ( p->GetName() == wxT("Font") )
870 {
871 int res =
872 wxMessageBox(wxString::Format(wxT("'%s' is about to change (to variant of type '%s')\n\nAllow or deny?"),
873 p->GetName().c_str(),event.GetValue().GetType().c_str()),
874 wxT("Testing wxEVT_PG_CHANGING"), wxYES_NO, m_pPropGridManager);
875
876 if ( res == wxNO )
877 {
878 wxASSERT(event.CanVeto());
879
880 event.Veto();
881
882 // Since we ask a question, it is better if we omit any validation
883 // failure behavior.
884 event.SetValidationFailureBehavior(0);
885 }
886 }
887 }
888
889 //
890 // Note how we use three types of value getting in this method:
891 // A) event.GetPropertyValueAsXXX
892 // B) event.GetPropertValue, and then variant's GetXXX
893 // C) grid's GetPropertyValueAsXXX(id)
894 //
895 void FormMain::OnPropertyGridChange( wxPropertyGridEvent& event )
896 {
897 wxPGProperty* property = event.GetProperty();
898
899 const wxString& name = property->GetName();
900 wxVariant value = property->GetValue();
901
902 // Don't handle 'unspecified' values
903 if ( value.IsNull() )
904 return;
905
906 // Some settings are disabled outside Windows platform
907 if ( name == wxT("X") )
908 SetSize ( m_pPropGridManager->GetPropertyValueAsInt(property), -1, -1, -1, wxSIZE_USE_EXISTING );
909 else if ( name == wxT("Y") )
910 // wxPGVariantToInt is safe long int value getter
911 SetSize ( -1, wxPGVariantToInt(value), -1, -1, wxSIZE_USE_EXISTING );
912 else if ( name == wxT("Width") )
913 SetSize ( -1, -1, m_pPropGridManager->GetPropertyValueAsInt(property), -1, wxSIZE_USE_EXISTING );
914 else if ( name == wxT("Height") )
915 SetSize ( -1, -1, -1, wxPGVariantToInt(value), wxSIZE_USE_EXISTING );
916 else if ( name == wxT("Label") )
917 {
918 SetTitle ( m_pPropGridManager->GetPropertyValueAsString(property) );
919 }
920 else if ( name == wxT("Password") )
921 {
922 static int pwdMode = 0;
923
924 //m_pPropGridManager->SetPropertyAttribute(property, wxPG_STRING_PASSWORD, (long)pwdMode);
925
926 pwdMode++;
927 pwdMode &= 1;
928 }
929 else
930 if ( name == wxT("Font") )
931 {
932 wxFont font;
933 font << value;
934 wxASSERT( font.Ok() );
935
936 m_pPropGridManager->SetFont( font );
937 }
938 else
939 if ( name == wxT("Margin Colour") )
940 {
941 wxColourPropertyValue cpv;
942 cpv << value;
943 m_pPropGridManager->GetGrid()->SetMarginColour( cpv.m_colour );
944 }
945 else if ( name == wxT("Cell Colour") )
946 {
947 wxColourPropertyValue cpv;
948 cpv << value;
949 m_pPropGridManager->GetGrid()->SetCellBackgroundColour( cpv.m_colour );
950 }
951 else if ( name == wxT("Line Colour") )
952 {
953 wxColourPropertyValue cpv;
954 cpv << value;
955 m_pPropGridManager->GetGrid()->SetLineColour( cpv.m_colour );
956 }
957 else if ( name == wxT("Cell Text Colour") )
958 {
959 wxColourPropertyValue cpv;
960 cpv << value;
961 m_pPropGridManager->GetGrid()->SetCellTextColour( cpv.m_colour );
962 }
963 }
964
965 // -----------------------------------------------------------------------
966
967 void FormMain::OnPropertyGridSelect( wxPropertyGridEvent& event )
968 {
969 wxPGProperty* property = event.GetProperty();
970 if ( property )
971 {
972 m_itemEnable->Enable( TRUE );
973 if ( property->IsEnabled() )
974 m_itemEnable->SetItemLabel( wxT("Disable") );
975 else
976 m_itemEnable->SetItemLabel( wxT("Enable") );
977 }
978 else
979 {
980 m_itemEnable->Enable( FALSE );
981 }
982
983 #if wxUSE_STATUSBAR
984 wxPGProperty* prop = event.GetProperty();
985 wxStatusBar* sb = GetStatusBar();
986 if ( prop )
987 {
988 wxString text(wxT("Selected: "));
989 text += m_pPropGridManager->GetPropertyLabel( prop );
990 sb->SetStatusText ( text );
991 }
992 #endif
993 }
994
995 // -----------------------------------------------------------------------
996
997 void FormMain::OnPropertyGridPageChange( wxPropertyGridEvent& WXUNUSED(event) )
998 {
999 #if wxUSE_STATUSBAR
1000 wxStatusBar* sb = GetStatusBar();
1001 wxString text(wxT("Page Changed: "));
1002 text += m_pPropGridManager->GetPageName(m_pPropGridManager->GetSelectedPage());
1003 sb->SetStatusText( text );
1004 #endif
1005 }
1006
1007 // -----------------------------------------------------------------------
1008
1009 void FormMain::OnPropertyGridHighlight( wxPropertyGridEvent& WXUNUSED(event) )
1010 {
1011 }
1012
1013 // -----------------------------------------------------------------------
1014
1015 void FormMain::OnPropertyGridItemRightClick( wxPropertyGridEvent& event )
1016 {
1017 #if wxUSE_STATUSBAR
1018 wxPGProperty* prop = event.GetProperty();
1019 wxStatusBar* sb = GetStatusBar();
1020 if ( prop )
1021 {
1022 wxString text(wxT("Right-clicked: "));
1023 text += prop->GetLabel();
1024 text += wxT(", name=");
1025 text += m_pPropGridManager->GetPropertyName(prop);
1026 sb->SetStatusText( text );
1027 }
1028 else
1029 {
1030 sb->SetStatusText( wxEmptyString );
1031 }
1032 #endif
1033 }
1034
1035 // -----------------------------------------------------------------------
1036
1037 void FormMain::OnPropertyGridItemDoubleClick( wxPropertyGridEvent& event )
1038 {
1039 #if wxUSE_STATUSBAR
1040 wxPGProperty* prop = event.GetProperty();
1041 wxStatusBar* sb = GetStatusBar();
1042 if ( prop )
1043 {
1044 wxString text(wxT("Double-clicked: "));
1045 text += prop->GetLabel();
1046 text += wxT(", name=");
1047 text += m_pPropGridManager->GetPropertyName(prop);
1048 sb->SetStatusText ( text );
1049 }
1050 else
1051 {
1052 sb->SetStatusText ( wxEmptyString );
1053 }
1054 #endif
1055 }
1056
1057 // -----------------------------------------------------------------------
1058
1059 void FormMain::OnPropertyGridButtonClick ( wxCommandEvent& )
1060 {
1061 #if wxUSE_STATUSBAR
1062 wxPGProperty* prop = m_pPropGridManager->GetSelection();
1063 wxStatusBar* sb = GetStatusBar();
1064 if ( prop )
1065 {
1066 wxString text(wxT("Button clicked: "));
1067 text += m_pPropGridManager->GetPropertyLabel(prop);
1068 text += wxT(", name=");
1069 text += m_pPropGridManager->GetPropertyName(prop);
1070 sb->SetStatusText( text );
1071 }
1072 else
1073 {
1074 ::wxMessageBox(wxT("SHOULD NOT HAPPEN!!!"));
1075 }
1076 #endif
1077 }
1078
1079 // -----------------------------------------------------------------------
1080
1081 void FormMain::OnPropertyGridItemCollapse( wxPropertyGridEvent& )
1082 {
1083 wxLogDebug(wxT("Item was Collapsed"));
1084 }
1085
1086 // -----------------------------------------------------------------------
1087
1088 void FormMain::OnPropertyGridItemExpand( wxPropertyGridEvent& )
1089 {
1090 wxLogDebug(wxT("Item was Expanded"));
1091 }
1092
1093 // -----------------------------------------------------------------------
1094
1095 // EVT_TEXT handling
1096 void FormMain::OnPropertyGridTextUpdate( wxCommandEvent& event )
1097 {
1098 event.Skip();
1099 }
1100
1101 // -----------------------------------------------------------------------
1102
1103 void FormMain::OnPropertyGridKeyEvent( wxKeyEvent& WXUNUSED(event) )
1104 {
1105 // Occurs on wxGTK mostly, but not wxMSW.
1106 }
1107
1108 // -----------------------------------------------------------------------
1109
1110 void FormMain::OnLabelTextChange( wxCommandEvent& WXUNUSED(event) )
1111 {
1112 // Uncomment following to allow property label modify in real-time
1113 // wxPGProperty& p = m_pPropGridManager->GetGrid()->GetSelection();
1114 // if ( !p.IsOk() ) return;
1115 // m_pPropGridManager->SetPropertyLabel( p, m_tcPropLabel->DoGetValue() );
1116 }
1117
1118 // -----------------------------------------------------------------------
1119
1120 static const wxChar* _fs_windowstyle_labels[] = {
1121 wxT("wxSIMPLE_BORDER"),
1122 wxT("wxDOUBLE_BORDER"),
1123 wxT("wxSUNKEN_BORDER"),
1124 wxT("wxRAISED_BORDER"),
1125 wxT("wxNO_BORDER"),
1126 wxT("wxTRANSPARENT_WINDOW"),
1127 wxT("wxTAB_TRAVERSAL"),
1128 wxT("wxWANTS_CHARS"),
1129 #if wxNO_FULL_REPAINT_ON_RESIZE
1130 wxT("wxNO_FULL_REPAINT_ON_RESIZE"),
1131 #endif
1132 wxT("wxVSCROLL"),
1133 wxT("wxALWAYS_SHOW_SB"),
1134 wxT("wxCLIP_CHILDREN"),
1135 #if wxFULL_REPAINT_ON_RESIZE
1136 wxT("wxFULL_REPAINT_ON_RESIZE"),
1137 #endif
1138 (const wxChar*) NULL // terminator is always needed
1139 };
1140
1141 static const long _fs_windowstyle_values[] = {
1142 wxSIMPLE_BORDER,
1143 wxDOUBLE_BORDER,
1144 wxSUNKEN_BORDER,
1145 wxRAISED_BORDER,
1146 wxNO_BORDER,
1147 wxTRANSPARENT_WINDOW,
1148 wxTAB_TRAVERSAL,
1149 wxWANTS_CHARS,
1150 #if wxNO_FULL_REPAINT_ON_RESIZE
1151 wxNO_FULL_REPAINT_ON_RESIZE,
1152 #endif
1153 wxVSCROLL,
1154 wxALWAYS_SHOW_SB,
1155 wxCLIP_CHILDREN,
1156 #if wxFULL_REPAINT_ON_RESIZE
1157 wxFULL_REPAINT_ON_RESIZE
1158 #endif
1159 };
1160
1161 static const wxChar* _fs_framestyle_labels[] = {
1162 wxT("wxCAPTION"),
1163 wxT("wxMINIMIZE"),
1164 wxT("wxMAXIMIZE"),
1165 wxT("wxCLOSE_BOX"),
1166 wxT("wxSTAY_ON_TOP"),
1167 wxT("wxSYSTEM_MENU"),
1168 wxT("wxRESIZE_BORDER"),
1169 wxT("wxFRAME_TOOL_WINDOW"),
1170 wxT("wxFRAME_NO_TASKBAR"),
1171 wxT("wxFRAME_FLOAT_ON_PARENT"),
1172 wxT("wxFRAME_SHAPED"),
1173 (const wxChar*) NULL
1174 };
1175
1176 static const long _fs_framestyle_values[] = {
1177 wxCAPTION,
1178 wxMINIMIZE,
1179 wxMAXIMIZE,
1180 wxCLOSE_BOX,
1181 wxSTAY_ON_TOP,
1182 wxSYSTEM_MENU,
1183 wxRESIZE_BORDER,
1184 wxFRAME_TOOL_WINDOW,
1185 wxFRAME_NO_TASKBAR,
1186 wxFRAME_FLOAT_ON_PARENT,
1187 wxFRAME_SHAPED
1188 };
1189
1190 // -----------------------------------------------------------------------
1191
1192 void FormMain::OnTestXRC(wxCommandEvent& WXUNUSED(event))
1193 {
1194 wxMessageBox(wxT("Sorrt, not yet implemented"));
1195 }
1196
1197 void FormMain::OnEnableCommonValues(wxCommandEvent& WXUNUSED(event))
1198 {
1199 wxPGProperty* prop = m_pPropGridManager->GetSelection();
1200 if ( prop )
1201 prop->EnableCommonValue();
1202 else
1203 wxMessageBox(wxT("First select a property"));
1204 }
1205
1206 void FormMain::PopulateWithStandardItems ()
1207 {
1208 wxPropertyGridManager* pgman = m_pPropGridManager;
1209 wxPropertyGridPage* pg = pgman->GetPage(wxT("Standard Items"));
1210
1211 // Append is ideal way to add items to wxPropertyGrid.
1212 pg->Append( new wxPropertyCategory(wxT("Appearance"),wxPG_LABEL) );
1213
1214 pg->Append( new wxStringProperty(wxT("Label"),wxPG_LABEL,GetTitle()) );
1215 pg->Append( new wxFontProperty(wxT("Font"),wxPG_LABEL) );
1216 pg->SetPropertyHelpString ( wxT("Font"), wxT("Editing this will change font used in the property grid.") );
1217
1218 pg->Append( new wxSystemColourProperty(wxT("Margin Colour"),wxPG_LABEL,
1219 pg->GetGrid()->GetMarginColour()) );
1220
1221 pg->Append( new wxSystemColourProperty(wxT("Cell Colour"),wxPG_LABEL,
1222 pg->GetGrid()->GetCellBackgroundColour()) );
1223 pg->Append( new wxSystemColourProperty(wxT("Cell Text Colour"),wxPG_LABEL,
1224 pg->GetGrid()->GetCellTextColour()) );
1225 pg->Append( new wxSystemColourProperty(wxT("Line Colour"),wxPG_LABEL,
1226 pg->GetGrid()->GetLineColour()) );
1227 pg->Append( new wxFlagsProperty(wxT("Window Styles"),wxPG_LABEL,
1228 m_combinedFlags, GetWindowStyle()) );
1229
1230 //pg->SetPropertyAttribute(wxT("Window Styles"),wxPG_BOOL_USE_CHECKBOX,true,wxPG_RECURSE);
1231
1232 pg->Append( new wxCursorProperty(wxT("Cursor"),wxPG_LABEL) );
1233
1234 pg->Append( new wxPropertyCategory(wxT("Position"),wxT("PositionCategory")) );
1235 pg->SetPropertyHelpString( wxT("PositionCategory"), wxT("Change in items in this category will cause respective changes in frame.") );
1236
1237 // Let's demonstrate 'Units' attribute here
1238
1239 // Note that we use many attribute constants instead of strings here
1240 // (for instance, wxPG_ATTR_MIN, instead of wxT("min")).
1241 // Using constant may reduce binary size.
1242
1243 pg->Append( new wxIntProperty(wxT("Height"),wxPG_LABEL,480) );
1244 pg->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MIN, (long)10 );
1245 pg->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_MAX, (long)2048 );
1246 pg->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_UNITS, wxT("Pixels") );
1247
1248 // Set value to unspecified so that InlineHelp attribute will be demonstrated
1249 pg->SetPropertyValueUnspecified(wxT("Height"));
1250 pg->SetPropertyAttribute(wxT("Height"), wxPG_ATTR_INLINE_HELP, wxT("Enter new height for window") );
1251 pg->SetPropertyHelpString(wxT("Height"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1252
1253 pg->Append( new wxIntProperty(wxT("Width"),wxPG_LABEL,640) );
1254 pg->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MIN, (long)10 );
1255 pg->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_MAX, (long)2048 );
1256 pg->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_UNITS, wxT("Pixels") );
1257
1258 pg->SetPropertyValueUnspecified(wxT("Width"));
1259 pg->SetPropertyAttribute(wxT("Width"), wxPG_ATTR_INLINE_HELP, wxT("Enter new width for window") );
1260 pg->SetPropertyHelpString(wxT("Width"), wxT("This property uses attributes \"Units\" and \"InlineHelp\".") );
1261
1262 pg->Append( new wxIntProperty(wxT("X"),wxPG_LABEL,10) );
1263 pg->SetPropertyAttribute(wxT("X"), wxPG_ATTR_UNITS, wxT("Pixels") );
1264 pg->SetPropertyHelpString(wxT("X"), wxT("This property uses \"Units\" attribute.") );
1265
1266 pg->Append( new wxIntProperty(wxT("Y"),wxPG_LABEL,10) );
1267 pg->SetPropertyAttribute(wxT("Y"), wxPG_ATTR_UNITS, wxT("Pixels") );
1268 pg->SetPropertyHelpString(wxT("Y"), wxT("This property uses \"Units\" attribute.") );
1269
1270 const wxChar* disabledHelpString = wxT("This property is simply disabled. Inorder to have label disabled as well, ")
1271 wxT("you need to set wxPG_EX_GREY_LABEL_WHEN_DISABLED using SetExtraStyle.");
1272
1273 pg->Append( new wxPropertyCategory(wxT("Environment"),wxPG_LABEL) );
1274 pg->Append( new wxStringProperty(wxT("Operating System"),wxPG_LABEL,::wxGetOsDescription()) );
1275
1276 pg->Append( new wxStringProperty(wxT("User Id"),wxPG_LABEL,::wxGetUserId()) );
1277 pg->Append( new wxDirProperty(wxT("User Home"),wxPG_LABEL,::wxGetUserHome()) );
1278 pg->Append( new wxStringProperty(wxT("User Name"),wxPG_LABEL,::wxGetUserName()) );
1279
1280 // Disable some of them
1281 pg->DisableProperty( wxT("Operating System") );
1282 pg->DisableProperty( wxT("User Id") );
1283 pg->DisableProperty( wxT("User Name") );
1284
1285 pg->SetPropertyHelpString( wxT("Operating System"), disabledHelpString );
1286 pg->SetPropertyHelpString( wxT("User Id"), disabledHelpString );
1287 pg->SetPropertyHelpString( wxT("User Name"), disabledHelpString );
1288
1289 pg->Append( new wxPropertyCategory(wxT("More Examples"),wxPG_LABEL) );
1290
1291 pg->Append( new wxFontDataProperty( wxT("FontDataProperty"), wxPG_LABEL) );
1292 pg->SetPropertyHelpString( wxT("FontDataProperty"),
1293 wxT("This demonstrates wxFontDataProperty class defined in this sample app. ")
1294 wxT("It is exactly like wxFontProperty from the library, but also has colour sub-property.")
1295 );
1296
1297 pg->Append( new wxDirsProperty(wxT("DirsProperty"),wxPG_LABEL) );
1298 pg->SetPropertyHelpString( wxT("DirsProperty"),
1299 wxT("This demonstrates wxDirsProperty class defined in this sample app. ")
1300 wxT("It is built with WX_PG_IMPLEMENT_ARRAYSTRING_PROPERTY_WITH_VALIDATOR macro, ")
1301 wxT("with custom action (dir dialog popup) defined.")
1302 );
1303
1304 pg->Append( new wxAdvImageFileProperty(wxT("AdvImageFileProperty"),wxPG_LABEL) );
1305 pg->SetPropertyHelpString( wxT("AdvImageFileProperty"),
1306 wxT("This demonstrates wxAdvImageFileProperty class defined in this sample app. ")
1307 wxT("Button can be used to add new images to the popup list.")
1308 );
1309
1310 wxArrayDouble arrdbl;
1311 arrdbl.Add(-1.0);
1312 arrdbl.Add(-0.5);
1313 arrdbl.Add(0.0);
1314 arrdbl.Add(0.5);
1315 arrdbl.Add(1.0);
1316
1317 pg->Append( new wxArrayDoubleProperty(wxT("ArrayDoubleProperty"),wxPG_LABEL,arrdbl) );
1318 //pg->SetPropertyAttribute(wxT("ArrayDoubleProperty"),wxPG_FLOAT_PRECISION,(long)2);
1319 pg->SetPropertyHelpString( wxT("ArrayDoubleProperty"),
1320 wxT("This demonstrates wxArrayDoubleProperty class defined in this sample app. ")
1321 wxT("It is an example of a custom list editor property.")
1322 );
1323
1324 pg->Append( new wxLongStringProperty(wxT("Information"),wxPG_LABEL,
1325 wxT("Editing properties will have immediate effect on this window, ")
1326 wxT("and vice versa (atleast in most cases, that is).")
1327 ) );
1328 pg->SetPropertyHelpString( wxT("Information"),
1329 wxT("This property is read-only.") );
1330
1331 pg->SetPropertyReadOnly( wxT("Information"), true );
1332
1333 //
1334 // Set test information for cells in columns 3 and 4
1335 // (reserve column 2 for displaying units)
1336 wxPropertyGridIterator it;
1337 wxBitmap bmp = wxArtProvider::GetBitmap(wxART_FOLDER);
1338
1339 for ( it = pg->GetGrid()->GetIterator();
1340 !it.AtEnd();
1341 it++ )
1342 {
1343 wxPGProperty* p = *it;
1344 if ( p->IsCategory() )
1345 continue;
1346
1347 pg->SetPropertyCell( p, 3, wxT("Cell 3"), bmp );
1348 pg->SetPropertyCell( p, 4, wxT("Cell 4"), wxNullBitmap, *wxWHITE, *wxBLACK );
1349 }
1350 }
1351
1352 // -----------------------------------------------------------------------
1353
1354 void FormMain::PopulateWithExamples ()
1355 {
1356 wxPropertyGridManager* pgman = m_pPropGridManager;
1357 wxPropertyGridPage* pg = pgman->GetPage(wxT("Examples"));
1358 wxPGProperty* pid;
1359 wxPGProperty* prop;
1360
1361 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1362 //pg->SetPropertyHelpString ( wxT("Examples"), wxT("This category has example of (almost) every built-in property class.") );
1363
1364 #if wxUSE_SPINBTN
1365 pg->Append( new wxIntProperty ( wxT("SpinCtrl"), wxPG_LABEL, 0 ) );
1366
1367 pg->SetPropertyEditor( wxT("SpinCtrl"), wxPGEditor_SpinCtrl );
1368 pg->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MIN, (long)-10 ); // Use constants instead of string
1369 pg->SetPropertyAttribute( wxT("SpinCtrl"), wxPG_ATTR_MAX, (long)10 ); // for reduced binary size.
1370 pg->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Step"), (long)2 );
1371 //pg->SetPropertyAttribute( wxT("SpinCtrl"), wxT("Wrap"), true );
1372
1373 pg->SetPropertyHelpString( wxT("SpinCtrl"),
1374 wxT("This is regular wxIntProperty, which editor has been ")
1375 wxT("changed to wxPGEditor_SpinCtrl. Note however that ")
1376 wxT("static wxPropertyGrid::RegisterAdditionalEditors() ")
1377 wxT("needs to be called prior to using it."));
1378
1379 #endif
1380
1381 // Add bool property
1382 pg->Append( new wxBoolProperty( wxT("BoolProperty"), wxPG_LABEL, false ) );
1383
1384 // Add bool property with check box
1385 pg->Append( new wxBoolProperty( wxT("BoolProperty with CheckBox"), wxPG_LABEL, false ) );
1386 pg->SetPropertyAttribute( wxT("BoolProperty with CheckBox"),
1387 wxPG_BOOL_USE_CHECKBOX,
1388 true );
1389
1390 pg->SetPropertyHelpString( wxT("BoolProperty with CheckBox"),
1391 wxT("Property attribute wxPG_BOOL_USE_CHECKBOX has been set to true.") );
1392
1393 pid = pg->Append( new wxFloatProperty( wxT("FloatProperty"),
1394 wxPG_LABEL,
1395 1234500.23 ) );
1396
1397 // A string property that can be edited in a separate editor dialog.
1398 pg->Append( new wxLongStringProperty( wxT("LongStringProperty"), wxT("LongStringProp"),
1399 wxT("This is much longer string than the first one. Edit it by clicking the button.") ) );
1400
1401 // A property that edits a wxArrayString.
1402 wxArrayString example_array;
1403 example_array.Add( wxT("String 1"));
1404 example_array.Add( wxT("String 2"));
1405 example_array.Add( wxT("String 3"));
1406 pg->Append( new wxArrayStringProperty( wxT("ArrayStringProperty"), wxPG_LABEL,
1407 example_array) );
1408
1409 // Test adding same category multiple times ( should not actually create a new one )
1410 //pg->Append( new wxPropertyCategory(wxT("Examples (low priority)"),wxT("Examples")) );
1411
1412 // A file selector property. Note that argument between name
1413 // and initial value is wildcard (format same as in wxFileDialog).
1414 prop = new wxFileProperty( wxT("FileProperty"), wxT("TextFile") );
1415 pg->Append( prop );
1416
1417 prop->SetAttribute(wxPG_FILE_WILDCARD,wxT("Text Files (*.txt)|*.txt"));
1418 prop->SetAttribute(wxPG_FILE_DIALOG_TITLE,wxT("Custom File Dialog Title"));
1419 prop->SetAttribute(wxPG_FILE_SHOW_FULL_PATH,false);
1420
1421 #ifdef __WXMSW__
1422 prop->SetAttribute(wxPG_FILE_SHOW_RELATIVE_PATH,wxT("C:\\Windows"));
1423 pg->SetPropertyValue(prop,wxT("C:\\Windows\\System32\\msvcrt71.dll"));
1424 #endif
1425
1426 #if wxUSE_IMAGE
1427 // An image file property. Arguments are just like for FileProperty, but
1428 // wildcard is missing (it is autogenerated from supported image formats).
1429 // If you really need to override it, create property separately, and call
1430 // its SetWildcard method.
1431 pg->Append( new wxImageFileProperty( wxT("ImageFile"), wxPG_LABEL ) );
1432 #endif
1433
1434 pid = pg->Append( new wxColourProperty(wxT("ColourProperty"),wxPG_LABEL,*wxRED) );
1435 //pg->SetPropertyAttribute(pid,wxPG_COLOUR_ALLOW_CUSTOM,false);
1436 pg->SetPropertyEditor( wxT("ColourProperty"), wxPGEditor_ComboBox );
1437 pg->GetProperty(wxT("ColourProperty"))->SetFlag(wxPG_PROP_AUTO_UNSPECIFIED);
1438 pg->SetPropertyHelpString( wxT("ColourProperty"),
1439 wxT("wxPropertyGrid::SetPropertyEditor method has been used to change ")
1440 wxT("editor of this property to wxPGEditor_ComboBox)"));
1441
1442 //
1443 // This demonstrates using alternative editor for colour property
1444 // to trigger colour dialog directly from button.
1445 pg->Append( new wxColourProperty(wxT("ColourProperty2"),wxPG_LABEL,*wxGREEN) );
1446
1447 //
1448 // wxEnumProperty does not store strings or even list of strings
1449 // ( so that's why they are static in function ).
1450 static const wxChar* enum_prop_labels[] = { wxT("One Item"),
1451 wxT("Another Item"), wxT("One More"), wxT("This Is Last"), NULL };
1452
1453 // this value array would be optional if values matched string indexes
1454 static long enum_prop_values[] = { 40, 80, 120, 160 };
1455
1456 // note that the initial value (the last argument) is the actual value,
1457 // not index or anything like that. Thus, our value selects "Another Item".
1458 //
1459 // 0 before value is number of items. If it is 0, like in our example,
1460 // number of items is calculated, and this requires that the string pointer
1461 // array is terminated with NULL.
1462 pg->Append( new wxEnumProperty(wxT("EnumProperty"),wxPG_LABEL,
1463 enum_prop_labels, enum_prop_values, 80 ) );
1464
1465 wxPGChoices soc;
1466
1467 // use basic table from our previous example
1468 // can also set/add wxArrayStrings and wxArrayInts directly.
1469 soc.Set( enum_prop_labels, enum_prop_values );
1470
1471 // add extra items
1472 soc.Add( wxT("Look, it continues"), 200 );
1473 soc.Add( wxT("Even More"), 240 );
1474 soc.Add( wxT("And More"), 280 );
1475 soc.Add( wxT("True End of the List"), 320 );
1476
1477 // Test custom colours ([] operator of wxPGChoices returns
1478 // references to wxPGChoiceEntry).
1479 soc[1].SetFgCol(*wxRED);
1480 soc[1].SetBgCol(*wxLIGHT_GREY);
1481 soc[2].SetFgCol(*wxGREEN);
1482 soc[2].SetBgCol(*wxLIGHT_GREY);
1483 soc[3].SetFgCol(*wxBLUE);
1484 soc[3].SetBgCol(*wxLIGHT_GREY);
1485 soc[4].SetBitmap(wxArtProvider::GetBitmap(wxART_FOLDER));
1486
1487 pg->Append( new wxEnumProperty(wxT("EnumProperty 2"),
1488 wxPG_LABEL,
1489 soc,
1490 240) );
1491 pg->GetProperty(wxT("EnumProperty 2"))->AddChoice(wxT("Testing Extra"), 360);
1492
1493 // Add a second time to test that the caching works. Also use
1494 // short form of constructor list + SetChoices.
1495 prop = new wxEnumProperty(wxT("EnumProperty 3"), wxPG_LABEL);
1496 pg->Append( prop );
1497 prop->SetChoices(soc);
1498 prop->SetValue(360);
1499 pg->SetPropertyHelpString(prop,
1500 wxT("Should have same choices as EnumProperty 2"));
1501
1502 pg->Append( new wxEnumProperty(wxT("EnumProperty 4"),wxPG_LABEL,
1503 soc, 240 ) );
1504 pg->SetPropertyHelpString(wxT("EnumProperty 4"),
1505 wxT("Should have same choices as EnumProperty 2"));
1506
1507 pg->Append( new wxEnumProperty(wxT("EnumProperty 5"),wxPG_LABEL,
1508 soc, 240 ) );
1509 pg->GetProperty(wxT("EnumProperty 5"))->SetChoicesExclusive();
1510 pg->GetProperty(wxT("EnumProperty 5"))->AddChoice(wxT("5th only"), 360);
1511
1512 pg->SetPropertyHelpString(wxT("EnumProperty 5"),
1513 wxT("Should have one extra item when compared to EnumProperty 4"));
1514
1515 // Password property example.
1516 pg->Append( new wxStringProperty(wxT("Password"),wxPG_LABEL, wxT("password")) );
1517 pg->SetPropertyAttribute( wxT("Password"), wxPG_STRING_PASSWORD, true );
1518 pg->SetPropertyHelpString( wxT("Password"),
1519 wxT("Has attribute wxPG_STRING_PASSWORD set to true") );
1520
1521 // String editor with dir selector button. Uses wxEmptyString as name, which
1522 // is allowed (naturally, in this case property cannot be accessed by name).
1523 pg->Append( new wxDirProperty( wxT("DirProperty"), wxPG_LABEL, ::wxGetUserHome()) );
1524 pg->SetPropertyAttribute( wxT("DirProperty"),
1525 wxPG_DIR_DIALOG_MESSAGE,
1526 wxT("This is a custom dir dialog message") );
1527
1528 // Add string property - first arg is label, second name, and third initial value
1529 pg->Append( new wxStringProperty ( wxT("StringProperty"), wxPG_LABEL ) );
1530 pg->SetPropertyMaxLength( wxT("StringProperty"), 6 );
1531 pg->SetPropertyHelpString( wxT("StringProperty"),
1532 wxT("Max length of this text has been limited to 6, using wxPropertyGrid::SetPropertyMaxLength.") );
1533
1534 // Set value after limiting so that it will be applied
1535 pg->SetPropertyValue( wxT("StringProperty"), wxT("some text") );
1536
1537
1538 // this value array would be optional if values matched string indexes
1539 //long flags_prop_values[] = { wxICONIZE, wxCAPTION, wxMINIMIZE_BOX, wxMAXIMIZE_BOX };
1540
1541 //pg->Append( wxFlagsProperty(wxT("Example of FlagsProperty"),wxT("FlagsProp"),
1542 // flags_prop_labels, flags_prop_values, 0, GetWindowStyle() ) );
1543
1544
1545 // Multi choice dialog.
1546 wxArrayString tchoices;
1547 tchoices.Add(wxT("Cabbage"));
1548 tchoices.Add(wxT("Carrot"));
1549 tchoices.Add(wxT("Onion"));
1550 tchoices.Add(wxT("Potato"));
1551 tchoices.Add(wxT("Strawberry"));
1552
1553 wxArrayString tchoicesValues;
1554 tchoicesValues.Add(wxT("Carrot"));
1555 tchoicesValues.Add(wxT("Potato"));
1556
1557 pg->Append( new wxEnumProperty(wxT("EnumProperty X"),wxPG_LABEL, tchoices ) );
1558
1559 pg->Append( new wxMultiChoiceProperty( wxT("MultiChoiceProperty"), wxPG_LABEL,
1560 tchoices, tchoicesValues ) );
1561 pg->SetPropertyAttribute( wxT("MultiChoiceProperty"), wxT("UserStringMode"), true );
1562
1563 pg->Append( new wxSizeProperty( wxT("SizeProperty"), wxT("Size"), GetSize() ) );
1564 pg->Append( new wxPointProperty( wxT("PointProperty"), wxT("Position"), GetPosition() ) );
1565
1566 // UInt samples
1567 pg->Append( new wxUIntProperty( wxT("UIntProperty"), wxPG_LABEL, wxULongLong(wxULL(0xFEEEFEEEFEEE))));
1568 pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX, wxPG_PREFIX_NONE );
1569 pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE, wxPG_BASE_HEX );
1570 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_PREFIX, wxPG_PREFIX_NONE );
1571 //pg->SetPropertyAttribute( wxT("UIntProperty"), wxPG_UINT_BASE, wxPG_BASE_OCT );
1572
1573 //
1574 // wxEditEnumProperty
1575 wxPGChoices eech;
1576 eech.Add(wxT("Choice 1"));
1577 eech.Add(wxT("Choice 2"));
1578 eech.Add(wxT("Choice 3"));
1579 pg->Append( new wxEditEnumProperty(wxT("EditEnumProperty"), wxPG_LABEL, eech) ); // , wxT("Choice 2")
1580
1581 //wxString v_;
1582 //wxTextValidator validator1(wxFILTER_NUMERIC,&v_);
1583 //pg->SetPropertyValidator( wxT("EditEnumProperty"), validator1 );
1584
1585 #if wxUSE_DATETIME
1586 //
1587 // wxDateTimeProperty
1588 pg->Append( new wxDateProperty(wxT("DateProperty"), wxPG_LABEL, wxDateTime::Now() ) );
1589
1590 #if wxUSE_DATEPICKCTRL
1591 pg->SetPropertyAttribute( wxT("DateProperty"), wxPG_DATE_PICKER_STYLE,
1592 (long)(wxDP_DROPDOWN | wxDP_SHOWCENTURY) );
1593
1594 pg->SetPropertyHelpString( wxT("DateProperty"),
1595 wxT("Attribute wxPG_DATE_PICKER_STYLE has been set to (long)(wxDP_DROPDOWN | wxDP_SHOWCENTURY).")
1596 wxT("Also note that wxPG_ALLOW_WXADV needs to be defined inorder to use wxDatePickerCtrl.") );
1597 #endif
1598
1599 #endif
1600
1601 //
1602 // Add Triangle properties as both wxTriangleProperty and
1603 // a generic parent property (using wxStringProperty).
1604 //
1605 wxPGProperty* topId = pg->Append( new wxStringProperty(wxT("3D Object"), wxPG_LABEL, wxT("<composed>")) );
1606
1607 pid = pg->AppendIn( topId, new wxStringProperty(wxT("Triangle 1"), wxT("Triangle 1"), wxT("<composed>")) );
1608 pg->AppendIn( pid, new wxVectorProperty( wxT("A"), wxPG_LABEL ) );
1609 pg->AppendIn( pid, new wxVectorProperty( wxT("B"), wxPG_LABEL ) );
1610 pg->AppendIn( pid, new wxVectorProperty( wxT("C"), wxPG_LABEL ) );
1611
1612 pg->AppendIn( topId, new wxTriangleProperty( wxT("Triangle 2"), wxT("Triangle 2") ) );
1613
1614 pg->SetPropertyHelpString( wxT("3D Object"),
1615 wxT("3D Object is wxStringProperty with value \"<composed>\". Two of its children are similar wxStringProperties with ")
1616 wxT("three wxVectorProperty children, and other two are custom wxTriangleProperties.") );
1617
1618 pid = pg->AppendIn( topId, new wxStringProperty(wxT("Triangle 3"), wxT("Triangle 3"), wxT("<composed>")) );
1619 pg->AppendIn( pid, new wxVectorProperty( wxT("A"), wxPG_LABEL ) );
1620 pg->AppendIn( pid, new wxVectorProperty( wxT("B"), wxPG_LABEL ) );
1621 pg->AppendIn( pid, new wxVectorProperty( wxT("C"), wxPG_LABEL ) );
1622
1623 pg->AppendIn( topId, new wxTriangleProperty( wxT("Triangle 4"), wxT("Triangle 4") ) );
1624
1625 //
1626 // This snippet is a doc sample test
1627 //
1628 wxPGProperty* carProp = pg->Append(new wxStringProperty(wxT("Car"),
1629 wxPG_LABEL,
1630 wxT("<composed>")));
1631
1632 pg->AppendIn(carProp, new wxStringProperty(wxT("Model"),
1633 wxPG_LABEL,
1634 wxT("Lamborghini Diablo SV")));
1635
1636 pg->AppendIn(carProp, new wxIntProperty(wxT("Engine Size (cc)"),
1637 wxPG_LABEL,
1638 5707) );
1639
1640 wxPGProperty* speedsProp = pg->AppendIn(carProp,
1641 new wxStringProperty(wxT("Speeds"),
1642 wxPG_LABEL,
1643 wxT("<composed>")));
1644
1645 pg->AppendIn( speedsProp, new wxIntProperty(wxT("Max. Speed (mph)"),
1646 wxPG_LABEL,290) );
1647 pg->AppendIn( speedsProp, new wxFloatProperty(wxT("0-100 mph (sec)"),
1648 wxPG_LABEL,3.9) );
1649 pg->AppendIn( speedsProp, new wxFloatProperty(wxT("1/4 mile (sec)"),
1650 wxPG_LABEL,8.6) );
1651
1652 // This is how child property can be referred to by name
1653 pg->SetPropertyValue( wxT("Car.Speeds.Max. Speed (mph)"), 300 );
1654
1655 pg->AppendIn(carProp, new wxIntProperty(wxT("Price ($)"),
1656 wxPG_LABEL,
1657 300000) );
1658
1659 // Displayed value of "Car" property is now very close to this:
1660 // "Lamborghini Diablo SV; 5707 [300; 3.9; 8.6] 300000"
1661
1662 //
1663 // Test wxSampleMultiButtonEditor
1664 pg->Append( new wxLongStringProperty(wxT("MultipleButtons"), wxPG_LABEL) );
1665 pg->SetPropertyEditor(wxT("MultipleButtons"), m_pSampleMultiButtonEditor );
1666
1667 // Test SingleChoiceProperty
1668 pg->Append( new SingleChoiceProperty(wxT("SingleChoiceProperty")) );
1669
1670
1671 //
1672 // Test adding variable height bitmaps in wxPGChoices
1673 wxPGChoices bc;
1674
1675 bc.Add(wxT("Wee"), wxBitmap(16, 16));
1676 bc.Add(wxT("Not so wee"), wxBitmap(32, 32));
1677 bc.Add(wxT("Friggin' huge"), wxBitmap(64, 64));
1678
1679 pg->Append( new wxEnumProperty(wxT("Variable Height Bitmaps"),
1680 wxPG_LABEL,
1681 bc,
1682 0) );
1683
1684 //
1685 // Test how non-editable composite strings appear
1686 pid = new wxStringProperty(wxT("wxWidgets Traits"), wxPG_LABEL, wxT("<composed>"));
1687 pg->SetPropertyReadOnly(pid);
1688
1689 //
1690 // For testing purposes, combine two methods of adding children
1691 //
1692
1693 // AddChild() requires that we call this
1694 pid->SetParentalType(wxPG_PROP_MISC_PARENT);
1695
1696 pid->AddChild( new wxStringProperty(wxT("Latest Release"), wxPG_LABEL, wxT("2.8.8")));
1697 pid->AddChild( new wxBoolProperty(wxT("Win API"), wxPG_LABEL, true) );
1698
1699 pg->Append( pid );
1700
1701 pg->AppendIn(pid, new wxBoolProperty(wxT("QT"), wxPG_LABEL, false) );
1702 pg->AppendIn(pid, new wxBoolProperty(wxT("Cocoa"), wxPG_LABEL, true) );
1703 pg->AppendIn(pid, new wxBoolProperty(wxT("BeOS"), wxPG_LABEL, false) );
1704 pg->AppendIn(pid, new wxStringProperty(wxT("SVN Trunk Version"), wxPG_LABEL, wxT("2.9.0")) );
1705 pg->AppendIn(pid, new wxBoolProperty(wxT("GTK+"), wxPG_LABEL, true) );
1706 pg->AppendIn(pid, new wxBoolProperty(wxT("Sky OS"), wxPG_LABEL, false) );
1707 pg->AppendIn(pid, new wxBoolProperty(wxT("QT"), wxPG_LABEL, false) );
1708
1709 AddTestProperties(pg);
1710 }
1711
1712 // -----------------------------------------------------------------------
1713
1714 void FormMain::PopulateWithLibraryConfig ()
1715 {
1716 wxPropertyGridManager* pgman = m_pPropGridManager;
1717 wxPropertyGridPage* pg = pgman->GetPage(wxT("wxWidgets Library Config"));
1718
1719 wxPGProperty* cat;
1720
1721 wxBitmap bmp = wxArtProvider::GetBitmap(wxART_REPORT_VIEW);
1722
1723 wxPGProperty* pid;
1724
1725 #define ADD_WX_LIB_CONF_GROUP(A) \
1726 cat = pg->AppendIn( pid, new wxPropertyCategory(A) ); \
1727 pg->SetPropertyCell( cat, 0, wxPG_LABEL, bmp );
1728
1729 #define ADD_WX_LIB_CONF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)((A>0)?true:false)));
1730 #define ADD_WX_LIB_CONF_NODEF(A) pg->Append( new wxBoolProperty(wxT(#A),wxPG_LABEL,(bool)false) ); \
1731 pg->DisableProperty(wxT(#A));
1732
1733 pid = pg->Append( new wxPropertyCategory( wxT("wxWidgets Library Configuration") ) );
1734 pg->SetPropertyCell( pid, 0, wxPG_LABEL, bmp );
1735
1736 ADD_WX_LIB_CONF_GROUP(wxT("Global Settings"))
1737 ADD_WX_LIB_CONF( wxUSE_GUI )
1738
1739 ADD_WX_LIB_CONF_GROUP(wxT("Compatibility Settings"))
1740 #if defined(WXWIN_COMPATIBILITY_2_2)
1741 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_2 )
1742 #endif
1743 #if defined(WXWIN_COMPATIBILITY_2_4)
1744 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_4 )
1745 #endif
1746 #if defined(WXWIN_COMPATIBILITY_2_6)
1747 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_6 )
1748 #endif
1749 #if defined(WXWIN_COMPATIBILITY_2_8)
1750 ADD_WX_LIB_CONF( WXWIN_COMPATIBILITY_2_8 )
1751 #endif
1752 #ifdef wxFONT_SIZE_COMPATIBILITY
1753 ADD_WX_LIB_CONF( wxFONT_SIZE_COMPATIBILITY )
1754 #else
1755 ADD_WX_LIB_CONF_NODEF ( wxFONT_SIZE_COMPATIBILITY )
1756 #endif
1757 #ifdef wxDIALOG_UNIT_COMPATIBILITY
1758 ADD_WX_LIB_CONF( wxDIALOG_UNIT_COMPATIBILITY )
1759 #else
1760 ADD_WX_LIB_CONF_NODEF ( wxDIALOG_UNIT_COMPATIBILITY )
1761 #endif
1762
1763 ADD_WX_LIB_CONF_GROUP(wxT("Debugging Settings"))
1764 ADD_WX_LIB_CONF( wxUSE_DEBUG_CONTEXT )
1765 ADD_WX_LIB_CONF( wxUSE_MEMORY_TRACING )
1766 ADD_WX_LIB_CONF( wxUSE_GLOBAL_MEMORY_OPERATORS )
1767 ADD_WX_LIB_CONF( wxUSE_DEBUG_NEW_ALWAYS )
1768 ADD_WX_LIB_CONF( wxUSE_ON_FATAL_EXCEPTION )
1769
1770 ADD_WX_LIB_CONF_GROUP(wxT("Unicode Support"))
1771 ADD_WX_LIB_CONF( wxUSE_UNICODE )
1772 ADD_WX_LIB_CONF( wxUSE_UNICODE_MSLU )
1773 ADD_WX_LIB_CONF( wxUSE_WCHAR_T )
1774
1775 ADD_WX_LIB_CONF_GROUP(wxT("Global Features"))
1776 ADD_WX_LIB_CONF( wxUSE_EXCEPTIONS )
1777 ADD_WX_LIB_CONF( wxUSE_EXTENDED_RTTI )
1778 ADD_WX_LIB_CONF( wxUSE_STL )
1779 ADD_WX_LIB_CONF( wxUSE_LOG )
1780 ADD_WX_LIB_CONF( wxUSE_LOGWINDOW )
1781 ADD_WX_LIB_CONF( wxUSE_LOGGUI )
1782 ADD_WX_LIB_CONF( wxUSE_LOG_DIALOG )
1783 ADD_WX_LIB_CONF( wxUSE_CMDLINE_PARSER )
1784 ADD_WX_LIB_CONF( wxUSE_THREADS )
1785 ADD_WX_LIB_CONF( wxUSE_STREAMS )
1786 ADD_WX_LIB_CONF( wxUSE_STD_IOSTREAM )
1787
1788 ADD_WX_LIB_CONF_GROUP(wxT("Non-GUI Features"))
1789 ADD_WX_LIB_CONF( wxUSE_LONGLONG )
1790 ADD_WX_LIB_CONF( wxUSE_FILE )
1791 ADD_WX_LIB_CONF( wxUSE_FFILE )
1792 ADD_WX_LIB_CONF( wxUSE_FSVOLUME )
1793 ADD_WX_LIB_CONF( wxUSE_TEXTBUFFER )
1794 ADD_WX_LIB_CONF( wxUSE_TEXTFILE )
1795 ADD_WX_LIB_CONF( wxUSE_INTL )
1796 ADD_WX_LIB_CONF( wxUSE_DATETIME )
1797 ADD_WX_LIB_CONF( wxUSE_TIMER )
1798 ADD_WX_LIB_CONF( wxUSE_STOPWATCH )
1799 ADD_WX_LIB_CONF( wxUSE_CONFIG )
1800 #ifdef wxUSE_CONFIG_NATIVE
1801 ADD_WX_LIB_CONF( wxUSE_CONFIG_NATIVE )
1802 #else
1803 ADD_WX_LIB_CONF_NODEF ( wxUSE_CONFIG_NATIVE )
1804 #endif
1805 ADD_WX_LIB_CONF( wxUSE_DIALUP_MANAGER )
1806 ADD_WX_LIB_CONF( wxUSE_DYNLIB_CLASS )
1807 ADD_WX_LIB_CONF( wxUSE_DYNAMIC_LOADER )
1808 ADD_WX_LIB_CONF( wxUSE_SOCKETS )
1809 ADD_WX_LIB_CONF( wxUSE_FILESYSTEM )
1810 ADD_WX_LIB_CONF( wxUSE_FS_ZIP )
1811 ADD_WX_LIB_CONF( wxUSE_FS_INET )
1812 ADD_WX_LIB_CONF( wxUSE_ZIPSTREAM )
1813 ADD_WX_LIB_CONF( wxUSE_ZLIB )
1814 ADD_WX_LIB_CONF( wxUSE_APPLE_IEEE )
1815 ADD_WX_LIB_CONF( wxUSE_JOYSTICK )
1816 ADD_WX_LIB_CONF( wxUSE_FONTMAP )
1817 ADD_WX_LIB_CONF( wxUSE_MIMETYPE )
1818 ADD_WX_LIB_CONF( wxUSE_PROTOCOL )
1819 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FILE )
1820 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_FTP )
1821 ADD_WX_LIB_CONF( wxUSE_PROTOCOL_HTTP )
1822 ADD_WX_LIB_CONF( wxUSE_URL )
1823 #ifdef wxUSE_URL_NATIVE
1824 ADD_WX_LIB_CONF( wxUSE_URL_NATIVE )
1825 #else
1826 ADD_WX_LIB_CONF_NODEF ( wxUSE_URL_NATIVE )
1827 #endif
1828 ADD_WX_LIB_CONF( wxUSE_REGEX )
1829 ADD_WX_LIB_CONF( wxUSE_SYSTEM_OPTIONS )
1830 ADD_WX_LIB_CONF( wxUSE_SOUND )
1831 #ifdef wxUSE_XRC
1832 ADD_WX_LIB_CONF( wxUSE_XRC )
1833 #else
1834 ADD_WX_LIB_CONF_NODEF ( wxUSE_XRC )
1835 #endif
1836 ADD_WX_LIB_CONF( wxUSE_XML )
1837
1838 // Set them to use check box.
1839 pg->SetPropertyAttribute(pid,wxPG_BOOL_USE_CHECKBOX,true,wxPG_RECURSE);
1840 }
1841
1842
1843 //
1844 // Handle events of the third page here.
1845 class wxMyPropertyGridPage : public wxPropertyGridPage
1846 {
1847 public:
1848
1849 // Return false here to indicate unhandled events should be
1850 // propagated to manager's parent, as normal.
1851 virtual bool IsHandlingAllEvents() const { return false; }
1852
1853 protected:
1854
1855 virtual wxPGProperty* DoInsert( wxPGProperty* parent,
1856 int index,
1857 wxPGProperty* property )
1858 {
1859 return wxPropertyGridPage::DoInsert(parent,index,property);
1860 }
1861
1862 void OnPropertySelect( wxPropertyGridEvent& event );
1863 void OnPropertyChanging( wxPropertyGridEvent& event );
1864 void OnPropertyChange( wxPropertyGridEvent& event );
1865 void OnPageChange( wxPropertyGridEvent& event );
1866
1867 private:
1868 DECLARE_EVENT_TABLE()
1869 };
1870
1871
1872 BEGIN_EVENT_TABLE(wxMyPropertyGridPage, wxPropertyGridPage)
1873 EVT_PG_SELECTED( wxID_ANY, wxMyPropertyGridPage::OnPropertySelect )
1874 EVT_PG_CHANGING( wxID_ANY, wxMyPropertyGridPage::OnPropertyChanging )
1875 EVT_PG_CHANGED( wxID_ANY, wxMyPropertyGridPage::OnPropertyChange )
1876 EVT_PG_PAGE_CHANGED( wxID_ANY, wxMyPropertyGridPage::OnPageChange )
1877 END_EVENT_TABLE()
1878
1879
1880 void wxMyPropertyGridPage::OnPropertySelect( wxPropertyGridEvent& WXUNUSED(event) )
1881 {
1882 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertySelect()"));
1883 }
1884
1885 void wxMyPropertyGridPage::OnPropertyChange( wxPropertyGridEvent& event )
1886 {
1887 wxPGProperty* p = event.GetProperty();
1888 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChange('%s', to value '%s')"),
1889 p->GetName().c_str(),
1890 p->GetDisplayedString().c_str());
1891 }
1892
1893 void wxMyPropertyGridPage::OnPropertyChanging( wxPropertyGridEvent& event )
1894 {
1895 wxPGProperty* p = event.GetProperty();
1896 wxLogDebug(wxT("wxMyPropertyGridPage::OnPropertyChanging('%s', to value '%s')"),
1897 p->GetName().c_str(),
1898 event.GetValue().GetString().c_str());
1899 }
1900
1901 void wxMyPropertyGridPage::OnPageChange( wxPropertyGridEvent& WXUNUSED(event) )
1902 {
1903 wxLogDebug(wxT("wxMyPropertyGridPage::OnPageChange()"));
1904 }
1905
1906
1907 class wxPGKeyHandler : public wxEvtHandler
1908 {
1909 public:
1910
1911 void OnKeyEvent( wxKeyEvent& event )
1912 {
1913 wxMessageBox(wxString::Format(wxT("%i"),event.GetKeyCode()));
1914 event.Skip();
1915 }
1916 private:
1917 DECLARE_EVENT_TABLE()
1918 };
1919
1920 BEGIN_EVENT_TABLE(wxPGKeyHandler,wxEvtHandler)
1921 EVT_KEY_DOWN( wxPGKeyHandler::OnKeyEvent )
1922 END_EVENT_TABLE()
1923
1924
1925 // -----------------------------------------------------------------------
1926
1927 void FormMain::InitPanel()
1928 {
1929 if ( m_panel )
1930 m_panel->Destroy();
1931
1932 wxWindow* panel = new wxPanel(this,-1,wxPoint(0,0),wxSize(400,400));
1933 m_panel = panel;
1934
1935 // Column
1936 wxBoxSizer* topSizer = new wxBoxSizer ( wxVERTICAL );
1937
1938 m_topSizer = topSizer;
1939 }
1940
1941 void FormMain::FinalizePanel( bool wasCreated )
1942 {
1943 m_panel->SetSizer( m_topSizer );
1944 m_topSizer->SetSizeHints( m_panel );
1945
1946 wxBoxSizer* panelSizer = new wxBoxSizer( wxHORIZONTAL );
1947 panelSizer->Add( m_panel, 1, wxEXPAND|wxFIXED_MINSIZE );
1948 SetSizer( panelSizer );
1949 panelSizer->SetSizeHints( this );
1950
1951 if ( wasCreated )
1952 {
1953 SetSize(
1954 (wxSystemSettings::GetMetric(wxSYS_SCREEN_X)/10)*4,
1955 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y)/10)*8
1956 );
1957 Centre();
1958 }
1959 }
1960
1961 void FormMain::PopulateGrid()
1962 {
1963 wxPropertyGridManager* pgman = m_pPropGridManager;
1964 pgman->AddPage(wxT("Standard Items"));
1965
1966 PopulateWithStandardItems();
1967
1968 pgman->AddPage(wxT("wxWidgets Library Config"));
1969
1970 PopulateWithLibraryConfig();
1971
1972 wxPropertyGridPage* myPage = new wxMyPropertyGridPage();
1973 myPage->Append( new wxIntProperty ( wxT("IntProperty"), wxPG_LABEL, 12345678 ) );
1974
1975 // Use wxMyPropertyGridPage (see above) to test the
1976 // custom wxPropertyGridPage feature.
1977 pgman->AddPage(wxT("Examples"),wxNullBitmap,myPage);
1978
1979 PopulateWithExamples();
1980 }
1981
1982 void FormMain::CreateGrid( int style, int extraStyle )
1983 {
1984 //
1985 // This function (re)creates the property grid in our sample
1986 //
1987
1988 if ( style == -1 )
1989 style = // default style
1990 wxPG_BOLD_MODIFIED |
1991 wxPG_SPLITTER_AUTO_CENTER |
1992 wxPG_AUTO_SORT |
1993 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
1994 //wxPG_TOOLTIPS |
1995 //wxPG_HIDE_CATEGORIES |
1996 //wxPG_LIMITED_EDITING |
1997 wxTAB_TRAVERSAL |
1998 wxPG_TOOLBAR |
1999 wxPG_DESCRIPTION;
2000
2001 if ( extraStyle == -1 )
2002 // default extra style
2003 extraStyle = wxPG_EX_MODE_BUTTONS;
2004 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2005 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2006 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2007 //| wxPG_EX_HELP_AS_TOOLTIPS
2008
2009 bool wasCreated = m_panel ? false : true;
2010
2011 InitPanel();
2012
2013 //
2014 // This shows how to combine two static choice descriptors
2015 m_combinedFlags.Add( _fs_windowstyle_labels, _fs_windowstyle_values );
2016 m_combinedFlags.Add( _fs_framestyle_labels, _fs_framestyle_values );
2017
2018 wxPropertyGridManager* pgman = m_pPropGridManager =
2019 new wxPropertyGridManager(m_panel,
2020 // Don't change this into wxID_ANY in the sample, or the
2021 // event handling will obviously be broken.
2022 PGID, /*wxID_ANY*/
2023 wxDefaultPosition,
2024 wxDefaultSize,
2025 style );
2026
2027 m_propGrid = pgman->GetGrid();
2028
2029 pgman->SetExtraStyle(extraStyle);
2030
2031 m_pPropGridManager->SetValidationFailureBehavior( wxPG_VFB_BEEP | wxPG_VFB_MARK_CELL | wxPG_VFB_SHOW_MESSAGE );
2032
2033 m_pPropGridManager->GetGrid()->SetVerticalSpacing( 2 );
2034
2035 PopulateGrid();
2036
2037 // Change some attributes in all properties
2038 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING,true);
2039 //pgman->SetPropertyAttributeAll(wxPG_BOOL_USE_CHECKBOX,true);
2040
2041 //m_pPropGridManager->SetSplitterLeft(true);
2042 //m_pPropGridManager->SetSplitterPosition(137);
2043
2044 /*
2045 // This would setup event handling without event table entries
2046 Connect(m_pPropGridManager->GetId(), wxEVT_PG_SELECTED,
2047 wxPropertyGridEventHandler(FormMain::OnPropertyGridSelect) );
2048 Connect(m_pPropGridManager->GetId(), wxEVT_PG_CHANGED,
2049 wxPropertyGridEventHandler(FormMain::OnPropertyGridChange) );
2050 */
2051
2052 m_topSizer->Add( m_pPropGridManager, 1, wxEXPAND );
2053
2054 FinalizePanel(wasCreated);
2055 }
2056
2057 // -----------------------------------------------------------------------
2058
2059 FormMain::FormMain(const wxString& title, const wxPoint& pos, const wxSize& size) :
2060 wxFrame((wxFrame *)NULL, -1, title, pos, size,
2061 (wxMINIMIZE_BOX|wxMAXIMIZE_BOX|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCAPTION|
2062 wxTAB_TRAVERSAL|wxCLOSE_BOX|wxNO_FULL_REPAINT_ON_RESIZE) )
2063 {
2064 m_propGrid = NULL;
2065 m_panel = NULL;
2066
2067 #ifdef __WXMAC__
2068 // we need this in order to allow the about menu relocation, since ABOUT is
2069 // not the default id of the about menu
2070 wxApp::s_macAboutMenuItemId = ID_ABOUT;
2071 #endif
2072
2073 #if wxUSE_IMAGE
2074 // This is here to really test the wxImageFileProperty.
2075 wxInitAllImageHandlers();
2076 #endif
2077
2078 // Register all editors (SpinCtrl etc.)
2079 m_pPropGridManager->RegisterAdditionalEditors();
2080
2081 // Register our sample custom editors
2082 m_pSampleMultiButtonEditor =
2083 wxPropertyGrid::RegisterEditorClass(new wxSampleMultiButtonEditor());
2084
2085 CreateGrid( // style
2086 wxPG_BOLD_MODIFIED |
2087 wxPG_SPLITTER_AUTO_CENTER |
2088 wxPG_AUTO_SORT |
2089 //wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER |
2090 //wxPG_TOOLTIPS |
2091 //wxPG_HIDE_CATEGORIES |
2092 //wxPG_LIMITED_EDITING |
2093 wxTAB_TRAVERSAL |
2094 wxPG_TOOLBAR |
2095 wxPG_DESCRIPTION,
2096 // extra style
2097 wxPG_EX_MODE_BUTTONS
2098 //| wxPG_EX_AUTO_UNSPECIFIED_VALUES
2099 //| wxPG_EX_GREY_LABEL_WHEN_DISABLED
2100 //| wxPG_EX_NATIVE_DOUBLE_BUFFERING
2101 //| wxPG_EX_HELP_AS_TOOLTIPS
2102 );
2103
2104 //
2105 // Create menubar
2106 wxMenu *menuFile = new wxMenu(wxEmptyString, wxMENU_TEAROFF);
2107 wxMenu *menuTry = new wxMenu;
2108 wxMenu *menuTools1 = new wxMenu;
2109 wxMenu *menuTools2 = new wxMenu;
2110 wxMenu *menuHelp = new wxMenu;
2111
2112 menuHelp->Append(ID_ABOUT, wxT("&About..."), wxT("Show about dialog") );
2113
2114 menuTools1->Append(ID_APPENDPROP, wxT("Append New Property") );
2115 menuTools1->Append(ID_APPENDCAT, wxT("Append New Category\tCtrl-S") );
2116 menuTools1->AppendSeparator();
2117 menuTools1->Append(ID_INSERTPROP, wxT("Insert New Property\tCtrl-Q") );
2118 menuTools1->Append(ID_INSERTCAT, wxT("Insert New Category\tCtrl-W") );
2119 menuTools1->AppendSeparator();
2120 menuTools1->Append(ID_DELETE, wxT("Delete Selected") );
2121 menuTools1->Append(ID_DELETER, wxT("Delete Random") );
2122 menuTools1->Append(ID_DELETEALL, wxT("Delete All") );
2123 menuTools1->AppendSeparator();
2124 menuTools1->Append(ID_SETCOLOUR, wxT("Set Bg Colour") );
2125 menuTools1->Append(ID_UNSPECIFY, wxT("Set to Unspecified") );
2126 menuTools1->AppendSeparator();
2127 m_itemEnable = menuTools1->Append(ID_ENABLE, wxT("Enable"),
2128 wxT("Toggles item's enabled state.") );
2129 m_itemEnable->Enable( FALSE );
2130 menuTools1->Append(ID_HIDE, wxT("Hide"), wxT("Shows or hides a property") );
2131
2132 menuTools2->Append(ID_ITERATE1, wxT("Iterate Over Properties") );
2133 menuTools2->Append(ID_ITERATE2, wxT("Iterate Over Visible Items") );
2134 menuTools2->Append(ID_ITERATE3, wxT("Reverse Iterate Over Properties") );
2135 menuTools2->Append(ID_ITERATE4, wxT("Iterate Over Categories") );
2136 menuTools2->AppendSeparator();
2137 menuTools2->Append(ID_SETPROPERTYVALUE, wxT("Set Property Value") );
2138 menuTools2->Append(ID_CLEARMODIF, wxT("Clear Modified Status"), wxT("Clears wxPG_MODIFIED flag from all properties.") );
2139 menuTools2->AppendSeparator();
2140 m_itemFreeze = menuTools2->AppendCheckItem(ID_FREEZE, wxT("Freeze"),
2141 wxT("Disables painting, auto-sorting, etc.") );
2142 menuTools2->AppendSeparator();
2143 menuTools2->Append(ID_DUMPLIST, wxT("Display Values as wxVariant List"), wxT("Tests GetAllValues method and wxVariant conversion.") );
2144 menuTools2->AppendSeparator();
2145 menuTools2->Append(ID_GETVALUES, wxT("Get Property Values"), wxT("Stores all property values.") );
2146 menuTools2->Append(ID_SETVALUES, wxT("Set Property Values"), wxT("Reverts property values to those last stored.") );
2147 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).") );
2148 menuTools2->AppendSeparator();
2149 menuTools2->Append(ID_SAVESTATE, wxT("Save Editable State") );
2150 menuTools2->Append(ID_RESTORESTATE, wxT("Restore Editable State") );
2151 menuTools2->AppendSeparator();
2152 menuTools2->Append(ID_ENABLECOMMONVALUES, wxT("Enable Common Value"),
2153 wxT("Enable values that are common to all properties, for selected property."));
2154 menuTools2->AppendSeparator();
2155 menuTools2->Append(ID_COLLAPSE, wxT("Collapse Selected") );
2156 menuTools2->Append(ID_COLLAPSEALL, wxT("Collapse All") );
2157 menuTools2->AppendSeparator();
2158 menuTools2->Append(ID_INSERTPAGE, wxT("Add Page") );
2159 menuTools2->Append(ID_REMOVEPAGE, wxT("Remove Page") );
2160 menuTools2->AppendSeparator();
2161 menuTools2->Append(ID_FITCOLUMNS, wxT("Fit Columns") );
2162 menuTools2->AppendSeparator();
2163 menuTools2->Append(ID_CHANGEFLAGSITEMS, wxT("Change Children of FlagsProp") );
2164 menuTools2->AppendSeparator();
2165 menuTools2->Append(ID_TESTINSERTCHOICE, wxT("Test InsertPropertyChoice") );
2166 menuTools2->Append(ID_TESTDELETECHOICE, wxT("Test DeletePropertyChoice") );
2167 menuTools2->AppendSeparator();
2168 menuTools2->Append(ID_SETSPINCTRLEDITOR, wxT("Use SpinCtrl Editor") );
2169 menuTools2->Append(ID_TESTREPLACE, wxT("Test ReplaceProperty") );
2170
2171 menuTry->Append(ID_SELECTSTYLE, wxT("Set Window Style"),
2172 wxT("Select window style flags used by the grid."));
2173 menuTry->AppendSeparator();
2174 menuTry->AppendRadioItem( ID_COLOURSCHEME1, wxT("Standard Colour Scheme") );
2175 menuTry->AppendRadioItem( ID_COLOURSCHEME2, wxT("White Colour Scheme") );
2176 menuTry->AppendRadioItem( ID_COLOURSCHEME3, wxT(".NET Colour Scheme") );
2177 menuTry->AppendRadioItem( ID_COLOURSCHEME4, wxT("Cream Colour Scheme") );
2178 menuTry->AppendSeparator();
2179 m_itemCatColours = menuTry->AppendCheckItem(ID_CATCOLOURS, wxT("Category Specific Colours"),
2180 wxT("Switches between category-specific cell colours and default scheme (actually done using SetPropertyTextColour and SetPropertyBackgroundColour).") );
2181 menuTry->AppendSeparator();
2182 menuTry->AppendCheckItem(ID_STATICLAYOUT, wxT("Static Layout"),
2183 wxT("Switches between user-modifiedable and static layouts.") );
2184 menuTry->Append(ID_SETCOLUMNS, wxT("Set Number of Columns") );
2185 menuTry->AppendSeparator();
2186 menuTry->Append(ID_TESTXRC, wxT("Display XRC sample") );
2187 menuTry->AppendSeparator();
2188 menuTry->Append(ID_RUNTESTFULL, wxT("Run Tests (full)") );
2189 menuTry->Append(ID_RUNTESTPARTIAL, wxT("Run Tests (fast)") );
2190
2191 menuFile->Append(ID_RUNMINIMAL, wxT("Run Minimal Sample") );
2192 menuFile->AppendSeparator();
2193 menuFile->Append(ID_QUIT, wxT("E&xit\tAlt-X"), wxT("Quit this program") );
2194
2195 // Now append the freshly created menu to the menu bar...
2196 wxMenuBar *menuBar = new wxMenuBar();
2197 menuBar->Append(menuFile, wxT("&File") );
2198 menuBar->Append(menuTry, wxT("&Try These!") );
2199 menuBar->Append(menuTools1, wxT("&Basic") );
2200 menuBar->Append(menuTools2, wxT("&Advanced") );
2201 menuBar->Append(menuHelp, wxT("&Help") );
2202
2203 // ... and attach this menu bar to the frame
2204 SetMenuBar(menuBar);
2205
2206 #if wxUSE_STATUSBAR
2207 // create a status bar
2208 CreateStatusBar(1);
2209 SetStatusText(wxEmptyString);
2210 #endif // wxUSE_STATUSBAR
2211
2212
2213 //
2214 // Finalize
2215 //
2216
2217 SetSize(
2218 (wxSystemSettings::GetMetric(wxSYS_SCREEN_X)/10)*4,
2219 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y)/10)*8
2220 );
2221 Centre();
2222 }
2223
2224 //
2225 // Normally, wxPropertyGrid does not check whether item with identical
2226 // label already exists. However, since in this sample we use labels for
2227 // identifying properties, we have to be sure not to generate identical
2228 // labels.
2229 //
2230 void GenerateUniquePropertyLabel( wxPropertyGridManager* pg, wxString& baselabel )
2231 {
2232 int count = -1;
2233 wxString newlabel;
2234
2235 if ( pg->GetPropertyByLabel( baselabel ) )
2236 {
2237 for (;;)
2238 {
2239 count++;
2240 newlabel.Printf(wxT("%s%i"),baselabel.c_str(),count);
2241 if ( !pg->GetPropertyByLabel( newlabel ) ) break;
2242 }
2243 }
2244
2245 if ( count >= 0 )
2246 {
2247 baselabel = newlabel;
2248 }
2249 }
2250
2251 // -----------------------------------------------------------------------
2252
2253 void FormMain::OnInsertPropClick( wxCommandEvent& WXUNUSED(event) )
2254 {
2255 wxString propLabel;
2256
2257 if ( !m_pPropGridManager->GetGrid()->GetRoot()->GetChildCount() )
2258 {
2259 wxMessageBox(wxT("No items to relate - first add some with Append."));
2260 return;
2261 }
2262
2263 wxPGProperty* id = m_pPropGridManager->GetGrid()->GetSelection();
2264 if ( !id )
2265 {
2266 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2267 return;
2268 }
2269 if ( propLabel.Len() < 1 ) propLabel = wxT("Property");
2270
2271 GenerateUniquePropertyLabel( m_pPropGridManager, propLabel );
2272
2273 m_pPropGridManager->Insert( m_pPropGridManager->GetPropertyParent(id),
2274 id->GetIndexInParent(),
2275 new wxStringProperty(propLabel) );
2276
2277 }
2278
2279 // -----------------------------------------------------------------------
2280
2281 void FormMain::OnAppendPropClick( wxCommandEvent& WXUNUSED(event) )
2282 {
2283 wxString propLabel;
2284
2285 if ( propLabel.Len() < 1 ) propLabel = wxT("Property");
2286
2287 GenerateUniquePropertyLabel( m_pPropGridManager, propLabel );
2288
2289 m_pPropGridManager->Append( new wxStringProperty(propLabel) );
2290
2291 m_pPropGridManager->Refresh();
2292 }
2293
2294 // -----------------------------------------------------------------------
2295
2296 void FormMain::OnClearClick( wxCommandEvent& WXUNUSED(event) )
2297 {
2298 m_pPropGridManager->GetGrid()->Clear();
2299 }
2300
2301 // -----------------------------------------------------------------------
2302
2303 void FormMain::OnAppendCatClick( wxCommandEvent& WXUNUSED(event) )
2304 {
2305 wxString propLabel;
2306
2307 if ( propLabel.Len() < 1 ) propLabel = wxT("Category");
2308
2309 GenerateUniquePropertyLabel( m_pPropGridManager, propLabel );
2310
2311 m_pPropGridManager->Append( new wxPropertyCategory (propLabel) );
2312
2313 m_pPropGridManager->Refresh();
2314
2315 }
2316
2317 // -----------------------------------------------------------------------
2318
2319 void FormMain::OnInsertCatClick( wxCommandEvent& WXUNUSED(event) )
2320 {
2321 wxString propLabel;
2322
2323 if ( !m_pPropGridManager->GetGrid()->GetRoot()->GetChildCount() )
2324 {
2325 wxMessageBox(wxT("No items to relate - first add some with Append."));
2326 return;
2327 }
2328
2329 wxPGProperty* id = m_pPropGridManager->GetGrid()->GetSelection();
2330 if ( !id )
2331 {
2332 wxMessageBox(wxT("First select a property - new one will be inserted right before that."));
2333 return;
2334 }
2335
2336 if ( propLabel.Len() < 1 ) propLabel = wxT("Category");
2337
2338 GenerateUniquePropertyLabel( m_pPropGridManager, propLabel );
2339
2340 m_pPropGridManager->Insert( m_pPropGridManager->GetPropertyParent(id),
2341 id->GetIndexInParent(),
2342 new wxPropertyCategory (propLabel) );
2343 }
2344
2345 // -----------------------------------------------------------------------
2346
2347 void FormMain::OnDelPropClick( wxCommandEvent& WXUNUSED(event) )
2348 {
2349 wxPGProperty* id = m_pPropGridManager->GetGrid()->GetSelection();
2350 if ( !id )
2351 {
2352 wxMessageBox(wxT("First select a property."));
2353 return;
2354 }
2355
2356 m_pPropGridManager->DeleteProperty( id );
2357 }
2358
2359 // -----------------------------------------------------------------------
2360
2361 void FormMain::OnDelPropRClick( wxCommandEvent& WXUNUSED(event) )
2362 {
2363 // Delete random property
2364 wxPGProperty* p = m_pPropGridManager->GetGrid()->GetRoot();
2365
2366 for (;;)
2367 {
2368 if ( !p->IsCategory() )
2369 {
2370 m_pPropGridManager->DeleteProperty( p );
2371 break;
2372 }
2373
2374 if ( !p->GetChildCount() )
2375 break;
2376
2377 int n = rand() % ((int)p->GetChildCount());
2378
2379 p = p->Item(n);
2380 }
2381 }
2382
2383 // -----------------------------------------------------------------------
2384
2385 void FormMain::OnContextMenu( wxContextMenuEvent& event )
2386 {
2387 wxLogDebug(wxT("FormMain::OnContextMenu(%i,%i)"),
2388 event.GetPosition().x,event.GetPosition().y);
2389
2390 //event.Skip();
2391 }
2392
2393 // -----------------------------------------------------------------------
2394
2395 void FormMain::OnCloseClick( wxCommandEvent& WXUNUSED(event) )
2396 {
2397 /*#ifdef __WXDEBUG__
2398 m_pPropGridManager->GetGrid()->DumpAllocatedChoiceSets();
2399 wxLogDebug(wxT("\\-> Don't worry, this is perfectly normal in this sample."));
2400 #endif*/
2401
2402 Close(false);
2403 }
2404
2405 // -----------------------------------------------------------------------
2406
2407 int IterateMessage( wxPGProperty* prop )
2408 {
2409 wxString s;
2410
2411 s.Printf( wxT("\"%s\" class = %s, valuetype = %s"), prop->GetLabel().c_str(),
2412 prop->GetClassInfo()->GetClassName(), prop->GetValueType().c_str() );
2413
2414 return wxMessageBox( s, wxT("Iterating... (press CANCEL to end)"), wxOK|wxCANCEL );
2415 }
2416
2417 // -----------------------------------------------------------------------
2418
2419 void FormMain::OnIterate1Click( wxCommandEvent& WXUNUSED(event) )
2420 {
2421 wxPropertyGridIterator it;
2422
2423 for ( it = m_pPropGridManager->GetCurrentPage()->
2424 GetIterator();
2425 !it.AtEnd();
2426 it++ )
2427 {
2428 wxPGProperty* p = *it;
2429 int res = IterateMessage( p );
2430 if ( res == wxCANCEL ) break;
2431 }
2432 }
2433
2434 // -----------------------------------------------------------------------
2435
2436 void FormMain::OnIterate2Click( wxCommandEvent& WXUNUSED(event) )
2437 {
2438 wxPropertyGridIterator it;
2439
2440 for ( it = m_pPropGridManager->GetCurrentPage()->
2441 GetIterator( wxPG_ITERATE_VISIBLE );
2442 !it.AtEnd();
2443 it++ )
2444 {
2445 wxPGProperty* p = *it;
2446
2447 int res = IterateMessage( p );
2448 if ( res == wxCANCEL ) break;
2449 }
2450 }
2451
2452 // -----------------------------------------------------------------------
2453
2454 void FormMain::OnIterate3Click( wxCommandEvent& WXUNUSED(event) )
2455 {
2456 // iterate over items in reverse order
2457 wxPropertyGridIterator it;
2458
2459 for ( it = m_pPropGridManager->GetCurrentPage()->
2460 GetIterator( wxPG_ITERATE_DEFAULT, wxBOTTOM );
2461 !it.AtEnd();
2462 it-- )
2463 {
2464 wxPGProperty* p = *it;
2465
2466 int res = IterateMessage( p );
2467 if ( res == wxCANCEL ) break;
2468 }
2469 }
2470
2471 // -----------------------------------------------------------------------
2472
2473 void FormMain::OnIterate4Click( wxCommandEvent& WXUNUSED(event) )
2474 {
2475 wxPropertyGridIterator it;
2476
2477 for ( it = m_pPropGridManager->GetCurrentPage()->
2478 GetIterator( wxPG_ITERATE_CATEGORIES );
2479 !it.AtEnd();
2480 it++ )
2481 {
2482 wxPGProperty* p = *it;
2483
2484 int res = IterateMessage( p );
2485 if ( res == wxCANCEL ) break;
2486 }
2487 }
2488
2489 // -----------------------------------------------------------------------
2490
2491 void FormMain::OnFitColumnsClick( wxCommandEvent& WXUNUSED(event) )
2492 {
2493 wxPropertyGridPage* page = m_pPropGridManager->GetCurrentPage();
2494
2495 // Remove auto-centering
2496 m_pPropGridManager->SetWindowStyle( m_pPropGridManager->GetWindowStyle() & ~wxPG_SPLITTER_AUTO_CENTER);
2497
2498 // Grow manager size just prior fit - otherwise
2499 // column information may be lost.
2500 wxSize oldGridSize = m_pPropGridManager->GetGrid()->GetClientSize();
2501 wxSize oldFullSize = GetSize();
2502 SetSize(1000, oldFullSize.y);
2503
2504 wxSize newSz = page->FitColumns();
2505
2506 int dx = oldFullSize.x - oldGridSize.x;
2507 int dy = oldFullSize.y - oldGridSize.y;
2508
2509 newSz.x += dx;
2510 newSz.y += dy;
2511
2512 SetSize(newSz);
2513 }
2514
2515 // -----------------------------------------------------------------------
2516
2517 void FormMain::OnChangeFlagsPropItemsClick( wxCommandEvent& WXUNUSED(event) )
2518 {
2519 wxPGProperty* p = m_pPropGridManager->GetPropertyByName(wxT("Window Styles"));
2520
2521 wxPGChoices newChoices;
2522
2523 newChoices.Add(wxT("Fast"),0x1);
2524 newChoices.Add(wxT("Powerful"),0x2);
2525 newChoices.Add(wxT("Safe"),0x4);
2526 newChoices.Add(wxT("Sleek"),0x8);
2527
2528 p->SetChoices(newChoices);
2529 }
2530
2531 // -----------------------------------------------------------------------
2532
2533 void FormMain::OnEnableDisable( wxCommandEvent& )
2534 {
2535 wxPGProperty* id = m_pPropGridManager->GetGrid()->GetSelection();
2536 if ( !id )
2537 {
2538 wxMessageBox(wxT("First select a property."));
2539 return;
2540 }
2541
2542 if ( m_pPropGridManager->IsPropertyEnabled( id ) )
2543 {
2544 m_pPropGridManager->DisableProperty ( id );
2545 m_itemEnable->SetItemLabel( wxT("Enable") );
2546 }
2547 else
2548 {
2549 m_pPropGridManager->EnableProperty ( id );
2550 m_itemEnable->SetItemLabel( wxT("Disable") );
2551 }
2552 }
2553
2554 // -----------------------------------------------------------------------
2555
2556 void FormMain::OnHideShow( wxCommandEvent& WXUNUSED(event) )
2557 {
2558 wxPGProperty* id = m_pPropGridManager->GetGrid()->GetSelection();
2559 if ( !id )
2560 {
2561 wxMessageBox(wxT("First select a property."));
2562 return;
2563 }
2564
2565 if ( m_pPropGridManager->IsPropertyShown( id ) )
2566 {
2567 m_pPropGridManager->HideProperty( id, true );
2568 m_itemEnable->SetItemLabel( wxT("Show") );
2569 }
2570 else
2571 {
2572 m_pPropGridManager->HideProperty( id, false );
2573 m_itemEnable->SetItemLabel( wxT("Hide") );
2574 }
2575
2576 wxPropertyGridPage* curPage = m_pPropGridManager->GetCurrentPage();
2577
2578 // Check for bottomY precalculation validity
2579 unsigned int byPre = curPage->GetVirtualHeight();
2580 unsigned int byAct = curPage->GetActualVirtualHeight();
2581
2582 if ( byPre != byAct )
2583 {
2584 wxLogDebug(wxT("VirtualHeight is %u, should be %u"), byPre, byAct);
2585 }
2586 }
2587
2588 // -----------------------------------------------------------------------
2589
2590 void FormMain::OnInsertPage( wxCommandEvent& WXUNUSED(event) )
2591 {
2592 m_pPropGridManager->AddPage(wxT("New Page"));
2593 }
2594
2595 // -----------------------------------------------------------------------
2596
2597 void FormMain::OnRemovePage( wxCommandEvent& WXUNUSED(event) )
2598 {
2599 m_pPropGridManager->RemovePage(m_pPropGridManager->GetSelectedPage());
2600 }
2601
2602 // -----------------------------------------------------------------------
2603
2604 void FormMain::OnSaveState( wxCommandEvent& WXUNUSED(event) )
2605 {
2606 m_savedState = m_pPropGridManager->SaveEditableState();
2607 wxLogDebug(wxT("Saved editable state string: \"%s\""), m_savedState.c_str());
2608 }
2609
2610 // -----------------------------------------------------------------------
2611
2612 void FormMain::OnRestoreState( wxCommandEvent& WXUNUSED(event) )
2613 {
2614 m_pPropGridManager->RestoreEditableState(m_savedState);
2615 }
2616
2617 // -----------------------------------------------------------------------
2618
2619 void FormMain::OnSetSpinCtrlEditorClick( wxCommandEvent& WXUNUSED(event) )
2620 {
2621 #if wxUSE_SPINBTN
2622 wxPGProperty* pgId = m_pPropGridManager->GetSelection();
2623 if ( pgId )
2624 m_pPropGridManager->SetPropertyEditor( pgId, wxPGEditor_SpinCtrl );
2625 else
2626 wxMessageBox(wxT("First select a property"));
2627 #endif
2628 }
2629
2630 // -----------------------------------------------------------------------
2631
2632 void FormMain::OnTestReplaceClick( wxCommandEvent& WXUNUSED(event) )
2633 {
2634 wxPGProperty* pgId = m_pPropGridManager->GetSelection();
2635 if ( pgId )
2636 {
2637 wxPGChoices choices;
2638 choices.Add(wxT("Flag 0"),0x0001);
2639 choices.Add(wxT("Flag 1"),0x0002);
2640 choices.Add(wxT("Flag 2"),0x0004);
2641 choices.Add(wxT("Flag 3"),0x0008);
2642 wxPGProperty* newId = m_pPropGridManager->ReplaceProperty( pgId,
2643 new wxFlagsProperty(wxT("ReplaceFlagsProperty"), wxPG_LABEL, choices, 0x0003) );
2644 m_pPropGridManager->SetPropertyAttribute( newId,
2645 wxPG_BOOL_USE_CHECKBOX,
2646 true,
2647 wxPG_RECURSE );
2648 }
2649 else
2650 wxMessageBox(wxT("First select a property"));
2651 }
2652
2653 // -----------------------------------------------------------------------
2654
2655 void FormMain::OnClearModifyStatusClick( wxCommandEvent& WXUNUSED(event) )
2656 {
2657 m_pPropGridManager->ClearModifiedStatus();
2658 }
2659
2660 // -----------------------------------------------------------------------
2661
2662 // Freeze check-box checked?
2663 void FormMain::OnFreezeClick( wxCommandEvent& event )
2664 {
2665 if ( !m_pPropGridManager ) return;
2666
2667 if ( event.IsChecked() )
2668 {
2669 if ( !m_pPropGridManager->IsFrozen() )
2670 {
2671 m_pPropGridManager->Freeze();
2672 }
2673 }
2674 else
2675 {
2676 if ( m_pPropGridManager->IsFrozen() )
2677 {
2678 m_pPropGridManager->Thaw();
2679 m_pPropGridManager->Refresh();
2680 }
2681 }
2682 }
2683
2684 // -----------------------------------------------------------------------
2685
2686 void FormMain::OnAbout(wxCommandEvent& WXUNUSED(event))
2687 {
2688 wxString msg;
2689 msg.Printf( wxT("wxPropertyGrid Sample")
2690 #if wxUSE_UNICODE
2691 #if defined(wxUSE_UNICODE_UTF8) && wxUSE_UNICODE_UTF8
2692 wxT(" <utf-8>")
2693 #else
2694 wxT(" <unicode>")
2695 #endif
2696 #else
2697 wxT(" <ansi>")
2698 #endif
2699 #ifdef __WXDEBUG__
2700 wxT(" <debug>")
2701 #else
2702 wxT(" <release>")
2703 #endif
2704 wxT("\n\n")
2705 wxT("Programmed by %s\n\n")
2706 wxT("Using %s\n\n"),
2707 wxT("Jaakko Salli"), wxVERSION_STRING
2708 );
2709
2710 wxMessageBox(msg, _T("About"), wxOK | wxICON_INFORMATION, this);
2711 }
2712
2713 // -----------------------------------------------------------------------
2714
2715 void FormMain::OnColourScheme( wxCommandEvent& event )
2716 {
2717 int id = event.GetId();
2718 if ( id == ID_COLOURSCHEME1 )
2719 {
2720 m_pPropGridManager->GetGrid()->ResetColours();
2721 }
2722 else if ( id == ID_COLOURSCHEME2 )
2723 {
2724 // white
2725 wxColour my_grey_1(212,208,200);
2726 wxColour my_grey_3(113,111,100);
2727 m_pPropGridManager->Freeze();
2728 m_pPropGridManager->GetGrid()->SetMarginColour( *wxWHITE );
2729 m_pPropGridManager->GetGrid()->SetCaptionBackgroundColour( *wxWHITE );
2730 m_pPropGridManager->GetGrid()->SetCellBackgroundColour( *wxWHITE );
2731 m_pPropGridManager->GetGrid()->SetCellTextColour( my_grey_3 );
2732 m_pPropGridManager->GetGrid()->SetLineColour( my_grey_1 ); //wxColour(160,160,160)
2733 m_pPropGridManager->Thaw();
2734 }
2735 else if ( id == ID_COLOURSCHEME3 )
2736 {
2737 // .NET
2738 wxColour my_grey_1(212,208,200);
2739 wxColour my_grey_2(236,233,216);
2740 m_pPropGridManager->Freeze();
2741 m_pPropGridManager->GetGrid()->SetMarginColour( my_grey_1 );
2742 m_pPropGridManager->GetGrid()->SetCaptionBackgroundColour( my_grey_1 );
2743 m_pPropGridManager->GetGrid()->SetLineColour( my_grey_1 );
2744 m_pPropGridManager->Thaw();
2745 }
2746 else if ( id == ID_COLOURSCHEME4 )
2747 {
2748 // cream
2749
2750 wxColour my_grey_1(212,208,200);
2751 wxColour my_grey_2(241,239,226);
2752 wxColour my_grey_3(113,111,100);
2753 m_pPropGridManager->Freeze();
2754 m_pPropGridManager->GetGrid()->SetMarginColour( *wxWHITE );
2755 m_pPropGridManager->GetGrid()->SetCaptionBackgroundColour( *wxWHITE );
2756 m_pPropGridManager->GetGrid()->SetCellBackgroundColour( my_grey_2 );
2757 m_pPropGridManager->GetGrid()->SetCellBackgroundColour( my_grey_2 );
2758 m_pPropGridManager->GetGrid()->SetCellTextColour( my_grey_3 );
2759 m_pPropGridManager->GetGrid()->SetLineColour( my_grey_1 );
2760 m_pPropGridManager->Thaw();
2761 }
2762 }
2763
2764 // -----------------------------------------------------------------------
2765
2766 void FormMain::OnCatColours( wxCommandEvent& event )
2767 {
2768 wxPropertyGrid* pg = m_pPropGridManager->GetGrid();
2769 m_pPropGridManager->Freeze();
2770
2771 if ( event.IsChecked() )
2772 {
2773 // Set custom colours.
2774 pg->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,0), false );
2775 pg->SetPropertyBackgroundColour( wxT("Appearance"), wxColour(255,255,183) );
2776 pg->SetPropertyTextColour( wxT("Appearance"), wxColour(255,0,183) );
2777 pg->SetPropertyTextColour( wxT("PositionCategory"), wxColour(0,255,0), false );
2778 pg->SetPropertyBackgroundColour( wxT("PositionCategory"), wxColour(255,226,190) );
2779 pg->SetPropertyTextColour( wxT("PositionCategory"), wxColour(255,0,190) );
2780 pg->SetPropertyTextColour( wxT("Environment"), wxColour(0,0,255), false );
2781 pg->SetPropertyBackgroundColour( wxT("Environment"), wxColour(208,240,175) );
2782 pg->SetPropertyTextColour( wxT("Environment"), wxColour(255,255,255) );
2783 pg->SetPropertyBackgroundColour( wxT("More Examples"), wxColour(172,237,255) );
2784 pg->SetPropertyTextColour( wxT("More Examples"), wxColour(172,0,255) );
2785 }
2786 else
2787 {
2788 // Revert to original.
2789 pg->SetPropertyColoursToDefault( wxT("Appearance") );
2790 pg->SetPropertyColoursToDefault( wxT("PositionCategory") );
2791 pg->SetPropertyColoursToDefault( wxT("Environment") );
2792 pg->SetPropertyColoursToDefault( wxT("More Examples") );
2793 }
2794 m_pPropGridManager->Thaw();
2795 m_pPropGridManager->Refresh();
2796 }
2797
2798 // -----------------------------------------------------------------------
2799
2800 #define ADD_FLAG(FLAG) \
2801 chs.Add(wxT(#FLAG)); \
2802 vls.Add(FLAG); \
2803 if ( (flags & FLAG) == FLAG ) sel.Add(ind); \
2804 ind++;
2805
2806 void FormMain::OnSelectStyle( wxCommandEvent& WXUNUSED(event) )
2807 {
2808 int style;
2809 int extraStyle;
2810
2811 {
2812 wxArrayString chs;
2813 wxArrayInt vls;
2814 wxArrayInt sel;
2815 unsigned int ind = 0;
2816 int flags = m_pPropGridManager->GetWindowStyle();
2817 ADD_FLAG(wxPG_HIDE_CATEGORIES)
2818 ADD_FLAG(wxPG_AUTO_SORT)
2819 ADD_FLAG(wxPG_BOLD_MODIFIED)
2820 ADD_FLAG(wxPG_SPLITTER_AUTO_CENTER)
2821 ADD_FLAG(wxPG_TOOLTIPS)
2822 ADD_FLAG(wxPG_STATIC_SPLITTER)
2823 ADD_FLAG(wxPG_HIDE_MARGIN)
2824 ADD_FLAG(wxPG_LIMITED_EDITING)
2825 ADD_FLAG(wxPG_TOOLBAR)
2826 ADD_FLAG(wxPG_DESCRIPTION)
2827 wxMultiChoiceDialog dlg( this, wxT("Select window styles to use"),
2828 wxT("wxPropertyGrid Window Style"), chs );
2829 dlg.SetSelections(sel);
2830 if ( dlg.ShowModal() == wxID_CANCEL )
2831 return;
2832
2833 flags = 0;
2834 sel = dlg.GetSelections();
2835 for ( ind = 0; ind < sel.size(); ind++ )
2836 flags |= vls[sel[ind]];
2837
2838 style = flags;
2839 }
2840
2841 {
2842 wxArrayString chs;
2843 wxArrayInt vls;
2844 wxArrayInt sel;
2845 unsigned int ind = 0;
2846 int flags = m_pPropGridManager->GetExtraStyle();
2847 ADD_FLAG(wxPG_EX_INIT_NOCAT)
2848 ADD_FLAG(wxPG_EX_NO_FLAT_TOOLBAR)
2849 ADD_FLAG(wxPG_EX_MODE_BUTTONS)
2850 ADD_FLAG(wxPG_EX_HELP_AS_TOOLTIPS)
2851 ADD_FLAG(wxPG_EX_NATIVE_DOUBLE_BUFFERING)
2852 ADD_FLAG(wxPG_EX_AUTO_UNSPECIFIED_VALUES)
2853 ADD_FLAG(wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES)
2854 wxMultiChoiceDialog dlg( this, wxT("Select extra window styles to use"),
2855 wxT("wxPropertyGrid Extra Style"), chs );
2856 dlg.SetSelections(sel);
2857 if ( dlg.ShowModal() == wxID_CANCEL )
2858 return;
2859
2860 flags = 0;
2861 sel = dlg.GetSelections();
2862 for ( ind = 0; ind < sel.size(); ind++ )
2863 flags |= vls[sel[ind]];
2864
2865 extraStyle = flags;
2866 }
2867
2868 CreateGrid( style, extraStyle );
2869
2870 SetSize(
2871 (wxSystemSettings::GetMetric(wxSYS_SCREEN_X)/10)*4,
2872 (wxSystemSettings::GetMetric(wxSYS_SCREEN_Y)/10)*8
2873 );
2874 Centre();
2875 }
2876
2877 // -----------------------------------------------------------------------
2878
2879 void FormMain::OnSetColumns( wxCommandEvent& WXUNUSED(event) )
2880 {
2881 long colCount = ::wxGetNumberFromUser(wxT("Enter number of columns (2-20)."),wxT("Columns:"),
2882 wxT("Change Columns"),m_pPropGridManager->GetColumnCount(),
2883 2,20);
2884
2885 if ( colCount >= 2 )
2886 {
2887 m_pPropGridManager->SetColumnCount(colCount);
2888 }
2889 }
2890
2891 // -----------------------------------------------------------------------
2892
2893 void FormMain::OnSetPropertyValue( wxCommandEvent& WXUNUSED(event) )
2894 {
2895 wxPropertyGrid* pg = m_pPropGridManager->GetGrid();
2896 wxPGProperty* selected = pg->GetSelection();
2897
2898 if ( selected )
2899 {
2900 wxString value = ::wxGetTextFromUser( wxT("Enter new value:") );
2901 pg->SetPropertyValue( selected, value );
2902 }
2903 }
2904
2905 // -----------------------------------------------------------------------
2906
2907 void FormMain::OnInsertChoice( wxCommandEvent& WXUNUSED(event) )
2908 {
2909 wxPropertyGrid* pg = m_pPropGridManager->GetGrid();
2910
2911 wxPGProperty* selected = pg->GetSelection();
2912 const wxPGChoices& choices = selected->GetChoices();
2913
2914 // Insert new choice to the center of list
2915
2916 if ( choices.IsOk() )
2917 {
2918 int pos = choices.GetCount() / 2;
2919 selected->InsertChoice(wxT("New Choice"), pos);
2920 }
2921 else
2922 {
2923 ::wxMessageBox(wxT("First select a property with some choices."));
2924 }
2925 }
2926
2927 // -----------------------------------------------------------------------
2928
2929 void FormMain::OnDeleteChoice( wxCommandEvent& WXUNUSED(event) )
2930 {
2931 wxPropertyGrid* pg = m_pPropGridManager->GetGrid();
2932
2933 wxPGProperty* selected = pg->GetSelection();
2934 const wxPGChoices& choices = selected->GetChoices();
2935
2936 // Deletes choice from the center of list
2937
2938 if ( choices.IsOk() )
2939 {
2940 int pos = choices.GetCount() / 2;
2941 selected->DeleteChoice(pos);
2942 }
2943 else
2944 {
2945 ::wxMessageBox(wxT("First select a property with some choices."));
2946 }
2947 }
2948
2949 // -----------------------------------------------------------------------
2950
2951 #include <wx/colordlg.h>
2952
2953 void FormMain::OnMisc ( wxCommandEvent& event )
2954 {
2955 int id = event.GetId();
2956 if ( id == ID_STATICLAYOUT )
2957 {
2958 long wsf = m_pPropGridManager->GetWindowStyleFlag();
2959 if ( event.IsChecked() ) m_pPropGridManager->SetWindowStyleFlag( wsf|wxPG_STATIC_LAYOUT );
2960 else m_pPropGridManager->SetWindowStyleFlag( wsf&~(wxPG_STATIC_LAYOUT) );
2961 }
2962 else if ( id == ID_COLLAPSEALL )
2963 {
2964 wxPGVIterator it;
2965 wxPropertyGrid* pg = m_pPropGridManager->GetGrid();
2966
2967 for ( it = pg->GetVIterator( wxPG_ITERATE_ALL ); !it.AtEnd(); it.Next() )
2968 it.GetProperty()->SetExpanded( false );
2969
2970 pg->RefreshGrid();
2971 }
2972 else if ( id == ID_GETVALUES )
2973 {
2974 m_storedValues = m_pPropGridManager->GetGrid()->GetPropertyValues(wxT("Test"),
2975 m_pPropGridManager->GetGrid()->GetRoot(),
2976 wxPG_KEEP_STRUCTURE|wxPG_INC_ATTRIBUTES);
2977 }
2978 else if ( id == ID_SETVALUES )
2979 {
2980 if ( m_storedValues.GetType() == wxT("list") )
2981 {
2982 m_pPropGridManager->GetGrid()->SetPropertyValues(m_storedValues);
2983 }
2984 else
2985 wxMessageBox(wxT("First use Get Property Values."));
2986 }
2987 else if ( id == ID_SETVALUES2 )
2988 {
2989 wxVariant list;
2990 list.NullList();
2991 list.Append( wxVariant((long)1234,wxT("VariantLong")) );
2992 list.Append( wxVariant((bool)TRUE,wxT("VariantBool")) );
2993 list.Append( wxVariant(wxT("Test Text"),wxT("VariantString")) );
2994 m_pPropGridManager->GetGrid()->SetPropertyValues(list);
2995 }
2996 else if ( id == ID_COLLAPSE )
2997 {
2998 // Collapses selected.
2999 wxPGProperty* id = m_pPropGridManager->GetSelection();
3000 if ( id )
3001 {
3002 m_pPropGridManager->Collapse(id);
3003 }
3004 }
3005 else if ( id == ID_RUNTESTFULL )
3006 {
3007 // Runs a regression test.
3008 RunTests(true);
3009 }
3010 else if ( id == ID_RUNTESTPARTIAL )
3011 {
3012 // Runs a regression test.
3013 RunTests(false);
3014 }
3015 else if ( id == ID_UNSPECIFY )
3016 {
3017 wxPGProperty* prop = m_pPropGridManager->GetSelection();
3018 if ( prop )
3019 {
3020 m_pPropGridManager->SetPropertyValueUnspecified(prop);
3021 }
3022 }
3023 else if ( id == ID_SETCOLOUR )
3024 {
3025 wxPGProperty* prop = m_pPropGridManager->GetSelection();
3026 if ( prop )
3027 {
3028 wxColourData data;
3029 data.SetChooseFull(true);
3030 int i;
3031 for ( i = 0; i < 16; i++)
3032 {
3033 wxColour colour(i*16, i*16, i*16);
3034 data.SetCustomColour(i, colour);
3035 }
3036
3037 wxColourDialog dialog(this, &data);
3038 if ( dialog.ShowModal() == wxID_OK )
3039 {
3040 wxColourData retData = dialog.GetColourData();
3041 m_pPropGridManager->GetGrid()->SetPropertyBackgroundColour(prop,retData.GetColour());
3042 }
3043 }
3044 }
3045 }
3046
3047 // -----------------------------------------------------------------------
3048
3049 void FormMain::OnPopulateClick( wxCommandEvent& event )
3050 {
3051 int id = event.GetId();
3052 m_propGrid->Clear();
3053 m_propGrid->Freeze();
3054 if ( id == ID_POPULATE1 )
3055 {
3056 PopulateWithStandardItems();
3057 }
3058 else if ( id == ID_POPULATE2 )
3059 {
3060 PopulateWithLibraryConfig();
3061 }
3062 m_propGrid->Thaw();
3063 }
3064
3065 // -----------------------------------------------------------------------
3066
3067 void DisplayMinimalFrame(wxWindow* parent); // in minimal.cpp
3068
3069 void FormMain::OnRunMinimalClick( wxCommandEvent& WXUNUSED(event) )
3070 {
3071 DisplayMinimalFrame(this);
3072 }
3073
3074 // -----------------------------------------------------------------------
3075
3076 FormMain::~FormMain()
3077 {
3078 }
3079
3080 // -----------------------------------------------------------------------
3081
3082 IMPLEMENT_APP(cxApplication)
3083
3084 bool cxApplication::OnInit()
3085 {
3086 //wxLocale Locale;
3087 //Locale.Init(wxLANGUAGE_FINNISH);
3088
3089 FormMain* frame = Form1 = new FormMain( wxT("wxPropertyGrid Sample"), wxPoint(0,0), wxSize(300,500) );
3090 frame->Show(true);
3091
3092 //
3093 // Parse command-line
3094 wxApp& app = wxGetApp();
3095 if ( app.argc > 1 )
3096 {
3097 wxString s = app.argv[1];
3098 if ( s == wxT("--run-tests") )
3099 {
3100 //
3101 // Run tests
3102 bool testResult = frame->RunTests(true);
3103
3104 if ( testResult )
3105 return false;
3106 }
3107 }
3108
3109 return true;
3110 }
3111
3112 // -----------------------------------------------------------------------
3113
3114 void FormMain::OnIdle( wxIdleEvent& event )
3115 {
3116 /*
3117 // This code is useful for debugging focus problems
3118 static wxWindow* last_focus = (wxWindow*) NULL;
3119
3120 wxWindow* cur_focus = ::wxWindow::FindFocus();
3121
3122 if ( cur_focus != last_focus )
3123 {
3124 const wxChar* class_name = wxT("<none>");
3125 if ( cur_focus )
3126 class_name = cur_focus->GetClassInfo()->GetClassName();
3127 last_focus = cur_focus;
3128 wxLogDebug( wxT("FOCUSED: %s %X"),
3129 class_name,
3130 (unsigned int)cur_focus);
3131 }
3132 */
3133
3134 event.Skip();
3135 }
3136
3137 // -----------------------------------------------------------------------