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