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