]> git.saurik.com Git - wxWidgets.git/blob - include/wx/propgrid/propgrid.h
On Mac, ensure that the library path and dependencies point to the right location...
[wxWidgets.git] / include / wx / propgrid / propgrid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgrid/propgrid.h
3 // Purpose: wxPropertyGrid
4 // Author: Jaakko Salli
5 // Modified by:
6 // Created: 2004-09-25
7 // RCS-ID: $Id$
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PROPGRID_PROPGRID_H_
13 #define _WX_PROPGRID_PROPGRID_H_
14
15 #if wxUSE_PROPGRID
16
17 #include "wx/dcclient.h"
18 #include "wx/scrolwin.h"
19 #include "wx/tooltip.h"
20 #include "wx/datetime.h"
21
22 #include "wx/propgrid/property.h"
23 #include "wx/propgrid/propgridiface.h"
24
25
26 #ifndef SWIG
27 extern WXDLLIMPEXP_DATA_PROPGRID(const char) wxPropertyGridNameStr[];
28 #endif
29
30 class wxPGComboBox;
31
32 // -----------------------------------------------------------------------
33 // Global variables
34 // -----------------------------------------------------------------------
35
36 #ifndef SWIG
37
38 // This is required for sharing common global variables.
39 class WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass
40 {
41 public:
42
43 wxPGGlobalVarsClass();
44 ~wxPGGlobalVarsClass();
45
46 // Used by advprops, but here to make things easier.
47 wxString m_pDefaultImageWildcard;
48
49 // Map of editor class instances (keys are name string).
50 wxPGHashMapS2P m_mapEditorClasses;
51
52 #if wxUSE_VALIDATORS
53 wxVector<wxValidator*> m_arrValidators; // These wxValidators need to be freed
54 #endif
55
56 wxPGHashMapS2P m_dictPropertyClassInfo; // PropertyName -> ClassInfo
57
58 wxPGChoices* m_fontFamilyChoices;
59
60 // Replace with your own to affect all properties using default renderer.
61 wxPGCellRenderer* m_defaultRenderer;
62
63 wxPGChoices m_boolChoices;
64
65 wxVariant m_vEmptyString;
66 wxVariant m_vZero;
67 wxVariant m_vMinusOne;
68 wxVariant m_vTrue;
69 wxVariant m_vFalse;
70
71 // Cached constant strings
72 wxPGCachedString m_strstring;
73 wxPGCachedString m_strlong;
74 wxPGCachedString m_strbool;
75 wxPGCachedString m_strlist;
76
77 wxPGCachedString m_strMin;
78 wxPGCachedString m_strMax;
79 wxPGCachedString m_strUnits;
80 wxPGCachedString m_strInlineHelp;
81
82 // If true then some things are automatically translated
83 bool m_autoGetTranslation;
84
85 // > 0 if errors cannot or should not be shown in statusbar etc.
86 int m_offline;
87
88 int m_extraStyle; // global extra style
89
90 #ifdef __WXDEBUG__
91 int m_warnings;
92 #endif
93
94 int HasExtraStyle( int style ) const { return (m_extraStyle & style); }
95 };
96
97 extern WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass* wxPGGlobalVars;
98
99 #define wxPGVariant_EmptyString (wxPGGlobalVars->m_vEmptyString)
100 #define wxPGVariant_Zero (wxPGGlobalVars->m_vZero)
101 #define wxPGVariant_MinusOne (wxPGGlobalVars->m_vMinusOne)
102 #define wxPGVariant_True (wxPGGlobalVars->m_vTrue)
103 #define wxPGVariant_False (wxPGGlobalVars->m_vFalse)
104
105 #define wxPGVariant_Bool(A) (A?wxPGVariant_True:wxPGVariant_False)
106
107 #endif // !SWIG
108
109 // -----------------------------------------------------------------------
110
111 /** @section propgrid_window_styles wxPropertyGrid Window Styles
112
113 SetWindowStyleFlag method can be used to modify some of these at run-time.
114 @{
115 */
116 enum wxPG_WINDOW_STYLES
117 {
118
119 /** This will cause Sort() automatically after an item is added.
120 When inserting a lot of items in this mode, it may make sense to
121 use Freeze() before operations and Thaw() afterwards to increase
122 performance.
123 */
124 wxPG_AUTO_SORT = 0x00000010,
125
126 /** Categories are not initially shown (even if added).
127 IMPORTANT NOTE: If you do not plan to use categories, then this
128 style will waste resources.
129 This flag can also be changed using wxPropertyGrid::EnableCategories method.
130 */
131 wxPG_HIDE_CATEGORIES = 0x00000020,
132
133 /* This style combines non-categoric mode and automatic sorting.
134 */
135 wxPG_ALPHABETIC_MODE = (wxPG_HIDE_CATEGORIES|wxPG_AUTO_SORT),
136
137 /** Modified values are shown in bold font. Changing this requires Refresh()
138 to show changes.
139 */
140 wxPG_BOLD_MODIFIED = 0x00000040,
141
142 /** When wxPropertyGrid is resized, splitter moves to the center. This
143 behavior stops once the user manually moves the splitter.
144 */
145 wxPG_SPLITTER_AUTO_CENTER = 0x00000080,
146
147 /** Display tooltips for cell text that cannot be shown completely. If
148 wxUSE_TOOLTIPS is 0, then this doesn't have any effect.
149 */
150 wxPG_TOOLTIPS = 0x00000100,
151
152 /** Disables margin and hides all expand/collapse buttons that would appear
153 outside the margin (for sub-properties). Toggling this style automatically
154 expands all collapsed items.
155 */
156 wxPG_HIDE_MARGIN = 0x00000200,
157
158 /** This style prevents user from moving the splitter.
159 */
160 wxPG_STATIC_SPLITTER = 0x00000400,
161
162 /** Combination of other styles that make it impossible for user to modify
163 the layout.
164 */
165 wxPG_STATIC_LAYOUT = (wxPG_HIDE_MARGIN|wxPG_STATIC_SPLITTER),
166
167 /** Disables wxTextCtrl based editors for properties which
168 can be edited in another way.
169
170 Equals calling wxPropertyGrid::LimitPropertyEditing for all added
171 properties.
172 */
173 wxPG_LIMITED_EDITING = 0x00000800,
174
175 /** wxPropertyGridManager only: Show toolbar for mode and page selection. */
176 wxPG_TOOLBAR = 0x00001000,
177
178 /** wxPropertyGridManager only: Show adjustable text box showing description
179 or help text, if available, for currently selected property.
180 */
181 wxPG_DESCRIPTION = 0x00002000
182
183 };
184
185 enum wxPG_EX_WINDOW_STYLES
186 {
187
188 /**
189 NOTE: wxPG_EX_xxx are extra window styles and must be set using
190 SetExtraStyle() member function.
191
192 Speeds up switching to wxPG_HIDE_CATEGORIES mode. Initially, if
193 wxPG_HIDE_CATEGORIES is not defined, the non-categorized data storage is
194 not activated, and switching the mode first time becomes somewhat slower.
195 wxPG_EX_INIT_NOCAT activates the non-categorized data storage right away.
196 IMPORTANT NOTE: If you do plan not switching to non-categoric mode, or if
197 you don't plan to use categories at all, then using this style will result
198 in waste of resources.
199
200 */
201 wxPG_EX_INIT_NOCAT = 0x00001000,
202
203 /** Extended window style that sets wxPropertyGridManager toolbar to not
204 use flat style.
205 */
206 wxPG_EX_NO_FLAT_TOOLBAR = 0x00002000,
207
208 /** Shows alphabetic/categoric mode buttons from toolbar.
209 */
210 wxPG_EX_MODE_BUTTONS = 0x00008000,
211
212 /** Show property help strings as tool tips instead as text on the status bar.
213 You can set the help strings using SetPropertyHelpString member function.
214 */
215 wxPG_EX_HELP_AS_TOOLTIPS = 0x00010000,
216
217 /** Prevent TAB from focusing to wxButtons. This behavior was default
218 in version 1.2.0 and earlier.
219 NOTE! Tabbing to button doesn't work yet. Problem seems to be that on wxMSW
220 atleast the button doesn't properly propagate key events (yes, I'm using
221 wxWANTS_CHARS).
222 */
223 //wxPG_EX_NO_TAB_TO_BUTTON = 0x00020000,
224
225 /** Allows relying on native double-buffering.
226 */
227 wxPG_EX_NATIVE_DOUBLE_BUFFERING = 0x00080000,
228
229 /** Set this style to let user have ability to set values of properties to
230 unspecified state. Same as setting wxPG_PROP_AUTO_UNSPECIFIED for
231 all properties.
232 */
233 wxPG_EX_AUTO_UNSPECIFIED_VALUES = 0x00200000,
234
235 /**
236 If this style is used, built-in attributes (such as wxPG_FLOAT_PRECISION
237 and wxPG_STRING_PASSWORD) are not stored into property's attribute storage
238 (thus they are not readable).
239
240 Note that this option is global, and applies to all wxPG property
241 containers.
242 */
243 wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES = 0x00400000,
244
245 /** Hides page selection buttons from toolbar.
246 */
247 wxPG_EX_HIDE_PAGE_BUTTONS = 0x01000000
248
249 };
250
251 /** Combines various styles.
252 */
253 #define wxPG_DEFAULT_STYLE (0)
254
255 /** Combines various styles.
256 */
257 #define wxPGMAN_DEFAULT_STYLE (0)
258
259 /** @}
260 */
261
262 // -----------------------------------------------------------------------
263
264 //
265 // Ids for sub-controls
266 // NB: It should not matter what these are.
267 #define wxPG_SUBID1 2
268 #define wxPG_SUBID2 3
269 #define wxPG_SUBID_TEMP1 4
270
271 // -----------------------------------------------------------------------
272
273 /** @class wxPGCommonValue
274
275 wxPropertyGrid stores information about common values in these
276 records.
277
278 NB: Common value feature is not complete, and thus not mentioned in
279 documentation.
280 */
281 class WXDLLIMPEXP_PROPGRID wxPGCommonValue
282 {
283 public:
284
285 wxPGCommonValue( const wxString& label, wxPGCellRenderer* renderer )
286 {
287 m_label = label;
288 m_renderer = renderer;
289 renderer->IncRef();
290 }
291 virtual ~wxPGCommonValue()
292 {
293 m_renderer->DecRef();
294 }
295
296 virtual wxString GetEditableText() const { return m_label; }
297 const wxString& GetLabel() const { return m_label; }
298 wxPGCellRenderer* GetRenderer() const { return m_renderer; }
299
300 protected:
301 wxString m_label;
302 wxPGCellRenderer* m_renderer;
303 };
304
305 // -----------------------------------------------------------------------
306
307 /** @section propgrid_vfbflags wxPropertyGrid Validation Failure Behavior Flags
308 @{
309 */
310
311 enum wxPG_VALIDATION_FAILURE_BEHAVIOR_FLAGS
312 {
313
314 /** Prevents user from leaving property unless value is valid. If this
315 behavior flag is not used, then value change is instead cancelled.
316 */
317 wxPG_VFB_STAY_IN_PROPERTY = 0x01,
318
319 /** Calls wxBell() on validation failure.
320 */
321 wxPG_VFB_BEEP = 0x02,
322
323 /** Cell with invalid value will be marked (with red colour).
324 */
325 wxPG_VFB_MARK_CELL = 0x04,
326
327 /** Display customizable text message explaining the situation.
328 */
329 wxPG_VFB_SHOW_MESSAGE = 0x08,
330
331 /** Defaults. */
332 wxPG_VFB_DEFAULT = wxPG_VFB_STAY_IN_PROPERTY|wxPG_VFB_BEEP,
333
334 /** Only used internally. */
335 wxPG_VFB_UNDEFINED = 0x80
336
337 };
338
339 /** @}
340 */
341
342 typedef wxByte wxPGVFBFlags;
343
344 /**
345 wxPGValidationInfo
346
347 Used to convey validation information to and from functions that
348 actually perform validation. Mostly used in custom property
349 classes.
350 */
351 class WXDLLIMPEXP_PROPGRID wxPGValidationInfo
352 {
353 friend class wxPropertyGrid;
354 public:
355 /**
356 @return Returns failure behavior which is a combination of
357 @ref propgrid_vfbflags.
358 */
359 wxPGVFBFlags GetFailureBehavior() const
360 { return m_failureBehavior; }
361
362 /**
363 Returns current failure message.
364 */
365 const wxString& GetFailureMessage() const
366 { return m_failureMessage; }
367
368 /**
369 Returns reference to pending value.
370 */
371 const wxVariant& GetValue() const
372 {
373 wxASSERT(m_pValue);
374 return *m_pValue;
375 }
376
377 /** Set validation failure behavior
378
379 @param failureBehavior
380 Mixture of @ref propgrid_vfbflags.
381 */
382 void SetFailureBehavior(wxPGVFBFlags failureBehavior)
383 { m_failureBehavior = failureBehavior; }
384
385 /**
386 Set current failure message.
387 */
388 void SetFailureMessage(const wxString& message)
389 { m_failureMessage = message; }
390
391 private:
392 /** Value to be validated.
393 */
394 wxVariant* m_pValue;
395
396 /** Message displayed on validation failure.
397 */
398 wxString m_failureMessage;
399
400 /** Validation failure behavior. Use wxPG_VFB_XXX flags.
401 */
402 wxPGVFBFlags m_failureBehavior;
403 };
404
405 // -----------------------------------------------------------------------
406
407 /** @section propgrid_pgactions wxPropertyGrid Action Identifiers
408
409 These are used with wxPropertyGrid::AddActionTrigger() and
410 wxPropertyGrid::ClearActionTriggers().
411 @{
412 */
413
414 enum wxPG_KEYBOARD_ACTIONS
415 {
416 wxPG_ACTION_INVALID = 0,
417 wxPG_ACTION_NEXT_PROPERTY,
418 wxPG_ACTION_PREV_PROPERTY,
419 wxPG_ACTION_EXPAND_PROPERTY,
420 wxPG_ACTION_COLLAPSE_PROPERTY,
421 wxPG_ACTION_CANCEL_EDIT,
422 wxPG_ACTION_PRESS_BUTTON, // Causes editor button (if any) to be pressed
423 wxPG_ACTION_MAX
424 };
425
426 /** @}
427 */
428
429 // -----------------------------------------------------------------------
430
431
432 // wxPropertyGrid::DoSelectProperty flags (selFlags)
433
434 // Focuses to created editor
435 #define wxPG_SEL_FOCUS 0x01
436 // Forces deletion and recreation of editor
437 #define wxPG_SEL_FORCE 0x02
438 // For example, doesn't cause EnsureVisible
439 #define wxPG_SEL_NONVISIBLE 0x04
440 // Do not validate editor's value before selecting
441 #define wxPG_SEL_NOVALIDATE 0x08
442 // Property being deselected is about to be deleted
443 #define wxPG_SEL_DELETING 0x10
444 // Property's values was set to unspecified by the user
445 #define wxPG_SEL_SETUNSPEC 0x20
446 // Property's event handler changed the value
447 #define wxPG_SEL_DIALOGVAL 0x40
448
449
450 // -----------------------------------------------------------------------
451
452 #ifndef SWIG
453
454 // Internal flags
455 #define wxPG_FL_INITIALIZED 0x0001
456 // Set when creating editor controls if it was clicked on.
457 #define wxPG_FL_ACTIVATION_BY_CLICK 0x0002
458 #define wxPG_FL_DONT_CENTER_SPLITTER 0x0004
459 #define wxPG_FL_FOCUSED 0x0008
460 #define wxPG_FL_MOUSE_CAPTURED 0x0010
461 #define wxPG_FL_MOUSE_INSIDE 0x0020
462 #define wxPG_FL_VALUE_MODIFIED 0x0040
463 // don't clear background of m_wndEditor
464 #define wxPG_FL_PRIMARY_FILLS_ENTIRE 0x0080
465 // currently active editor uses custom image
466 #define wxPG_FL_CUR_USES_CUSTOM_IMAGE 0x0100
467 // cell colours override selection colours for selected cell
468 #define wxPG_FL_CELL_OVERRIDES_SEL 0x0200
469 #define wxPG_FL_SCROLLED 0x0400
470 // set when all added/inserted properties get hideable flag
471 #define wxPG_FL_ADDING_HIDEABLES 0x0800
472 // Disables showing help strings on statusbar.
473 #define wxPG_FL_NOSTATUSBARHELP 0x1000
474 // Marks that we created the state, so we have to destroy it too.
475 #define wxPG_FL_CREATEDSTATE 0x2000
476 // Set if scrollbar's existence was detected in last onresize.
477 #define wxPG_FL_SCROLLBAR_DETECTED 0x4000
478 // Set if wxPGMan requires redrawing of description text box.
479 #define wxPG_FL_DESC_REFRESH_REQUIRED 0x8000
480 // Set if contained in wxPropertyGridManager
481 #define wxPG_FL_IN_MANAGER 0x00020000
482 // Set after wxPropertyGrid is shown in its initial good size
483 #define wxPG_FL_GOOD_SIZE_SET 0x00040000
484 // Set when in SelectProperty.
485 #define wxPG_FL_IN_SELECT_PROPERTY 0x00100000
486 // Set when help string is shown in status bar
487 #define wxPG_FL_STRING_IN_STATUSBAR 0x00200000
488 // Splitter position has been custom-set by the user
489 #define wxPG_FL_SPLITTER_PRE_SET 0x00400000
490 // Validation failed. Clear on modify event.
491 #define wxPG_FL_VALIDATION_FAILED 0x00800000
492 // Auto sort is enabled (for categorized mode)
493 #define wxPG_FL_CATMODE_AUTO_SORT 0x01000000
494 // Set after page has been inserted to manager
495 #define wxPG_MAN_FL_PAGE_INSERTED 0x02000000
496 // Active editor control is abnormally large
497 #define wxPG_FL_ABNORMAL_EDITOR 0x04000000
498 // Recursion guard for HandleCustomEditorEvent
499 #define wxPG_FL_IN_HANDLECUSTOMEDITOREVENT 0x08000000
500 #define wxPG_FL_VALUE_CHANGE_IN_EVENT 0x10000000
501 // Editor control width should not change on resize
502 #define wxPG_FL_FIXED_WIDTH_EDITOR 0x20000000
503 // Width of panel can be different than width of grid
504 #define wxPG_FL_HAS_VIRTUAL_WIDTH 0x40000000
505 // Prevents RecalculateVirtualSize re-entrancy
506 #define wxPG_FL_RECALCULATING_VIRTUAL_SIZE 0x80000000
507
508 #endif // #ifndef SWIG
509
510 #if !defined(__wxPG_SOURCE_FILE__) && !defined(SWIG)
511 // Reduce compile time, but still include in user app
512 #include "wx/propgrid/props.h"
513 #endif
514
515 // -----------------------------------------------------------------------
516
517 /** @class wxPropertyGrid
518
519 wxPropertyGrid is a specialized grid for editing properties
520 such as strings, numbers, flagsets, fonts, and colours. wxPropertySheet
521 used to do the very same thing, but it hasn't been updated for a while
522 and it is currently deprecated.
523
524 Please note that most member functions are inherited and as such not
525 documented on this page. This means you will probably also want to read
526 wxPropertyGridInterface class reference.
527
528 See also @ref overview_propgrid.
529
530 @section propgrid_window_styles_ Window Styles
531
532 See @ref propgrid_window_styles.
533
534 @section propgrid_event_handling Event Handling
535
536 To process input from a propertygrid control, use these event handler
537 macros to direct input to member functions that take a wxPropertyGridEvent
538 argument.
539
540 @beginEventTable{wxPropertyGridEvent}
541 @event{EVT_PG_SELECTED (id, func)}
542 Respond to wxEVT_PG_SELECTED event, generated when property value
543 has been changed by user.
544 @event{EVT_PG_CHANGING(id, func)}
545 Respond to wxEVT_PG_CHANGING event, generated when property value
546 is about to be changed by user. Use wxPropertyGridEvent::GetValue()
547 to take a peek at the pending value, and wxPropertyGridEvent::Veto()
548 to prevent change from taking place, if necessary.
549 @event{EVT_PG_HIGHLIGHTED(id, func)}
550 Respond to wxEVT_PG_HIGHLIGHTED event, which occurs when mouse
551 moves over a property. Event's property is NULL if hovered area does
552 not belong to any property.
553 @event{EVT_PG_RIGHT_CLICK(id, func)}
554 Respond to wxEVT_PG_RIGHT_CLICK event, which occurs when property is
555 clicked on with right mouse button.
556 @event{EVT_PG_DOUBLE_CLICK(id, func)}
557 Respond to wxEVT_PG_DOUBLE_CLICK event, which occurs when property is
558 double-clicked onwith left mouse button.
559 @event{EVT_PG_ITEM_COLLAPSED(id, func)}
560 Respond to wxEVT_PG_ITEM_COLLAPSED event, generated when user collapses
561 a property or category..
562 @event{EVT_PG_ITEM_EXPANDED(id, func)}
563 Respond to wxEVT_PG_ITEM_EXPANDED event, generated when user expands
564 a property or category..
565 @endEventTable
566
567 @remarks
568
569 - Use Freeze() and Thaw() respectively to disable and enable drawing. This
570 will also delay sorting etc. miscellaneous calculations to the last
571 possible moment.
572
573 @library{wxpropgrid}
574 @category{propgrid}
575 */
576 class WXDLLIMPEXP_PROPGRID
577 wxPropertyGrid : public wxScrolledWindow, public wxPropertyGridInterface
578 {
579 friend class wxPropertyGridPageState;
580 friend class wxPropertyGridInterface;
581 friend class wxPropertyGridManager;
582 friend class wxPGCanvas;
583
584 #ifndef SWIG
585 DECLARE_DYNAMIC_CLASS(wxPropertyGrid)
586 #endif
587 public:
588
589 #ifdef SWIG
590 %pythonAppend wxPropertyGrid {
591 self._setOORInfo(self)
592 self.DoDefaultTypeMappings()
593 self.edited_objects = {}
594 self.DoDefaultValueTypeMappings()
595 if not hasattr(self.__class__,'_vt2setter'):
596 self.__class__._vt2setter = {}
597 }
598 %pythonAppend wxPropertyGrid() ""
599
600 wxPropertyGrid( wxWindow *parent, wxWindowID id = wxID_ANY,
601 const wxPoint& pos = wxDefaultPosition,
602 const wxSize& size = wxDefaultSize,
603 long style = wxPG_DEFAULT_STYLE,
604 const wxChar* name = wxPyPropertyGridNameStr );
605 %RenameCtor(PrePropertyGrid, wxPropertyGrid());
606 #else
607
608 /**
609 Two step constructor.
610
611 Call Create when this constructor is called to build up the
612 wxPropertyGrid
613 */
614 wxPropertyGrid();
615
616 /** The default constructor. The styles to be used are styles valid for
617 the wxWindow and wxScrolledWindow.
618
619 @see @link wndflags Additional Window Styles @endlink
620 */
621 wxPropertyGrid( wxWindow *parent, wxWindowID id = wxID_ANY,
622 const wxPoint& pos = wxDefaultPosition,
623 const wxSize& size = wxDefaultSize,
624 long style = wxPG_DEFAULT_STYLE,
625 const wxString& name = wxPropertyGridNameStr );
626
627 /** Destructor */
628 virtual ~wxPropertyGrid();
629 #endif
630
631 /** Adds given key combination to trigger given action.
632
633 @param action
634 Which action to trigger. See @link pgactions List of list of
635 wxPropertyGrid actions@endlink.
636 */
637 void AddActionTrigger( int action, int keycode, int modifiers = 0 );
638
639 /**
640 This static function enables or disables automatic use of
641 wxGetTranslation for following strings: wxEnumProperty list labels,
642 wxFlagsProperty sub-property labels.
643
644 Default is false.
645 */
646 static void AutoGetTranslation( bool enable );
647
648 /**
649 Changes value of a property, as if from an editor.
650
651 Use this instead of SetPropertyValue() if you need the value to run
652 through validation process, and also send the property change event.
653
654 @return
655 Returns true if value was successfully changed.
656 */
657 bool ChangePropertyValue( wxPGPropArg id, wxVariant newValue );
658
659 /**
660 Centers the splitter.
661
662 If argument is true, automatic splitter centering is enabled (only
663 applicapple if style wxPG_SPLITTER_AUTO_CENTER was defined).
664 */
665 void CenterSplitter( bool enable_auto_centering = false );
666
667 /** Deletes all properties.
668 */
669 virtual void Clear();
670
671 /** Clears action triggers for given action.
672 @param action
673 Which action to trigger. See @link pgactions List of list of
674 wxPropertyGrid actions@endlink.
675 */
676 void ClearActionTriggers( int action );
677
678 /** Forces updating the value of property from the editor control.
679
680 Note that wxEVT_PG_CHANGING and wxEVT_PG_CHANGED are dispatched using
681 ProcessEvent, meaning your event handlers will be called immediately.
682
683 @return
684 Returns true if anything was changed.
685 */
686 virtual bool CommitChangesFromEditor( wxUint32 flags = 0 );
687
688 /**
689 Two step creation.
690
691 Whenever the control is created without any parameters, use Create to
692 actually create it. Don't access the control's public methods before
693 this is called @see @link wndflags Additional Window Styles@endlink
694 */
695 bool Create( wxWindow *parent, wxWindowID id = wxID_ANY,
696 const wxPoint& pos = wxDefaultPosition,
697 const wxSize& size = wxDefaultSize,
698 long style = wxPG_DEFAULT_STYLE,
699 const wxString& name = wxPropertyGridNameStr );
700
701 /**
702 Call when editor widget's contents is modified.
703
704 For example, this is called when changes text in wxTextCtrl (used in
705 wxStringProperty and wxIntProperty).
706
707 @remarks
708 This function should only be called by custom properties.
709
710 @see wxPGProperty::OnEvent()
711 */
712 void EditorsValueWasModified() { m_iFlags |= wxPG_FL_VALUE_MODIFIED; }
713
714 /** Reverse of EditorsValueWasModified().
715
716 @remarks
717 This function should only be called by custom properties.
718 */
719 void EditorsValueWasNotModified()
720 {
721 m_iFlags &= ~(wxPG_FL_VALUE_MODIFIED);
722 }
723
724 /**
725 Enables or disables (shows/hides) categories according to parameter
726 enable.
727 */
728 bool EnableCategories( bool enable );
729
730 /** Scrolls and/or expands items to ensure that the given item is visible.
731 Returns true if something was actually done.
732 */
733 bool EnsureVisible( wxPGPropArg id );
734
735 /**
736 Reduces column sizes to minimum possible that contents are still
737 visibly (naturally some margin space will be applied as well).
738
739 @return
740 Minimum size for the grid to still display everything.
741
742 @remarks
743 Does not work well with wxPG_SPLITTER_AUTO_CENTER window style.
744
745 This function only works properly if grid size prior to call was already
746 fairly large.
747
748 Note that you can also get calculated column widths by calling
749 GetState->GetColumnWidth() immediately after this function returns.
750 */
751 wxSize FitColumns()
752 {
753 wxSize sz = m_pState->DoFitColumns();
754 return sz;
755 }
756
757 /**
758 Returns wxWindow that the properties are painted on, and which should
759 be used as the parent for editor controls.
760 */
761 wxPanel* GetPanel() const
762 {
763 return m_canvas;
764 }
765
766 /** Returns current category caption background colour. */
767 wxColour GetCaptionBackgroundColour() const { return m_colCapBack; }
768
769 wxFont& GetCaptionFont() { return m_captionFont; }
770
771 const wxFont& GetCaptionFont() const { return m_captionFont; }
772
773 /** Returns current category caption text colour. */
774 wxColour GetCaptionForegroundColour() const { return m_colCapFore; }
775
776 /** Returns current cell background colour. */
777 wxColour GetCellBackgroundColour() const { return m_colPropBack; }
778
779 /** Returns current cell text colour when disabled. */
780 wxColour GetCellDisabledTextColour() const { return m_colDisPropFore; }
781
782 /** Returns current cell text colour. */
783 wxColour GetCellTextColour() const { return m_colPropFore; }
784
785 /**
786 Returns number of columns currently on grid.
787 */
788 unsigned int GetColumnCount() const
789 {
790 return (unsigned int) m_pState->m_colWidths.size();
791 }
792
793 /** Returns colour of empty space below properties. */
794 wxColour GetEmptySpaceColour() const { return m_colEmptySpace; }
795
796 /** Returns height of highest characters of used font. */
797 int GetFontHeight() const { return m_fontHeight; }
798
799 /** Returns pointer to itself. Dummy function that enables same kind
800 of code to use wxPropertyGrid and wxPropertyGridManager.
801 */
802 wxPropertyGrid* GetGrid() { return this; }
803
804 /** Returns rectangle of custom paint image.
805 */
806 wxRect GetImageRect( wxPGProperty* p, int item ) const;
807
808 /** Returns size of the custom paint image in front of property.
809 If no argument is given, returns preferred size.
810 */
811 wxSize GetImageSize( wxPGProperty* p = NULL, int item = -1 ) const;
812
813 //@{
814 /** Returns last item which could be iterated using given flags.
815 @param flags
816 See @ref propgrid_iterator_flags.
817 */
818 wxPGProperty* GetLastItem( int flags = wxPG_ITERATE_DEFAULT )
819 {
820 return m_pState->GetLastItem(flags);
821 }
822
823 const wxPGProperty* GetLastItem( int flags = wxPG_ITERATE_DEFAULT ) const
824 {
825 return m_pState->GetLastItem(flags);
826 }
827 //@}
828
829 /** Returns colour of lines between cells. */
830 wxColour GetLineColour() const { return m_colLine; }
831
832 /** Returns background colour of margin. */
833 wxColour GetMarginColour() const { return m_colMargin; }
834
835 /**
836 Returns most up-to-date value of selected property. This will return
837 value different from GetSelectedProperty()->GetValue() only when text
838 editor is activate and string edited by user represents valid,
839 uncommitted property value.
840 */
841 wxVariant GetUncommittedPropertyValue();
842
843 /** Returns "root property". It does not have name, etc. and it is not
844 visible. It is only useful for accessing its children.
845 */
846 wxPGProperty* GetRoot() const { return m_pState->m_properties; }
847
848 /** Returns height of a single grid row (in pixels). */
849 int GetRowHeight() const { return m_lineHeight; }
850
851 /** Returns currently selected property. */
852 wxPGProperty* GetSelectedProperty() const { return GetSelection(); }
853
854 /** Returns currently selected property. */
855 wxPGProperty* GetSelection() const
856 {
857 return m_selected;
858 }
859
860 /** Returns current selection background colour. */
861 wxColour GetSelectionBackgroundColour() const { return m_colSelBack; }
862
863 /** Returns current selection text colour. */
864 wxColour GetSelectionForegroundColour() const { return m_colSelFore; }
865
866 /** Returns current splitter x position. */
867 int GetSplitterPosition() const
868 { return m_pState->DoGetSplitterPosition(0); }
869
870 /** Returns wxTextCtrl active in currently selected property, if any. Takes
871 into account wxOwnerDrawnComboBox.
872 */
873 wxTextCtrl* GetEditorTextCtrl() const;
874
875 wxPGValidationInfo& GetValidationInfo()
876 {
877 return m_validationInfo;
878 }
879
880 /** Returns current vertical spacing. */
881 int GetVerticalSpacing() const { return (int)m_vspacing; }
882
883 /**
884 Returns @true if a property editor control has focus.
885 */
886 bool IsEditorFocused() const;
887
888 /** Returns true if editor's value was marked modified.
889 */
890 bool IsEditorsValueModified() const
891 { return ( m_iFlags & wxPG_FL_VALUE_MODIFIED ) ? true : false; }
892
893 /**
894 Returns information about arbitrary position in the grid.
895
896 @param pt
897 Coordinates in the virtual grid space. You may need to use
898 wxScrolledWindow::CalcScrolledPosition() for translating
899 wxPropertyGrid client coordinates into something this member
900 function can use.
901 */
902 wxPropertyGridHitTestResult HitTest( const wxPoint& pt ) const;
903
904 /** Returns true if any property has been modified by the user. */
905 bool IsAnyModified() const { return (m_pState->m_anyModified>0); }
906
907 /**
908 Returns true if updating is frozen (ie Freeze() called but not yet
909 Thaw() ).
910 */
911 bool IsFrozen() const { return (m_frozen>0)?true:false; }
912
913 /** Redraws given property.
914 */
915 virtual void RefreshProperty( wxPGProperty* p );
916
917 #ifndef SWIG
918 /** Registers a new editor class.
919 @return
920 Pointer to the editor class instance that should be used.
921 */
922 static wxPGEditor* RegisterEditorClass( wxPGEditor* editor,
923 bool noDefCheck = false );
924 #endif
925
926 /** Resets all colours to the original system values.
927 */
928 void ResetColours();
929
930 /**
931 Selects a property.
932 Editor widget is automatically created, but not focused unless focus is
933 true. This will generate wxEVT_PG_SELECT event.
934 @param id
935 Property to select.
936 @return
937 True if selection finished successfully. Usually only fails if
938 current value in editor is not valid.
939 @see wxPropertyGrid::Unselect
940 */
941 bool SelectProperty( wxPGPropArg id, bool focus = false )
942 {
943 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
944 return DoSelectProperty(p,focus?wxPG_SEL_FOCUS:0);
945 }
946
947 /** Sets category caption background colour. */
948 void SetCaptionBackgroundColour(const wxColour& col);
949
950 /** Sets category caption text colour. */
951 void SetCaptionTextColour(const wxColour& col);
952
953 /** Sets default cell background colour - applies to property cells.
954 Note that appearance of editor widgets may not be affected.
955 */
956 void SetCellBackgroundColour(const wxColour& col);
957
958 /** Sets cell text colour for disabled properties.
959 */
960 void SetCellDisabledTextColour(const wxColour& col);
961
962 /** Sets default cell text colour - applies to property name and value text.
963 Note that appearance of editor widgets may not be affected.
964 */
965 void SetCellTextColour(const wxColour& col);
966
967 /** Set number of columns (2 or more).
968 */
969 void SetColumnCount( int colCount )
970 {
971 m_pState->SetColumnCount(colCount);
972 Refresh();
973 }
974
975 /**
976 Sets the 'current' category - Append will add non-category properties
977 under it.
978 */
979 void SetCurrentCategory( wxPGPropArg id )
980 {
981 wxPG_PROP_ARG_CALL_PROLOG()
982 wxPropertyCategory* pc = wxDynamicCast(p, wxPropertyCategory);
983 wxASSERT(pc);
984 m_pState->m_currentCategory = pc;
985 }
986
987 /** Sets colour of empty space below properties. */
988 void SetEmptySpaceColour(const wxColour& col);
989
990 /** Sets colour of lines between cells. */
991 void SetLineColour(const wxColour& col);
992
993 /** Sets background colour of margin. */
994 void SetMarginColour(const wxColour& col);
995
996 /**
997 Sets selection background colour - applies to selected property name
998 background.
999 */
1000 void SetSelectionBackgroundColour(const wxColour& col);
1001
1002 /**
1003 Sets selection foreground colour - applies to selected property name
1004 text.
1005 */
1006 void SetSelectionTextColour(const wxColour& col);
1007
1008 /** Sets x coordinate of the splitter.
1009 @remarks
1010 Splitter position cannot exceed grid size, and therefore setting it
1011 during form creation may fail as initial grid size is often smaller
1012 than desired splitter position, especially when sizers are being used.
1013 */
1014 void SetSplitterPosition( int newxpos, int col = 0 )
1015 {
1016 DoSetSplitterPosition_(newxpos, true, col);
1017 m_iFlags |= wxPG_FL_SPLITTER_PRE_SET;
1018 }
1019
1020 /**
1021 Sets the property sorting function.
1022
1023 @param sortFunction
1024 The sorting function to be used. It should return a value greater
1025 than 0 if position of p1 is after p2. So, for instance, when
1026 comparing property names, you can use following implementation:
1027
1028 @code
1029 int MyPropertySortFunction(wxPropertyGrid* propGrid,
1030 wxPGProperty* p1,
1031 wxPGProperty* p2)
1032 {
1033 return p1->GetBaseName().compare( p2->GetBaseName() );
1034 }
1035 @endcode
1036
1037 @remarks
1038 Default property sort function sorts properties by their labels
1039 (case-insensitively).
1040
1041 @see GetSortFunction, wxPropertyGridInterface::Sort,
1042 wxPropertyGridInterface::SortChildren
1043 */
1044 void SetSortFunction( wxPGSortCallback sortFunction )
1045 {
1046 m_sortFunction = sortFunction;
1047 }
1048
1049 /**
1050 Returns the property sort function (default is @NULL).
1051
1052 @see SetSortFunction
1053 */
1054 wxPGSortCallback GetSortFunction() const
1055 {
1056 return m_sortFunction;
1057 }
1058
1059 /** Set virtual width for this particular page. Width -1 indicates that the
1060 virtual width should be disabled. */
1061 void SetVirtualWidth( int width );
1062
1063 /**
1064 Moves splitter as left as possible, while still allowing all
1065 labels to be shown in full.
1066
1067 @param privateChildrenToo
1068 If @false, will still allow private children to be cropped.
1069 */
1070 void SetSplitterLeft( bool privateChildrenToo = false )
1071 {
1072 m_pState->SetSplitterLeft(privateChildrenToo);
1073 }
1074
1075 /** Sets vertical spacing. Can be 1, 2, or 3 - a value relative to font
1076 height. Value of 2 should be default on most platforms.
1077 */
1078 void SetVerticalSpacing( int vspacing )
1079 {
1080 m_vspacing = (unsigned char)vspacing;
1081 CalculateFontAndBitmapStuff( vspacing );
1082 if ( !m_pState->m_itemsAdded ) Refresh();
1083 }
1084
1085 /** Shows an brief error message that is related to a property. */
1086 void ShowPropertyError( wxPGPropArg id, const wxString& msg )
1087 {
1088 wxPG_PROP_ARG_CALL_PROLOG()
1089 DoShowPropertyError(p, msg);
1090 }
1091
1092 /////////////////////////////////////////////////////////////////
1093 //
1094 // Following methods do not need to be (currently) documented
1095 //
1096 /////////////////////////////////////////////////////////////////
1097
1098 bool HasVirtualWidth() const
1099 { return (m_iFlags & wxPG_FL_HAS_VIRTUAL_WIDTH) ? true : false; }
1100
1101 const wxPGCommonValue* GetCommonValue( unsigned int i ) const
1102 {
1103 return (wxPGCommonValue*) m_commonValues[i];
1104 }
1105
1106 /** Returns number of common values.
1107 */
1108 unsigned int GetCommonValueCount() const
1109 {
1110 return (unsigned int) m_commonValues.size();
1111 }
1112
1113 /** Returns label of given common value.
1114 */
1115 wxString GetCommonValueLabel( unsigned int i ) const
1116 {
1117 wxASSERT( GetCommonValue(i) );
1118 return GetCommonValue(i)->GetLabel();
1119 }
1120
1121 /**
1122 Returns index of common value that will truly change value to
1123 unspecified.
1124 */
1125 int GetUnspecifiedCommonValue() const { return m_cvUnspecified; }
1126
1127 /** Set index of common value that will truly change value to unspecified.
1128 Using -1 will set none to have such effect.
1129 Default is 0.
1130 */
1131 void SetUnspecifiedCommonValue( int index ) { m_cvUnspecified = index; }
1132
1133 /**
1134 Shortcut for creating dialog-caller button. Used, for example, by
1135 wxFontProperty.
1136 @remarks
1137 This should only be called by properties.
1138 */
1139 wxWindow* GenerateEditorButton( const wxPoint& pos, const wxSize& sz );
1140
1141 /** Fixes position of wxTextCtrl-like control (wxSpinCtrl usually
1142 fits as one). Call after control has been created (but before
1143 shown).
1144 */
1145 void FixPosForTextCtrl( wxWindow* ctrl,
1146 const wxPoint& offset = wxPoint(0, 0) );
1147
1148 /** Shortcut for creating text editor widget.
1149 @param pos
1150 Same as pos given for CreateEditor.
1151 @param sz
1152 Same as sz given for CreateEditor.
1153 @param value
1154 Initial text for wxTextCtrl.
1155 @param secondary
1156 If right-side control, such as button, also created, then create it
1157 first and pass it as this parameter.
1158 @param extraStyle
1159 Extra style flags to pass for wxTextCtrl.
1160 @remarks
1161 Note that this should generally be called only by new classes derived
1162 from wxPGProperty.
1163 */
1164 wxWindow* GenerateEditorTextCtrl( const wxPoint& pos,
1165 const wxSize& sz,
1166 const wxString& value,
1167 wxWindow* secondary,
1168 int extraStyle = 0,
1169 int maxLen = 0 );
1170
1171 /* Generates both textctrl and button.
1172 */
1173 wxWindow* GenerateEditorTextCtrlAndButton( const wxPoint& pos,
1174 const wxSize& sz, wxWindow** psecondary, int limited_editing,
1175 wxPGProperty* property );
1176
1177 /** Generates position for a widget editor dialog box.
1178 @param p
1179 Property for which dialog is positioned.
1180 @param sz
1181 Known or over-approximated size of the dialog.
1182 @return
1183 Position for dialog.
1184 */
1185 wxPoint GetGoodEditorDialogPosition( wxPGProperty* p,
1186 const wxSize& sz );
1187
1188 // Converts escape sequences in src_str to newlines,
1189 // tabs, etc. and copies result to dst_str.
1190 static wxString& ExpandEscapeSequences( wxString& dst_str,
1191 wxString& src_str );
1192
1193 // Converts newlines, tabs, etc. in src_str to escape
1194 // sequences, and copies result to dst_str.
1195 static wxString& CreateEscapeSequences( wxString& dst_str,
1196 wxString& src_str );
1197
1198 /**
1199 Returns rectangle that fully contains properties between and including
1200 p1 and p2.
1201 */
1202 wxRect GetPropertyRect( const wxPGProperty* p1,
1203 const wxPGProperty* p2 ) const;
1204
1205 /** Returns pointer to current active primary editor control (NULL if none).
1206 */
1207 wxWindow* GetEditorControl() const;
1208
1209 wxWindow* GetPrimaryEditor() const
1210 {
1211 return GetEditorControl();
1212 }
1213
1214 /**
1215 Returns pointer to current active secondary editor control (NULL if
1216 none).
1217 */
1218 wxWindow* GetEditorControlSecondary() const
1219 {
1220 return m_wndEditor2;
1221 }
1222
1223 /**
1224 Refreshes any active editor control.
1225 */
1226 void RefreshEditor();
1227
1228 // Events from editor controls are forward to this function
1229 void HandleCustomEditorEvent( wxEvent &event );
1230
1231 #ifndef SWIG
1232
1233 /**
1234 Generates contents for string dst based on the contents of
1235 wxArrayString src.
1236
1237 Format will be "(preDelim)str1(postDelim) (preDelim)str2(postDelim) and
1238 so on. Set flags to 1 inorder to convert backslashes to double-back-
1239 slashes and "(preDelims)"'s to "(preDelims)".
1240 */
1241 static void ArrayStringToString( wxString& dst, const wxArrayString& src,
1242 wxChar preDelim, wxChar postDelim,
1243 int flags );
1244
1245 // Mostly useful for page switching.
1246 void SwitchState( wxPropertyGridPageState* pNewState );
1247
1248 long GetInternalFlags() const { return m_iFlags; }
1249 bool HasInternalFlag( long flag ) const
1250 { return (m_iFlags & flag) ? true : false; }
1251 void SetInternalFlag( long flag ) { m_iFlags |= flag; }
1252 void ClearInternalFlag( long flag ) { m_iFlags &= ~(flag); }
1253 void IncFrozen() { m_frozen++; }
1254 void DecFrozen() { m_frozen--; }
1255
1256 void OnComboItemPaint( const wxPGComboBox* pCb,
1257 int item,
1258 wxDC* pDc,
1259 wxRect& rect,
1260 int flags );
1261
1262 /** Standardized double-to-string conversion.
1263 */
1264 static void DoubleToString( wxString& target,
1265 double value,
1266 int precision,
1267 bool removeZeroes,
1268 wxString* precTemplate );
1269
1270 /**
1271 Call this from wxPGProperty::OnEvent() to cause property value to be
1272 changed after the function returns (with true as return value).
1273 ValueChangeInEvent() must be used if you wish the application to be
1274 able to use wxEVT_PG_CHANGING to potentially veto the given value.
1275 */
1276 void ValueChangeInEvent( wxVariant variant )
1277 {
1278 m_changeInEventValue = variant;
1279 m_iFlags |= wxPG_FL_VALUE_CHANGE_IN_EVENT;
1280 }
1281
1282 /** Returns true if given event is from first of an array of buttons
1283 (as can be in case when wxPGMultiButton is used).
1284 */
1285 bool IsMainButtonEvent( const wxEvent& event )
1286 {
1287 return (event.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED)
1288 && (m_wndSecId == event.GetId());
1289 }
1290
1291 /** Pending value is expected to be passed in PerformValidation().
1292 */
1293 virtual bool DoPropertyChanged( wxPGProperty* p,
1294 unsigned int selFlags = 0 );
1295
1296 /** Called when validation for given property fails.
1297 @param invalidValue
1298 Value which failed in validation.
1299 @return
1300 Return true if user is allowed to change to another property even
1301 if current has invalid value.
1302 @remarks
1303 To add your own validation failure behavior, override
1304 wxPropertyGrid::DoOnValidationFailure().
1305 */
1306 bool OnValidationFailure( wxPGProperty* property,
1307 wxVariant& invalidValue );
1308
1309 /** Called to indicate property and editor has valid value now.
1310 */
1311 void OnValidationFailureReset( wxPGProperty* property )
1312 {
1313 if ( property && property->HasFlag(wxPG_PROP_INVALID_VALUE) )
1314 {
1315 DoOnValidationFailureReset(property);
1316 property->ClearFlag(wxPG_PROP_INVALID_VALUE);
1317 }
1318 m_validationInfo.m_failureMessage.clear();
1319 }
1320
1321 /** Override in derived class to display error messages in custom manner
1322 (these message usually only result from validation failure).
1323 */
1324 virtual void DoShowPropertyError( wxPGProperty* property,
1325 const wxString& msg );
1326
1327 /** Override to customize property validation failure behavior.
1328 @param invalidValue
1329 Value which failed in validation.
1330 @return
1331 Return true if user is allowed to change to another property even
1332 if current has invalid value.
1333 */
1334 virtual bool DoOnValidationFailure( wxPGProperty* property,
1335 wxVariant& invalidValue );
1336
1337 /** Override to customize resetting of property validation failure status.
1338 @remarks
1339 Property is guaranteed to have flag wxPG_PROP_INVALID_VALUE set.
1340 */
1341 virtual void DoOnValidationFailureReset( wxPGProperty* property );
1342
1343 int GetSpacingY() const { return m_spacingy; }
1344
1345 /**
1346 Must be called in wxPGEditor::CreateControls() if primary editor window
1347 is wxTextCtrl, just before textctrl is created.
1348 @param text
1349 Initial text value of created wxTextCtrl.
1350 */
1351 void SetupTextCtrlValue( const wxString text ) { m_prevTcValue = text; }
1352
1353 /**
1354 Unfocuses or closes editor if one was open, but does not deselect
1355 property.
1356 */
1357 bool UnfocusEditor();
1358
1359 virtual void SetWindowStyleFlag( long style );
1360
1361 void DrawItems( const wxPGProperty* p1, const wxPGProperty* p2 );
1362
1363 void DrawItem( wxPGProperty* p )
1364 {
1365 DrawItems(p,p);
1366 }
1367
1368 virtual void DrawItemAndChildren( wxPGProperty* p );
1369
1370 /**
1371 Draws item, children, and consequtive parents as long as category is
1372 not met.
1373 */
1374 void DrawItemAndValueRelated( wxPGProperty* p );
1375
1376 protected:
1377
1378 /**
1379 wxPropertyGridPageState used by the grid is created here.
1380
1381 If grid is used in wxPropertyGridManager, there is no point overriding
1382 this - instead, set custom wxPropertyGridPage classes.
1383 */
1384 virtual wxPropertyGridPageState* CreateState() const;
1385
1386 enum PerformValidationFlags
1387 {
1388 SendEvtChanging = 0x0001,
1389 IsStandaloneValidation = 0x0002 // Not called in response to event
1390 };
1391
1392 /**
1393 Runs all validation functionality (includes sending wxEVT_PG_CHANGING).
1394 Returns true if all tests passed. Implement in derived class to
1395 add additional validation behavior.
1396 */
1397 virtual bool PerformValidation( wxPGProperty* p,
1398 wxVariant& pendingValue,
1399 int flags = SendEvtChanging );
1400
1401 public:
1402
1403 // Control font changer helper.
1404 void SetCurControlBoldFont();
1405
1406 wxPGCell& GetPropertyDefaultCell()
1407 {
1408 return m_propertyDefaultCell;
1409 }
1410
1411 wxPGCell& GetCategoryDefaultCell()
1412 {
1413 return m_categoryDefaultCell;
1414 }
1415
1416 //
1417 // Public methods for semi-public use
1418 // (not protected for optimization)
1419 //
1420 bool DoSelectProperty( wxPGProperty* p, unsigned int flags = 0 );
1421
1422 // Overridden functions.
1423 virtual bool Destroy();
1424 // Returns property at given y coordinate (relative to grid's top left).
1425 wxPGProperty* GetItemAtY( int y ) const { return DoGetItemAtY(y); }
1426
1427 virtual void Refresh( bool eraseBackground = true,
1428 const wxRect *rect = (const wxRect *) NULL );
1429 virtual bool SetFont( const wxFont& font );
1430 #if wxPG_SUPPORT_TOOLTIPS
1431 void SetToolTip( const wxString& tipString );
1432 #endif
1433 virtual void Freeze();
1434 virtual void SetExtraStyle( long exStyle );
1435 virtual void Thaw();
1436
1437
1438 protected:
1439 virtual wxSize DoGetBestSize() const;
1440
1441 #ifndef wxPG_ICON_WIDTH
1442 wxBitmap *m_expandbmp, *m_collbmp;
1443 #endif
1444
1445 wxCursor *m_cursorSizeWE;
1446
1447 /** wxWindow pointers to editor control(s). */
1448 wxWindow *m_wndEditor;
1449 wxWindow *m_wndEditor2;
1450
1451 /** wxPGCanvas instance. */
1452 wxPanel *m_canvas;
1453
1454 #if wxPG_DOUBLE_BUFFER
1455 wxBitmap *m_doubleBuffer;
1456 #endif
1457
1458 /** Local time ms when control was created. */
1459 wxLongLong m_timeCreated;
1460
1461 /** wxPGProperty::OnEvent can change value by setting this. */
1462 wxVariant m_changeInEventValue;
1463
1464 /** Id of m_wndEditor2, or its first child, if any. */
1465 int m_wndSecId;
1466
1467 /** Extra Y spacing between the items. */
1468 int m_spacingy;
1469
1470 /** Control client area width; updated on resize. */
1471 int m_width;
1472
1473 /** Control client area height; updated on resize. */
1474 int m_height;
1475
1476 /** Current non-client width (needed when auto-centering). */
1477 int m_ncWidth;
1478
1479 /** Non-client width (auto-centering helper). */
1480 //int m_fWidth;
1481
1482 /** Previously recorded scroll start position. */
1483 int m_prevVY;
1484
1485 /**
1486 The gutter spacing in front and back of the image.
1487 This determines the amount of spacing in front of each item
1488 */
1489 int m_gutterWidth;
1490
1491 /** Includes separator line. */
1492 int m_lineHeight;
1493
1494 /** Gutter*2 + image width. */
1495 int m_marginWidth;
1496
1497 // y spacing for expand/collapse button.
1498 int m_buttonSpacingY;
1499
1500 /** Extra margin for expanded sub-group items. */
1501 int m_subgroup_extramargin;
1502
1503 /**
1504 The image width of the [+] icon.
1505
1506 This is also calculated in the gutter
1507 */
1508 int m_iconWidth;
1509
1510 #ifndef wxPG_ICON_WIDTH
1511
1512 /**
1513 The image height of the [+] icon.
1514
1515 This is calculated as minimal size and to align
1516 */
1517 int m_iconHeight;
1518 #endif
1519
1520 /** Current cursor id. */
1521 int m_curcursor;
1522
1523 /**
1524 This captionFont is made equal to the font of the wxScrolledWindow.
1525
1526 As extra the bold face is set on it when this is wanted by the user
1527 (see flags)
1528 */
1529 wxFont m_captionFont;
1530
1531 int m_fontHeight; // Height of the font.
1532
1533 /** m_splitterx when drag began. */
1534 int m_startingSplitterX;
1535
1536 /**
1537 Index to splitter currently being dragged (0=one after the first
1538 column).
1539 */
1540 int m_draggedSplitter;
1541
1542 /** Changed property, calculated in PerformValidation(). */
1543 wxPGProperty* m_chgInfo_changedProperty;
1544
1545 /**
1546 Lowest property for which editing happened, but which does not have
1547 aggregate parent
1548 */
1549 wxPGProperty* m_chgInfo_baseChangedProperty;
1550
1551 /** Changed property value, calculated in PerformValidation(). */
1552 wxVariant m_chgInfo_pendingValue;
1553
1554 /** Passed to SetValue. */
1555 wxVariant m_chgInfo_valueList;
1556
1557 /** Validation information. */
1558 wxPGValidationInfo m_validationInfo;
1559
1560 /** Actions and keys that trigger them. */
1561 wxPGHashMapI2I m_actionTriggers;
1562
1563 //
1564 // Temporary values
1565 //
1566
1567 /** Bits are used to indicate which colours are customized. */
1568 unsigned short m_coloursCustomized;
1569
1570 /** x - m_splitterx. */
1571 signed char m_dragOffset;
1572
1573 /** 0 = not dragging, 1 = drag just started, 2 = drag in progress */
1574 unsigned char m_dragStatus;
1575
1576 /** 0 = margin, 1 = label, 2 = value. */
1577 unsigned char m_mouseSide;
1578
1579 /** True when editor control is focused. */
1580 unsigned char m_editorFocused;
1581
1582 /** 1 if m_latsCaption is also the bottommost caption. */
1583 //unsigned char m_lastCaptionBottomnest;
1584
1585 /** Set to 1 when graphics frozen. */
1586 unsigned char m_frozen;
1587
1588 unsigned char m_vspacing;
1589
1590 // Used to track when Alt/Ctrl+Key was consumed.
1591 unsigned char m_keyComboConsumed;
1592
1593 /** 1 if in DoPropertyChanged() */
1594 unsigned char m_inDoPropertyChanged;
1595
1596 /** 1 if in CommitChangesFromEditor() */
1597 unsigned char m_inCommitChangesFromEditor;
1598
1599 /** 1 if in DoSelectProperty() */
1600 unsigned char m_inDoSelectProperty;
1601
1602 wxPGVFBFlags m_permanentValidationFailureBehavior; // Set by app
1603
1604 /** Internal flags - see wxPG_FL_XXX constants. */
1605 wxUint32 m_iFlags;
1606
1607 /** When drawing next time, clear this many item slots at the end. */
1608 int m_clearThisMany;
1609
1610 /** Pointer to selected property. Note that this is duplicated in
1611 m_state for better transiency between pages so that the selected
1612 item can be retained.
1613 */
1614 wxPGProperty* m_selected;
1615
1616 // pointer to property that has mouse hovering
1617 wxPGProperty* m_propHover;
1618
1619 // EventObject for wxPropertyGridEvents
1620 wxWindow* m_eventObject;
1621
1622 // What (global) window is currently focused (needed to resolve event
1623 // handling mess).
1624 wxWindow* m_curFocused;
1625
1626 // wxPGTLWHandler
1627 wxEvtHandler* m_tlwHandler;
1628
1629 // Top level parent
1630 wxWindow* m_tlp;
1631
1632 // Sort function
1633 wxPGSortCallback m_sortFunction;
1634
1635 // y coordinate of property that mouse hovering
1636 int m_propHoverY;
1637 // Which column's editor is selected (usually 1)?
1638 int m_selColumn;
1639
1640 // x relative to splitter (needed for resize).
1641 int m_ctrlXAdjust;
1642
1643 // lines between cells
1644 wxColour m_colLine;
1645 // property labels and values are written in this colour
1646 wxColour m_colPropFore;
1647 // or with this colour when disabled
1648 wxColour m_colDisPropFore;
1649 // background for m_colPropFore
1650 wxColour m_colPropBack;
1651 // text color for captions
1652 wxColour m_colCapFore;
1653 // background color for captions
1654 wxColour m_colCapBack;
1655 // foreground for selected property
1656 wxColour m_colSelFore;
1657 // background for selected property (actually use background color when
1658 // control out-of-focus)
1659 wxColour m_colSelBack;
1660 // background colour for margin
1661 wxColour m_colMargin;
1662 // background colour for empty space below the grid
1663 wxColour m_colEmptySpace;
1664
1665 // Default property colours
1666 wxPGCell m_propertyDefaultCell;
1667
1668 // Default property category
1669 wxPGCell m_categoryDefaultCell;
1670
1671 // Backup of selected property's cells
1672 wxVector<wxPGCell> m_propCellsBackup;
1673
1674 // NB: These *cannot* be moved to globals.
1675
1676 // labels when properties use common values
1677 wxVector<wxPGCommonValue*> m_commonValues;
1678
1679 // Which cv selection really sets value to unspecified?
1680 int m_cvUnspecified;
1681
1682 // Used to skip excess text editor events
1683 wxString m_prevTcValue;
1684
1685 protected:
1686
1687 // Sets some members to defaults (called constructors).
1688 void Init1();
1689
1690 // Initializes some members (called by Create and complex constructor).
1691 void Init2();
1692
1693 void OnPaint(wxPaintEvent &event );
1694
1695 // main event receivers
1696 void OnMouseMove( wxMouseEvent &event );
1697 void OnMouseMoveBottom( wxMouseEvent &event );
1698 void OnMouseClick( wxMouseEvent &event );
1699 void OnMouseRightClick( wxMouseEvent &event );
1700 void OnMouseDoubleClick( wxMouseEvent &event );
1701 void OnMouseUp( wxMouseEvent &event );
1702 void OnKey( wxKeyEvent &event );
1703 void OnResize( wxSizeEvent &event );
1704
1705 // event handlers
1706 bool HandleMouseMove( int x, unsigned int y, wxMouseEvent &event );
1707 bool HandleMouseClick( int x, unsigned int y, wxMouseEvent &event );
1708 bool HandleMouseRightClick( int x, unsigned int y, wxMouseEvent &event );
1709 bool HandleMouseDoubleClick( int x, unsigned int y, wxMouseEvent &event );
1710 bool HandleMouseUp( int x, unsigned int y, wxMouseEvent &event );
1711 void HandleKeyEvent( wxKeyEvent &event, bool fromChild );
1712
1713 void OnMouseEntry( wxMouseEvent &event );
1714
1715 void OnIdle( wxIdleEvent &event );
1716 void OnFocusEvent( wxFocusEvent &event );
1717 void OnChildFocusEvent( wxChildFocusEvent& event );
1718
1719 bool OnMouseCommon( wxMouseEvent &event, int* px, int *py );
1720 bool OnMouseChildCommon( wxMouseEvent &event, int* px, int *py );
1721
1722 // sub-control event handlers
1723 void OnMouseClickChild( wxMouseEvent &event );
1724 void OnMouseRightClickChild( wxMouseEvent &event );
1725 void OnMouseMoveChild( wxMouseEvent &event );
1726 void OnMouseUpChild( wxMouseEvent &event );
1727 void OnChildKeyDown( wxKeyEvent &event );
1728
1729 void OnCaptureChange( wxMouseCaptureChangedEvent &event );
1730
1731 void OnScrollEvent( wxScrollWinEvent &event );
1732
1733 void OnSysColourChanged( wxSysColourChangedEvent &event );
1734
1735 protected:
1736
1737 /**
1738 Adjust the centering of the bitmap icons (collapse / expand) when the
1739 caption font changes.
1740
1741 They need to be centered in the middle of the font, so a bit of deltaY
1742 adjustment is needed. On entry, m_captionFont must be set to window
1743 font. It will be modified properly.
1744 */
1745 void CalculateFontAndBitmapStuff( int vspacing );
1746
1747 wxRect GetEditorWidgetRect( wxPGProperty* p, int column ) const;
1748
1749 void CorrectEditorWidgetSizeX();
1750
1751 /** Called in RecalculateVirtualSize() to reposition control
1752 on virtual height changes.
1753 */
1754 void CorrectEditorWidgetPosY();
1755
1756 #ifdef __WXDEBUG__
1757 void _log_items();
1758 void OnScreenNote( const wxChar* format, ... );
1759 #endif
1760
1761 /** Deselect current selection, if any. Returns true if success
1762 (ie. validator did not intercept). */
1763 bool DoClearSelection();
1764
1765 int DoDrawItems( wxDC& dc,
1766 const wxRect* clipRect,
1767 bool isBuffered ) const;
1768
1769 /** Draws an expand/collapse (ie. +/-) button.
1770 */
1771 virtual void DrawExpanderButton( wxDC& dc, const wxRect& rect,
1772 wxPGProperty* property ) const;
1773
1774 /** Draws items from topitemy to bottomitemy */
1775 void DrawItems( wxDC& dc, unsigned int topitemy, unsigned int bottomitemy,
1776 const wxRect* clip_rect = (const wxRect*) NULL );
1777
1778 // Translate wxKeyEvent to wxPG_ACTION_XXX
1779 int KeyEventToActions(wxKeyEvent &event, int* pSecond) const;
1780
1781 int KeyEventToAction(wxKeyEvent &event) const
1782 {
1783 return KeyEventToActions(event, NULL);
1784 }
1785
1786 void ImprovedClientToScreen( int* px, int* py );
1787
1788 // Called by focus event handlers. newFocused is the window that becomes
1789 // focused.
1790 void HandleFocusChange( wxWindow* newFocused );
1791
1792 /** Reloads all non-customized colours from system settings. */
1793 void RegainColours();
1794
1795 bool DoEditorValidate();
1796
1797 wxPGProperty* DoGetItemAtY( int y ) const;
1798
1799 void DoSetSplitterPosition_( int newxpos,
1800 bool refresh = true,
1801 int splitterIndex = 0,
1802 bool allPages = false );
1803
1804 void FreeEditors();
1805
1806 virtual bool DoExpand( wxPGProperty* p, bool sendEvent = false );
1807
1808 virtual bool DoCollapse( wxPGProperty* p, bool sendEvent = false );
1809
1810 // Returns nearest paint visible property (such that will be painted unless
1811 // window is scrolled or resized). If given property is paint visible, then
1812 // it itself will be returned.
1813 wxPGProperty* GetNearestPaintVisible( wxPGProperty* p ) const;
1814
1815 static void RegisterDefaultEditors();
1816
1817 // Sets up basic event handling for child control
1818 void SetupChildEventHandling( wxWindow* wnd );
1819
1820 void CustomSetCursor( int type, bool override = false );
1821
1822 /**
1823 Repositions scrollbar and underlying panel according to changed virtual
1824 size.
1825 */
1826 void RecalculateVirtualSize( int forceXPos = -1 );
1827
1828 void PrepareAfterItemsAdded();
1829
1830 bool SendEvent( int eventType,
1831 wxPGProperty* p,
1832 wxVariant* pValue = NULL,
1833 unsigned int selFlags = 0 );
1834
1835 void SetFocusOnCanvas();
1836
1837 bool DoHideProperty( wxPGProperty* p, bool hide, int flags );
1838
1839 private:
1840
1841 bool ButtonTriggerKeyTest( int action, wxKeyEvent& event );
1842
1843 DECLARE_EVENT_TABLE()
1844 #endif // #ifndef SWIG
1845 };
1846
1847 // -----------------------------------------------------------------------
1848 //
1849 // Bunch of inlines that need to resolved after all classes have been defined.
1850 //
1851
1852 #ifndef SWIG
1853 inline bool wxPropertyGridPageState::IsDisplayed() const
1854 {
1855 return ( this == m_pPropGrid->GetState() );
1856 }
1857
1858 inline unsigned int wxPropertyGridPageState::GetActualVirtualHeight() const
1859 {
1860 return DoGetRoot()->GetChildrenHeight(GetGrid()->GetRowHeight());
1861 }
1862 #endif
1863
1864 inline int wxPGProperty::GetDisplayedCommonValueCount() const
1865 {
1866 if ( HasFlag(wxPG_PROP_USES_COMMON_VALUE) )
1867 {
1868 wxPropertyGrid* pg = GetGrid();
1869 if ( pg )
1870 return (int) pg->GetCommonValueCount();
1871 }
1872 return 0;
1873 }
1874
1875 inline void wxPGProperty::SetEditor( const wxString& editorName )
1876 {
1877 m_customEditor = wxPropertyGridInterface::GetEditorByName(editorName);
1878 }
1879
1880 inline void wxPGProperty::SetName( const wxString& newName )
1881 {
1882 GetGrid()->SetPropertyName(this, newName);
1883 }
1884
1885 inline bool wxPGProperty::Hide( bool hide, int flags )
1886 {
1887 return GetGrid()->HideProperty(this, hide, flags);
1888 }
1889
1890 inline bool wxPGProperty::SetMaxLength( int maxLen )
1891 {
1892 return GetGrid()->SetPropertyMaxLength(this,maxLen);
1893 }
1894
1895 // -----------------------------------------------------------------------
1896
1897 #define wxPG_BASE_EVT_PRE_ID 1775
1898
1899 #ifndef SWIG
1900
1901 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_SELECTED, wxPropertyGridEvent );
1902 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_CHANGING, wxPropertyGridEvent );
1903 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_CHANGED, wxPropertyGridEvent );
1904 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_HIGHLIGHTED, wxPropertyGridEvent );
1905 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_RIGHT_CLICK, wxPropertyGridEvent );
1906 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_PAGE_CHANGED, wxPropertyGridEvent );
1907 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_ITEM_COLLAPSED, wxPropertyGridEvent );
1908 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_ITEM_EXPANDED, wxPropertyGridEvent );
1909 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID, wxEVT_PG_DOUBLE_CLICK, wxPropertyGridEvent );
1910
1911 #else
1912 enum {
1913 wxEVT_PG_SELECTED = wxPG_BASE_EVT_PRE_ID,
1914 wxEVT_PG_CHANGING,
1915 wxEVT_PG_CHANGED,
1916 wxEVT_PG_HIGHLIGHTED,
1917 wxEVT_PG_RIGHT_CLICK,
1918 wxEVT_PG_PAGE_CHANGED,
1919 wxEVT_PG_ITEM_COLLAPSED,
1920 wxEVT_PG_ITEM_EXPANDED,
1921 wxEVT_PG_DOUBLE_CLICK
1922 };
1923 #endif
1924
1925
1926 #define wxPG_BASE_EVT_TYPE wxEVT_PG_SELECTED
1927 #define wxPG_MAX_EVT_TYPE (wxPG_BASE_EVT_TYPE+30)
1928
1929
1930 #ifndef SWIG
1931 typedef void (wxEvtHandler::*wxPropertyGridEventFunction)(wxPropertyGridEvent&);
1932
1933 #define EVT_PG_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_SELECTED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1934 #define EVT_PG_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGING, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1935 #define EVT_PG_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1936 #define EVT_PG_HIGHLIGHTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_HIGHLIGHTED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1937 #define EVT_PG_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_RIGHT_CLICK, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1938 #define EVT_PG_DOUBLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_DOUBLE_CLICK, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1939 #define EVT_PG_PAGE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_PAGE_CHANGED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1940 #define EVT_PG_ITEM_COLLAPSED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_COLLAPSED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1941 #define EVT_PG_ITEM_EXPANDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_EXPANDED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
1942
1943 #define wxPropertyGridEventHandler(fn) \
1944 wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn )
1945
1946 #endif
1947
1948
1949 /** @class wxPropertyGridEvent
1950
1951 A propertygrid event holds information about events associated with
1952 wxPropertyGrid objects.
1953
1954 @library{wxpropgrid}
1955 @category{propgrid}
1956 */
1957 class WXDLLIMPEXP_PROPGRID wxPropertyGridEvent : public wxCommandEvent
1958 {
1959 public:
1960
1961 /** Constructor. */
1962 wxPropertyGridEvent(wxEventType commandType=0, int id=0);
1963 #ifndef SWIG
1964 /** Copy constructor. */
1965 wxPropertyGridEvent(const wxPropertyGridEvent& event);
1966 #endif
1967 /** Destructor. */
1968 ~wxPropertyGridEvent();
1969
1970 /** Copyer. */
1971 virtual wxEvent* Clone() const;
1972
1973 wxPGProperty* GetMainParent() const
1974 {
1975 wxASSERT(m_property);
1976 return m_property->GetMainParent();
1977 }
1978
1979 /** Returns id of associated property. */
1980 wxPGProperty* GetProperty() const
1981 {
1982 return m_property;
1983 }
1984
1985 wxPGValidationInfo& GetValidationInfo()
1986 {
1987 wxASSERT(m_validationInfo);
1988 return *m_validationInfo;
1989 }
1990
1991 /** Returns true if you can veto the action that the event is signaling.
1992 */
1993 bool CanVeto() const { return m_canVeto; }
1994
1995 /**
1996 Call this from your event handler to veto action that the event is
1997 signaling.
1998
1999 You can only veto a shutdown if wxPropertyGridEvent::CanVeto returns
2000 true.
2001 @remarks
2002 Currently only wxEVT_PG_CHANGING supports vetoing.
2003 */
2004 void Veto( bool veto = true ) { m_wasVetoed = veto; }
2005
2006 /** Returns value that is about to be set for wxEVT_PG_CHANGING.
2007 */
2008 const wxVariant& GetValue() const
2009 {
2010 wxASSERT_MSG( m_validationInfo,
2011 "Only call GetValue from a handler "
2012 "of event type that supports it" );
2013 return m_validationInfo->GetValue();
2014 }
2015
2016 /**
2017 Set override validation failure behavior.
2018
2019 Only effective if Veto was also called, and only allowed if event type
2020 is wxEVT_PG_CHANGING.
2021 */
2022 void SetValidationFailureBehavior( wxPGVFBFlags flags )
2023 {
2024 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2025 m_validationInfo->SetFailureBehavior( flags );
2026 }
2027
2028 /** Sets custom failure message for this time only. Only applies if
2029 wxPG_VFB_SHOW_MESSAGE is set in validation failure flags.
2030 */
2031 void SetValidationFailureMessage( const wxString& message )
2032 {
2033 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2034 m_validationInfo->SetFailureMessage( message );
2035 }
2036
2037 #ifndef SWIG
2038 wxPGVFBFlags GetValidationFailureBehavior() const
2039 {
2040 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2041 return m_validationInfo->GetFailureBehavior();
2042 }
2043
2044 void SetCanVeto( bool canVeto ) { m_canVeto = canVeto; }
2045 bool WasVetoed() const { return m_wasVetoed; }
2046
2047 /** Changes the associated property. */
2048 void SetProperty( wxPGProperty* p ) { m_property = p; }
2049
2050 void SetPropertyGrid( wxPropertyGrid* pg ) { m_pg = pg; }
2051
2052 void SetupValidationInfo()
2053 {
2054 wxASSERT(m_pg);
2055 wxASSERT( GetEventType() == wxEVT_PG_CHANGING );
2056 m_validationInfo = &m_pg->GetValidationInfo();
2057 }
2058
2059 private:
2060 void Init();
2061 DECLARE_DYNAMIC_CLASS(wxPropertyGridEvent)
2062
2063 wxPGProperty* m_property;
2064 wxPropertyGrid* m_pg;
2065 wxPGValidationInfo* m_validationInfo;
2066
2067 bool m_canVeto;
2068 bool m_wasVetoed;
2069
2070 #endif
2071 };
2072
2073
2074 // -----------------------------------------------------------------------
2075
2076 /** @class wxPropertyGridPopulator
2077 @ingroup classes
2078 Allows populating wxPropertyGrid from arbitrary text source.
2079 */
2080 class WXDLLIMPEXP_PROPGRID wxPropertyGridPopulator
2081 {
2082 public:
2083 /** Default constructor.
2084 */
2085 wxPropertyGridPopulator();
2086
2087 /** Destructor. */
2088 virtual ~wxPropertyGridPopulator();
2089
2090 void SetState( wxPropertyGridPageState* state );
2091
2092 void SetGrid( wxPropertyGrid* pg );
2093
2094 /** Appends a new property under bottommost parent.
2095 @param propClass
2096 Property class as string.
2097 */
2098 wxPGProperty* Add( const wxString& propClass,
2099 const wxString& propLabel,
2100 const wxString& propName,
2101 const wxString* propValue,
2102 wxPGChoices* pChoices = NULL );
2103
2104 /**
2105 Pushes property to the back of parent array (ie it becomes bottommost
2106 parent), and starts scanning/adding children for it.
2107
2108 When finished, parent array is returned to the original state.
2109 */
2110 void AddChildren( wxPGProperty* property );
2111
2112 /** Adds attribute to the bottommost property.
2113 @param type
2114 Allowed values: "string", (same as string), "int", "bool". Empty string
2115 mean autodetect.
2116 */
2117 bool AddAttribute( const wxString& name,
2118 const wxString& type,
2119 const wxString& value );
2120
2121 /** Called once in AddChildren.
2122 */
2123 virtual void DoScanForChildren() = 0;
2124
2125 /**
2126 Returns id of parent property for which children can currently be
2127 added.
2128 */
2129 wxPGProperty* GetCurParent() const
2130 {
2131 return (wxPGProperty*) m_propHierarchy[m_propHierarchy.size()-1];
2132 }
2133
2134 wxPropertyGridPageState* GetState() { return m_state; }
2135 const wxPropertyGridPageState* GetState() const { return m_state; }
2136
2137 /** Like wxString::ToLong, except allows N% in addition of N.
2138 */
2139 static bool ToLongPCT( const wxString& s, long* pval, long max );
2140
2141 /** Parses strings of format "choice1"[=value1] ... "choiceN"[=valueN] into
2142 wxPGChoices. Registers parsed result using idString (if not empty).
2143 Also, if choices with given id already registered, then don't parse but
2144 return those choices instead.
2145 */
2146 wxPGChoices ParseChoices( const wxString& choicesString,
2147 const wxString& idString );
2148
2149 /** Implement in derived class to do custom process when an error occurs.
2150 Default implementation uses wxLogError.
2151 */
2152 virtual void ProcessError( const wxString& msg );
2153
2154 protected:
2155
2156 /** Used property grid. */
2157 wxPropertyGrid* m_pg;
2158
2159 /** Used property grid state. */
2160 wxPropertyGridPageState* m_state;
2161
2162 /** Tree-hierarchy of added properties (that can have children). */
2163 wxArrayPGProperty m_propHierarchy;
2164
2165 /** Hashmap for string-id to wxPGChoicesData mapping. */
2166 wxPGHashMapS2P m_dictIdChoices;
2167 };
2168
2169 // -----------------------------------------------------------------------
2170
2171 //
2172 // Undefine macros that are not needed outside propertygrid sources
2173 //
2174 #ifndef __wxPG_SOURCE_FILE__
2175 #undef wxPG_FL_DESC_REFRESH_REQUIRED
2176 #undef wxPG_FL_SCROLLBAR_DETECTED
2177 #undef wxPG_FL_CREATEDSTATE
2178 #undef wxPG_FL_NOSTATUSBARHELP
2179 #undef wxPG_FL_SCROLLED
2180 #undef wxPG_FL_FOCUS_INSIDE_CHILD
2181 #undef wxPG_FL_FOCUS_INSIDE
2182 #undef wxPG_FL_MOUSE_INSIDE_CHILD
2183 #undef wxPG_FL_CUR_USES_CUSTOM_IMAGE
2184 #undef wxPG_FL_PRIMARY_FILLS_ENTIRE
2185 #undef wxPG_FL_VALUE_MODIFIED
2186 #undef wxPG_FL_MOUSE_INSIDE
2187 #undef wxPG_FL_FOCUSED
2188 #undef wxPG_FL_MOUSE_CAPTURED
2189 #undef wxPG_FL_INITIALIZED
2190 #undef wxPG_FL_ACTIVATION_BY_CLICK
2191 #undef wxPG_FL_DONT_CENTER_SPLITTER
2192 #undef wxPG_SUPPORT_TOOLTIPS
2193 #undef wxPG_DOUBLE_BUFFER
2194 #undef wxPG_ICON_WIDTH
2195 #undef wxPG_USE_RENDERER_NATIVE
2196 // Following are needed by the manager headers
2197 // #undef const wxString&
2198 #endif
2199
2200 // -----------------------------------------------------------------------
2201
2202 #endif
2203
2204 #endif // _WX_PROPGRID_PROPGRID_H_
2205