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