1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgrid/propgrid.h
3 // Purpose: wxPropertyGrid
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PROPGRID_PROPGRID_H_
13 #define _WX_PROPGRID_PROPGRID_H_
17 #include "wx/thread.h"
18 #include "wx/dcclient.h"
19 #include "wx/scrolwin.h"
20 #include "wx/tooltip.h"
21 #include "wx/datetime.h"
23 #include "wx/propgrid/property.h"
24 #include "wx/propgrid/propgridiface.h"
28 extern WXDLLIMPEXP_DATA_PROPGRID(const char) wxPropertyGridNameStr
[];
33 // -----------------------------------------------------------------------
35 // -----------------------------------------------------------------------
39 // This is required for sharing common global variables.
40 class WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass
44 wxPGGlobalVarsClass();
45 ~wxPGGlobalVarsClass();
48 // Critical section for handling the globals. Generally it is not needed
49 // since GUI code is supposed to be in single thread. However,
50 // we do want the user to be able to convey wxPropertyGridEvents to other
52 wxCriticalSection m_critSect
;
55 // Used by advprops, but here to make things easier.
56 wxString m_pDefaultImageWildcard
;
58 // Map of editor class instances (keys are name string).
59 wxPGHashMapS2P m_mapEditorClasses
;
62 wxVector
<wxValidator
*> m_arrValidators
; // These wxValidators need to be freed
65 wxPGHashMapS2P m_dictPropertyClassInfo
; // PropertyName -> ClassInfo
67 wxPGChoices
* m_fontFamilyChoices
;
69 // Replace with your own to affect all properties using default renderer.
70 wxPGCellRenderer
* m_defaultRenderer
;
72 wxPGChoices m_boolChoices
;
74 wxVariant m_vEmptyString
;
76 wxVariant m_vMinusOne
;
80 // Cached constant strings
81 wxPGCachedString m_strstring
;
82 wxPGCachedString m_strlong
;
83 wxPGCachedString m_strbool
;
84 wxPGCachedString m_strlist
;
86 wxPGCachedString m_strDefaultValue
;
87 wxPGCachedString m_strMin
;
88 wxPGCachedString m_strMax
;
89 wxPGCachedString m_strUnits
;
90 wxPGCachedString m_strInlineHelp
;
92 // If true then some things are automatically translated
93 bool m_autoGetTranslation
;
95 // > 0 if errors cannot or should not be shown in statusbar etc.
98 int m_extraStyle
; // global extra style
102 int HasExtraStyle( int style
) const { return (m_extraStyle
& style
); }
105 extern WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass
* wxPGGlobalVars
;
107 #define wxPGVariant_EmptyString (wxPGGlobalVars->m_vEmptyString)
108 #define wxPGVariant_Zero (wxPGGlobalVars->m_vZero)
109 #define wxPGVariant_MinusOne (wxPGGlobalVars->m_vMinusOne)
110 #define wxPGVariant_True (wxPGGlobalVars->m_vTrue)
111 #define wxPGVariant_False (wxPGGlobalVars->m_vFalse)
113 #define wxPGVariant_Bool(A) (A?wxPGVariant_True:wxPGVariant_False)
115 // When wxPG is loaded dynamically after the application is already running
116 // then the built-in module system won't pick this one up. Add it manually.
117 WXDLLIMPEXP_PROPGRID
void wxPGInitResourceModule();
121 // -----------------------------------------------------------------------
123 /** @section propgrid_window_styles wxPropertyGrid Window Styles
125 SetWindowStyleFlag method can be used to modify some of these at run-time.
128 enum wxPG_WINDOW_STYLES
131 /** This will cause Sort() automatically after an item is added.
132 When inserting a lot of items in this mode, it may make sense to
133 use Freeze() before operations and Thaw() afterwards to increase
136 wxPG_AUTO_SORT
= 0x00000010,
138 /** Categories are not initially shown (even if added).
139 IMPORTANT NOTE: If you do not plan to use categories, then this
140 style will waste resources.
141 This flag can also be changed using wxPropertyGrid::EnableCategories method.
143 wxPG_HIDE_CATEGORIES
= 0x00000020,
145 /* This style combines non-categoric mode and automatic sorting.
147 wxPG_ALPHABETIC_MODE
= (wxPG_HIDE_CATEGORIES
|wxPG_AUTO_SORT
),
149 /** Modified values are shown in bold font. Changing this requires Refresh()
152 wxPG_BOLD_MODIFIED
= 0x00000040,
154 /** When wxPropertyGrid is resized, splitter moves to the center. This
155 behavior stops once the user manually moves the splitter.
157 wxPG_SPLITTER_AUTO_CENTER
= 0x00000080,
159 /** Display tooltips for cell text that cannot be shown completely. If
160 wxUSE_TOOLTIPS is 0, then this doesn't have any effect.
162 wxPG_TOOLTIPS
= 0x00000100,
164 /** Disables margin and hides all expand/collapse buttons that would appear
165 outside the margin (for sub-properties). Toggling this style automatically
166 expands all collapsed items.
168 wxPG_HIDE_MARGIN
= 0x00000200,
170 /** This style prevents user from moving the splitter.
172 wxPG_STATIC_SPLITTER
= 0x00000400,
174 /** Combination of other styles that make it impossible for user to modify
177 wxPG_STATIC_LAYOUT
= (wxPG_HIDE_MARGIN
|wxPG_STATIC_SPLITTER
),
179 /** Disables wxTextCtrl based editors for properties which
180 can be edited in another way.
182 Equals calling wxPropertyGrid::LimitPropertyEditing for all added
185 wxPG_LIMITED_EDITING
= 0x00000800,
187 /** wxPropertyGridManager only: Show toolbar for mode and page selection. */
188 wxPG_TOOLBAR
= 0x00001000,
190 /** wxPropertyGridManager only: Show adjustable text box showing description
191 or help text, if available, for currently selected property.
193 wxPG_DESCRIPTION
= 0x00002000,
195 /** wxPropertyGridManager only: don't show an internal border around
198 wxPG_NO_INTERNAL_BORDER
= 0x00004000
201 #if wxPG_COMPATIBILITY_1_4
202 // In wxPG 1.4 this was used to enable now-default theme border support
203 // in wxPropertyGridManager.
204 #define wxPG_THEME_BORDER 0x00000000
208 enum wxPG_EX_WINDOW_STYLES
212 NOTE: wxPG_EX_xxx are extra window styles and must be set using
213 SetExtraStyle() member function.
215 Speeds up switching to wxPG_HIDE_CATEGORIES mode. Initially, if
216 wxPG_HIDE_CATEGORIES is not defined, the non-categorized data storage is
217 not activated, and switching the mode first time becomes somewhat slower.
218 wxPG_EX_INIT_NOCAT activates the non-categorized data storage right away.
219 IMPORTANT NOTE: If you do plan not switching to non-categoric mode, or if
220 you don't plan to use categories at all, then using this style will result
221 in waste of resources.
224 wxPG_EX_INIT_NOCAT
= 0x00001000,
226 /** Extended window style that sets wxPropertyGridManager toolbar to not
229 wxPG_EX_NO_FLAT_TOOLBAR
= 0x00002000,
231 /** Shows alphabetic/categoric mode buttons from toolbar.
233 wxPG_EX_MODE_BUTTONS
= 0x00008000,
235 /** Show property help strings as tool tips instead as text on the status bar.
236 You can set the help strings using SetPropertyHelpString member function.
238 wxPG_EX_HELP_AS_TOOLTIPS
= 0x00010000,
240 /** Prevent TAB from focusing to wxButtons. This behavior was default
241 in version 1.2.0 and earlier.
242 NOTE! Tabbing to button doesn't work yet. Problem seems to be that on wxMSW
243 atleast the button doesn't properly propagate key events (yes, I'm using
246 //wxPG_EX_NO_TAB_TO_BUTTON = 0x00020000,
248 /** Allows relying on native double-buffering.
250 wxPG_EX_NATIVE_DOUBLE_BUFFERING
= 0x00080000,
252 /** Set this style to let user have ability to set values of properties to
253 unspecified state. Same as setting wxPG_PROP_AUTO_UNSPECIFIED for
256 wxPG_EX_AUTO_UNSPECIFIED_VALUES
= 0x00200000,
259 If this style is used, built-in attributes (such as wxPG_FLOAT_PRECISION
260 and wxPG_STRING_PASSWORD) are not stored into property's attribute storage
261 (thus they are not readable).
263 Note that this option is global, and applies to all wxPG property
266 wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
= 0x00400000,
268 /** Hides page selection buttons from toolbar.
270 wxPG_EX_HIDE_PAGE_BUTTONS
= 0x01000000,
272 /** Allows multiple properties to be selected by user (by pressing SHIFT
273 when clicking on a property, or by dragging with left mouse button
276 You can get array of selected properties with
277 wxPropertyGridInterface::GetSelectedProperties(). In multiple selection
278 mode wxPropertyGridInterface::GetSelection() returns
279 property which has editor active (usually the first one
280 selected). Other useful member functions are ClearSelection(),
281 AddToSelection() and RemoveFromSelection().
283 wxPG_EX_MULTIPLE_SELECTION
= 0x02000000,
286 This enables top-level window tracking which allows wxPropertyGrid to
287 notify the application of last-minute property value changes by user.
289 This style is not enabled by default because it may cause crashes when
290 wxPropertyGrid is used in with wxAUI or similar system.
292 @remarks If you are not in fact using any system that may change
293 wxPropertyGrid's top-level parent window on its own, then you
294 are recommended to enable this style.
296 wxPG_EX_ENABLE_TLP_TRACKING
= 0x04000000,
298 /** Don't show divider above toolbar, on Windows.
300 wxPG_EX_NO_TOOLBAR_DIVIDER
= 0x08000000,
302 /** Show a separator below the toolbar.
304 wxPG_EX_TOOLBAR_SEPARATOR
= 0x10000000
308 #if wxPG_COMPATIBILITY_1_4
309 #define wxPG_EX_DISABLE_TLP_TRACKING 0x00000000
312 /** Combines various styles.
314 #define wxPG_DEFAULT_STYLE (0)
316 /** Combines various styles.
318 #define wxPGMAN_DEFAULT_STYLE (0)
323 // -----------------------------------------------------------------------
326 // Ids for sub-controls
327 // NB: It should not matter what these are.
328 #define wxPG_SUBID1 2
329 #define wxPG_SUBID2 3
330 #define wxPG_SUBID_TEMP1 4
332 // -----------------------------------------------------------------------
334 /** @class wxPGCommonValue
336 wxPropertyGrid stores information about common values in these
339 NB: Common value feature is not complete, and thus not mentioned in
342 class WXDLLIMPEXP_PROPGRID wxPGCommonValue
346 wxPGCommonValue( const wxString
& label
, wxPGCellRenderer
* renderer
)
349 m_renderer
= renderer
;
352 virtual ~wxPGCommonValue()
354 m_renderer
->DecRef();
357 virtual wxString
GetEditableText() const { return m_label
; }
358 const wxString
& GetLabel() const { return m_label
; }
359 wxPGCellRenderer
* GetRenderer() const { return m_renderer
; }
363 wxPGCellRenderer
* m_renderer
;
366 // -----------------------------------------------------------------------
368 /** @section propgrid_vfbflags wxPropertyGrid Validation Failure Behavior Flags
372 enum wxPG_VALIDATION_FAILURE_BEHAVIOR_FLAGS
375 /** Prevents user from leaving property unless value is valid. If this
376 behavior flag is not used, then value change is instead cancelled.
378 wxPG_VFB_STAY_IN_PROPERTY
= 0x01,
380 /** Calls wxBell() on validation failure.
382 wxPG_VFB_BEEP
= 0x02,
384 /** Cell with invalid value will be marked (with red colour).
386 wxPG_VFB_MARK_CELL
= 0x04,
388 /** Display customizable text message explaining the situation.
390 wxPG_VFB_SHOW_MESSAGE
= 0x08,
393 wxPG_VFB_DEFAULT
= wxPG_VFB_STAY_IN_PROPERTY
|wxPG_VFB_BEEP
,
395 /** Only used internally. */
396 wxPG_VFB_UNDEFINED
= 0x80
403 typedef wxByte wxPGVFBFlags
;
408 Used to convey validation information to and from functions that
409 actually perform validation. Mostly used in custom property
412 class WXDLLIMPEXP_PROPGRID wxPGValidationInfo
414 friend class wxPropertyGrid
;
417 @return Returns failure behavior which is a combination of
418 @ref propgrid_vfbflags.
420 wxPGVFBFlags
GetFailureBehavior() const
421 { return m_failureBehavior
; }
424 Returns current failure message.
426 const wxString
& GetFailureMessage() const
427 { return m_failureMessage
; }
430 Returns reference to pending value.
432 wxVariant
& GetValue()
438 /** Set validation failure behavior
440 @param failureBehavior
441 Mixture of @ref propgrid_vfbflags.
443 void SetFailureBehavior(wxPGVFBFlags failureBehavior
)
444 { m_failureBehavior
= failureBehavior
; }
447 Set current failure message.
449 void SetFailureMessage(const wxString
& message
)
450 { m_failureMessage
= message
; }
453 /** Value to be validated.
457 /** Message displayed on validation failure.
459 wxString m_failureMessage
;
461 /** Validation failure behavior. Use wxPG_VFB_XXX flags.
463 wxPGVFBFlags m_failureBehavior
;
466 // -----------------------------------------------------------------------
468 /** @section propgrid_pgactions wxPropertyGrid Action Identifiers
470 These are used with wxPropertyGrid::AddActionTrigger() and
471 wxPropertyGrid::ClearActionTriggers().
475 enum wxPG_KEYBOARD_ACTIONS
477 wxPG_ACTION_INVALID
= 0,
478 wxPG_ACTION_NEXT_PROPERTY
,
479 wxPG_ACTION_PREV_PROPERTY
,
480 wxPG_ACTION_EXPAND_PROPERTY
,
481 wxPG_ACTION_COLLAPSE_PROPERTY
,
482 wxPG_ACTION_CANCEL_EDIT
,
483 wxPG_ACTION_PRESS_BUTTON
, // Causes editor button (if any) to be pressed
490 // -----------------------------------------------------------------------
493 // wxPropertyGrid::DoSelectProperty flags (selFlags)
495 // Focuses to created editor
496 #define wxPG_SEL_FOCUS 0x0001
497 // Forces deletion and recreation of editor
498 #define wxPG_SEL_FORCE 0x0002
499 // For example, doesn't cause EnsureVisible
500 #define wxPG_SEL_NONVISIBLE 0x0004
501 // Do not validate editor's value before selecting
502 #define wxPG_SEL_NOVALIDATE 0x0008
503 // Property being deselected is about to be deleted
504 #define wxPG_SEL_DELETING 0x0010
505 // Property's values was set to unspecified by the user
506 #define wxPG_SEL_SETUNSPEC 0x0020
507 // Property's event handler changed the value
508 #define wxPG_SEL_DIALOGVAL 0x0040
509 // Set to disable sending of wxEVT_PG_SELECTED event
510 #define wxPG_SEL_DONT_SEND_EVENT 0x0080
511 // Don't make any graphics updates
512 #define wxPG_SEL_NO_REFRESH 0x0100
514 // -----------------------------------------------------------------------
519 #define wxPG_FL_INITIALIZED 0x0001
520 // Set when creating editor controls if it was clicked on.
521 #define wxPG_FL_ACTIVATION_BY_CLICK 0x0002
522 #define wxPG_FL_DONT_CENTER_SPLITTER 0x0004
523 #define wxPG_FL_FOCUSED 0x0008
524 #define wxPG_FL_MOUSE_CAPTURED 0x0010
525 #define wxPG_FL_MOUSE_INSIDE 0x0020
526 #define wxPG_FL_VALUE_MODIFIED 0x0040
527 // don't clear background of m_wndEditor
528 #define wxPG_FL_PRIMARY_FILLS_ENTIRE 0x0080
529 // currently active editor uses custom image
530 #define wxPG_FL_CUR_USES_CUSTOM_IMAGE 0x0100
531 // cell colours override selection colours for selected cell
532 #define wxPG_FL_CELL_OVERRIDES_SEL 0x0200
533 #define wxPG_FL_SCROLLED 0x0400
534 // set when all added/inserted properties get hideable flag
535 #define wxPG_FL_ADDING_HIDEABLES 0x0800
536 // Disables showing help strings on statusbar.
537 #define wxPG_FL_NOSTATUSBARHELP 0x1000
538 // Marks that we created the state, so we have to destroy it too.
539 #define wxPG_FL_CREATEDSTATE 0x2000
540 // Set if scrollbar's existence was detected in last onresize.
541 #define wxPG_FL_SCROLLBAR_DETECTED 0x4000
542 // Set if wxPGMan requires redrawing of description text box.
543 #define wxPG_FL_DESC_REFRESH_REQUIRED 0x8000
544 // Set if contained in wxPropertyGridManager
545 #define wxPG_FL_IN_MANAGER 0x00020000
546 // Set after wxPropertyGrid is shown in its initial good size
547 #define wxPG_FL_GOOD_SIZE_SET 0x00040000
548 // Set when in SelectProperty.
549 #define wxPG_FL_IN_SELECT_PROPERTY 0x00100000
550 // Set when help string is shown in status bar
551 #define wxPG_FL_STRING_IN_STATUSBAR 0x00200000
552 // Splitter position has been custom-set by the user
553 #define wxPG_FL_SPLITTER_PRE_SET 0x00400000
554 // Validation failed. Clear on modify event.
555 #define wxPG_FL_VALIDATION_FAILED 0x00800000
556 // Auto sort is enabled (for categorized mode)
557 #define wxPG_FL_CATMODE_AUTO_SORT 0x01000000
558 // Set after page has been inserted to manager
559 #define wxPG_MAN_FL_PAGE_INSERTED 0x02000000
560 // Active editor control is abnormally large
561 #define wxPG_FL_ABNORMAL_EDITOR 0x04000000
562 // Recursion guard for HandleCustomEditorEvent
563 #define wxPG_FL_IN_HANDLECUSTOMEDITOREVENT 0x08000000
564 #define wxPG_FL_VALUE_CHANGE_IN_EVENT 0x10000000
565 // Editor control width should not change on resize
566 #define wxPG_FL_FIXED_WIDTH_EDITOR 0x20000000
567 // Width of panel can be different than width of grid
568 #define wxPG_FL_HAS_VIRTUAL_WIDTH 0x40000000
569 // Prevents RecalculateVirtualSize re-entrancy
570 #define wxPG_FL_RECALCULATING_VIRTUAL_SIZE 0x80000000
572 #endif // #ifndef SWIG
574 #if !defined(__wxPG_SOURCE_FILE__) && !defined(SWIG)
575 // Reduce compile time, but still include in user app
576 #include "wx/propgrid/props.h"
579 // -----------------------------------------------------------------------
581 /** @class wxPropertyGrid
583 wxPropertyGrid is a specialized grid for editing properties
584 such as strings, numbers, flagsets, fonts, and colours. wxPropertySheet
585 used to do the very same thing, but it hasn't been updated for a while
586 and it is currently deprecated.
588 Please note that most member functions are inherited and as such not
589 documented on this page. This means you will probably also want to read
590 wxPropertyGridInterface class reference.
592 See also @ref overview_propgrid.
594 @section propgrid_window_styles_ Window Styles
596 See @ref propgrid_window_styles.
598 @section propgrid_event_handling Event Handling
600 To process input from a propertygrid control, use these event handler
601 macros to direct input to member functions that take a wxPropertyGridEvent
604 @beginEventTable{wxPropertyGridEvent}
605 @event{EVT_PG_SELECTED (id, func)}
606 Respond to wxEVT_PG_SELECTED event, generated when a property selection
607 has been changed, either by user action or by indirect program
608 function. For instance, collapsing a parent property programmatically
609 causes any selected child property to become unselected, and may
610 therefore cause this event to be generated.
611 @event{EVT_PG_CHANGING(id, func)}
612 Respond to wxEVT_PG_CHANGING event, generated when property value
613 is about to be changed by user. Use wxPropertyGridEvent::GetValue()
614 to take a peek at the pending value, and wxPropertyGridEvent::Veto()
615 to prevent change from taking place, if necessary.
616 @event{EVT_PG_HIGHLIGHTED(id, func)}
617 Respond to wxEVT_PG_HIGHLIGHTED event, which occurs when mouse
618 moves over a property. Event's property is NULL if hovered area does
619 not belong to any property.
620 @event{EVT_PG_RIGHT_CLICK(id, func)}
621 Respond to wxEVT_PG_RIGHT_CLICK event, which occurs when property is
622 clicked on with right mouse button.
623 @event{EVT_PG_DOUBLE_CLICK(id, func)}
624 Respond to wxEVT_PG_DOUBLE_CLICK event, which occurs when property is
625 double-clicked onwith left mouse button.
626 @event{EVT_PG_ITEM_COLLAPSED(id, func)}
627 Respond to wxEVT_PG_ITEM_COLLAPSED event, generated when user collapses
628 a property or category..
629 @event{EVT_PG_ITEM_EXPANDED(id, func)}
630 Respond to wxEVT_PG_ITEM_EXPANDED event, generated when user expands
631 a property or category..
632 @event{EVT_PG_LABEL_EDIT_BEGIN(id, func)}
633 Respond to wxEVT_PG_LABEL_EDIT_BEGIN event, generated when is about to
634 begin editing a property label. You can veto this event to prevent the
636 @event{EVT_PG_LABEL_EDIT_ENDING(id, func)}
637 Respond to wxEVT_PG_LABEL_EDIT_ENDING event, generated when is about to
638 end editing of a property label. You can veto this event to prevent the
644 - Use Freeze() and Thaw() respectively to disable and enable drawing. This
645 will also delay sorting etc. miscellaneous calculations to the last
651 class WXDLLIMPEXP_PROPGRID
652 wxPropertyGrid
: public wxScrolledWindow
, public wxPropertyGridInterface
654 friend class wxPropertyGridEvent
;
655 friend class wxPropertyGridPageState
;
656 friend class wxPropertyGridInterface
;
657 friend class wxPropertyGridManager
;
658 friend class wxPGCanvas
;
660 DECLARE_DYNAMIC_CLASS(wxPropertyGrid
)
665 Two step constructor.
667 Call Create when this constructor is called to build up the
673 /** The default constructor. The styles to be used are styles valid for
674 the wxWindow and wxScrolledWindow.
676 @see @link wndflags Additional Window Styles @endlink
678 wxPropertyGrid( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
679 const wxPoint
& pos
= wxDefaultPosition
,
680 const wxSize
& size
= wxDefaultSize
,
681 long style
= wxPG_DEFAULT_STYLE
,
682 const wxString
& name
= wxPropertyGridNameStr
);
685 virtual ~wxPropertyGrid();
687 /** Adds given key combination to trigger given action.
690 Which action to trigger. See @link pgactions List of list of
691 wxPropertyGrid actions@endlink.
693 void AddActionTrigger( int action
, int keycode
, int modifiers
= 0 );
696 This static function enables or disables automatic use of
697 wxGetTranslation for following strings: wxEnumProperty list labels,
698 wxFlagsProperty sub-property labels.
702 static void AutoGetTranslation( bool enable
);
705 Changes value of a property, as if from an editor.
707 Use this instead of SetPropertyValue() if you need the value to run
708 through validation process, and also send the property change event.
711 Returns true if value was successfully changed.
713 bool ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
);
716 Centers the splitter.
718 If argument is true, automatic splitter centering is enabled (only
719 applicapple if style wxPG_SPLITTER_AUTO_CENTER was defined).
721 void CenterSplitter( bool enable_auto_centering
= false );
723 /** Deletes all properties.
725 virtual void Clear();
727 /** Clears action triggers for given action.
729 Which action to trigger. See @link pgactions List of list of
730 wxPropertyGrid actions@endlink.
732 void ClearActionTriggers( int action
);
734 /** Forces updating the value of property from the editor control.
736 Note that wxEVT_PG_CHANGING and wxEVT_PG_CHANGED are dispatched using
737 ProcessEvent, meaning your event handlers will be called immediately.
740 Returns true if anything was changed.
742 virtual bool CommitChangesFromEditor( wxUint32 flags
= 0 );
747 Whenever the control is created without any parameters, use Create to
748 actually create it. Don't access the control's public methods before
749 this is called @see @link wndflags Additional Window Styles@endlink
751 bool Create( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
752 const wxPoint
& pos
= wxDefaultPosition
,
753 const wxSize
& size
= wxDefaultSize
,
754 long style
= wxPG_DEFAULT_STYLE
,
755 const wxString
& name
= wxPropertyGridNameStr
);
758 Call when editor widget's contents is modified.
760 For example, this is called when changes text in wxTextCtrl (used in
761 wxStringProperty and wxIntProperty).
764 This function should only be called by custom properties.
766 @see wxPGProperty::OnEvent()
768 void EditorsValueWasModified() { m_iFlags
|= wxPG_FL_VALUE_MODIFIED
; }
770 /** Reverse of EditorsValueWasModified().
773 This function should only be called by custom properties.
775 void EditorsValueWasNotModified()
777 m_iFlags
&= ~(wxPG_FL_VALUE_MODIFIED
);
781 Enables or disables (shows/hides) categories according to parameter
784 bool EnableCategories( bool enable
);
786 /** Scrolls and/or expands items to ensure that the given item is visible.
787 Returns true if something was actually done.
789 bool EnsureVisible( wxPGPropArg id
);
792 Reduces column sizes to minimum possible that contents are still
793 visibly (naturally some margin space will be applied as well).
796 Minimum size for the grid to still display everything.
799 Does not work well with wxPG_SPLITTER_AUTO_CENTER window style.
801 This function only works properly if grid size prior to call was already
804 Note that you can also get calculated column widths by calling
805 GetState->GetColumnWidth() immediately after this function returns.
809 wxSize sz
= m_pState
->DoFitColumns();
814 Returns wxWindow that the properties are painted on, and which should
815 be used as the parent for editor controls.
817 wxPanel
* GetPanel() const
822 /** Returns current category caption background colour. */
823 wxColour
GetCaptionBackgroundColour() const { return m_colCapBack
; }
825 wxFont
& GetCaptionFont() { return m_captionFont
; }
827 const wxFont
& GetCaptionFont() const { return m_captionFont
; }
829 /** Returns current category caption text colour. */
830 wxColour
GetCaptionForegroundColour() const { return m_colCapFore
; }
832 /** Returns current cell background colour. */
833 wxColour
GetCellBackgroundColour() const { return m_colPropBack
; }
835 /** Returns current cell text colour when disabled. */
836 wxColour
GetCellDisabledTextColour() const { return m_colDisPropFore
; }
838 /** Returns current cell text colour. */
839 wxColour
GetCellTextColour() const { return m_colPropFore
; }
842 Returns number of columns currently on grid.
844 unsigned int GetColumnCount() const
846 return (unsigned int) m_pState
->m_colWidths
.size();
849 /** Returns colour of empty space below properties. */
850 wxColour
GetEmptySpaceColour() const { return m_colEmptySpace
; }
852 /** Returns height of highest characters of used font. */
853 int GetFontHeight() const { return m_fontHeight
; }
855 /** Returns pointer to itself. Dummy function that enables same kind
856 of code to use wxPropertyGrid and wxPropertyGridManager.
858 wxPropertyGrid
* GetGrid() { return this; }
860 /** Returns rectangle of custom paint image.
862 wxRect
GetImageRect( wxPGProperty
* p
, int item
) const;
864 /** Returns size of the custom paint image in front of property.
865 If no argument is given, returns preferred size.
867 wxSize
GetImageSize( wxPGProperty
* p
= NULL
, int item
= -1 ) const;
870 /** Returns last item which could be iterated using given flags.
872 See @ref propgrid_iterator_flags.
874 wxPGProperty
* GetLastItem( int flags
= wxPG_ITERATE_DEFAULT
)
876 return m_pState
->GetLastItem(flags
);
879 const wxPGProperty
* GetLastItem( int flags
= wxPG_ITERATE_DEFAULT
) const
881 return m_pState
->GetLastItem(flags
);
885 /** Returns colour of lines between cells. */
886 wxColour
GetLineColour() const { return m_colLine
; }
888 /** Returns background colour of margin. */
889 wxColour
GetMarginColour() const { return m_colMargin
; }
892 Returns most up-to-date value of selected property. This will return
893 value different from GetSelectedProperty()->GetValue() only when text
894 editor is activate and string edited by user represents valid,
895 uncommitted property value.
897 wxVariant
GetUncommittedPropertyValue();
899 /** Returns "root property". It does not have name, etc. and it is not
900 visible. It is only useful for accessing its children.
902 wxPGProperty
* GetRoot() const { return m_pState
->m_properties
; }
904 /** Returns height of a single grid row (in pixels). */
905 int GetRowHeight() const { return m_lineHeight
; }
907 /** Returns currently selected property. */
908 wxPGProperty
* GetSelectedProperty() const { return GetSelection(); }
910 /** Returns current selection background colour. */
911 wxColour
GetSelectionBackgroundColour() const { return m_colSelBack
; }
913 /** Returns current selection text colour. */
914 wxColour
GetSelectionForegroundColour() const { return m_colSelFore
; }
916 /** Returns current splitter x position. */
917 int GetSplitterPosition() const
918 { return m_pState
->DoGetSplitterPosition(0); }
920 /** Returns wxTextCtrl active in currently selected property, if any. Takes
921 into account wxOwnerDrawnComboBox.
923 wxTextCtrl
* GetEditorTextCtrl() const;
925 wxPGValidationInfo
& GetValidationInfo()
927 return m_validationInfo
;
930 /** Returns current vertical spacing. */
931 int GetVerticalSpacing() const { return (int)m_vspacing
; }
934 Returns @true if a property editor control has focus.
936 bool IsEditorFocused() const;
938 /** Returns true if editor's value was marked modified.
940 bool IsEditorsValueModified() const
941 { return ( m_iFlags
& wxPG_FL_VALUE_MODIFIED
) ? true : false; }
944 Returns information about arbitrary position in the grid.
947 Coordinates in the virtual grid space. You may need to use
948 wxScrolledWindow::CalcScrolledPosition() for translating
949 wxPropertyGrid client coordinates into something this member
952 wxPropertyGridHitTestResult
HitTest( const wxPoint
& pt
) const;
954 /** Returns true if any property has been modified by the user. */
955 bool IsAnyModified() const { return (m_pState
->m_anyModified
>0); }
958 Returns true if updating is frozen (ie Freeze() called but not yet
961 bool IsFrozen() const { return (m_frozen
>0)?true:false; }
964 It is recommended that you call this function any time your code causes
965 wxPropertyGrid's top-level parent to change. wxPropertyGrid's OnIdle()
966 handler should be able to detect most changes, but it is not perfect.
969 New top-level parent that is about to be set. Old top-level parent
970 window should still exist as the current one.
972 @remarks This function is automatically called from wxPropertyGrid::
973 Reparent() and wxPropertyGridManager::Reparent(). You only
974 need to use it if you reparent wxPropertyGrid indirectly.
976 void OnTLPChanging( wxWindow
* newTLP
);
978 /** Redraws given property.
980 virtual void RefreshProperty( wxPGProperty
* p
);
983 /** Registers a new editor class.
985 Pointer to the editor class instance that should be used.
987 static wxPGEditor
* RegisterEditorClass( wxPGEditor
* editor
,
988 bool noDefCheck
= false )
990 return DoRegisterEditorClass(editor
, wxEmptyString
, noDefCheck
);
993 static wxPGEditor
* DoRegisterEditorClass( wxPGEditor
* editorClass
,
994 const wxString
& editorName
,
995 bool noDefCheck
= false );
998 /** Resets all colours to the original system values.
1000 void ResetColours();
1004 Editor widget is automatically created, but not focused unless focus is
1011 True if selection finished successfully. Usually only fails if
1012 current value in editor is not valid.
1014 @remarks In wxPropertyGrid 1.4, this member function used to generate
1015 wxEVT_PG_SELECTED. In wxWidgets 2.9 and later, it no longer
1018 @remarks This clears any previous selection.
1020 bool SelectProperty( wxPGPropArg id
, bool focus
= false );
1023 Set entire new selection from given list of properties.
1025 void SetSelection( const wxArrayPGProperty
& newSelection
)
1027 DoSetSelection( newSelection
, wxPG_SEL_DONT_SEND_EVENT
);
1031 Adds given property into selection. If wxPG_EX_MULTIPLE_SELECTION
1032 extra style is not used, then this has same effect as
1033 calling SelectProperty().
1035 @remarks Multiple selection is not supported for categories. This
1036 means that if you have properties selected, you cannot
1037 add category to selection, and also if you have category
1038 selected, you cannot add other properties to selection.
1039 This member function will fail silently in these cases,
1040 even returning true.
1042 bool AddToSelection( wxPGPropArg id
)
1044 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1045 return DoAddToSelection(p
, wxPG_SEL_DONT_SEND_EVENT
);
1049 Removes given property from selection. If property is not selected,
1050 an assertion failure will occur.
1052 bool RemoveFromSelection( wxPGPropArg id
)
1054 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
1055 return DoRemoveFromSelection(p
, wxPG_SEL_DONT_SEND_EVENT
);
1059 Makes given column editable by user.
1062 Using @false here will disable column from being editable.
1064 void MakeColumnEditable( unsigned int column
, bool editable
= true );
1067 Creates label editor wxTextCtrl for given column, for property
1068 that is currently selected. When multiple selection is
1069 enabled, this applies to whatever property GetSelection()
1073 Which column's label to edit. Note that you should not
1074 use value 1, which is reserved for property value
1077 @see EndLabelEdit(), MakeColumnEditable()
1079 void BeginLabelEdit( unsigned int column
= 0 )
1081 DoBeginLabelEdit(column
, wxPG_SEL_DONT_SEND_EVENT
);
1085 Destroys label editor wxTextCtrl, if any.
1088 Use @true (default) to store edited label text in
1091 @see BeginLabelEdit(), MakeColumnEditable()
1093 void EndLabelEdit( bool commit
= true )
1095 DoEndLabelEdit(commit
, wxPG_SEL_DONT_SEND_EVENT
);
1099 Returns currently active label editor, NULL if none.
1101 wxTextCtrl
* GetLabelEditor() const
1103 return m_labelEditor
;
1106 /** Sets category caption background colour. */
1107 void SetCaptionBackgroundColour(const wxColour
& col
);
1109 /** Sets category caption text colour. */
1110 void SetCaptionTextColour(const wxColour
& col
);
1112 /** Sets default cell background colour - applies to property cells.
1113 Note that appearance of editor widgets may not be affected.
1115 void SetCellBackgroundColour(const wxColour
& col
);
1117 /** Sets cell text colour for disabled properties.
1119 void SetCellDisabledTextColour(const wxColour
& col
);
1121 /** Sets default cell text colour - applies to property name and value text.
1122 Note that appearance of editor widgets may not be affected.
1124 void SetCellTextColour(const wxColour
& col
);
1126 /** Set number of columns (2 or more).
1128 void SetColumnCount( int colCount
)
1130 m_pState
->SetColumnCount(colCount
);
1135 Sets the 'current' category - Append will add non-category properties
1138 void SetCurrentCategory( wxPGPropArg id
)
1140 wxPG_PROP_ARG_CALL_PROLOG()
1141 wxPropertyCategory
* pc
= wxDynamicCast(p
, wxPropertyCategory
);
1143 m_pState
->m_currentCategory
= pc
;
1146 /** Sets colour of empty space below properties. */
1147 void SetEmptySpaceColour(const wxColour
& col
);
1149 /** Sets colour of lines between cells. */
1150 void SetLineColour(const wxColour
& col
);
1152 /** Sets background colour of margin. */
1153 void SetMarginColour(const wxColour
& col
);
1156 Sets selection background colour - applies to selected property name
1159 void SetSelectionBackgroundColour(const wxColour
& col
);
1162 Sets selection foreground colour - applies to selected property name
1165 void SetSelectionTextColour(const wxColour
& col
);
1167 /** Sets x coordinate of the splitter.
1169 Splitter position cannot exceed grid size, and therefore setting it
1170 during form creation may fail as initial grid size is often smaller
1171 than desired splitter position, especially when sizers are being used.
1173 void SetSplitterPosition( int newxpos
, int col
= 0 )
1175 DoSetSplitterPosition_(newxpos
, true, col
);
1176 m_iFlags
|= wxPG_FL_SPLITTER_PRE_SET
;
1180 Sets the property sorting function.
1183 The sorting function to be used. It should return a value greater
1184 than 0 if position of p1 is after p2. So, for instance, when
1185 comparing property names, you can use following implementation:
1188 int MyPropertySortFunction(wxPropertyGrid* propGrid,
1192 return p1->GetBaseName().compare( p2->GetBaseName() );
1197 Default property sort function sorts properties by their labels
1198 (case-insensitively).
1200 @see GetSortFunction, wxPropertyGridInterface::Sort,
1201 wxPropertyGridInterface::SortChildren
1203 void SetSortFunction( wxPGSortCallback sortFunction
)
1205 m_sortFunction
= sortFunction
;
1209 Returns the property sort function (default is @NULL).
1211 @see SetSortFunction
1213 wxPGSortCallback
GetSortFunction() const
1215 return m_sortFunction
;
1218 /** Set virtual width for this particular page. Width -1 indicates that the
1219 virtual width should be disabled. */
1220 void SetVirtualWidth( int width
);
1223 Moves splitter as left as possible, while still allowing all
1224 labels to be shown in full.
1226 @param privateChildrenToo
1227 If @false, will still allow private children to be cropped.
1229 void SetSplitterLeft( bool privateChildrenToo
= false )
1231 m_pState
->SetSplitterLeft(privateChildrenToo
);
1234 /** Sets vertical spacing. Can be 1, 2, or 3 - a value relative to font
1235 height. Value of 2 should be default on most platforms.
1237 void SetVerticalSpacing( int vspacing
)
1239 m_vspacing
= (unsigned char)vspacing
;
1240 CalculateFontAndBitmapStuff( vspacing
);
1241 if ( !m_pState
->m_itemsAdded
) Refresh();
1244 /** Shows an brief error message that is related to a property. */
1245 void ShowPropertyError( wxPGPropArg id
, const wxString
& msg
)
1247 wxPG_PROP_ARG_CALL_PROLOG()
1248 DoShowPropertyError(p
, msg
);
1251 /////////////////////////////////////////////////////////////////
1253 // Following methods do not need to be (currently) documented
1255 /////////////////////////////////////////////////////////////////
1257 bool HasVirtualWidth() const
1258 { return (m_iFlags
& wxPG_FL_HAS_VIRTUAL_WIDTH
) ? true : false; }
1260 const wxPGCommonValue
* GetCommonValue( unsigned int i
) const
1262 return (wxPGCommonValue
*) m_commonValues
[i
];
1265 /** Returns number of common values.
1267 unsigned int GetCommonValueCount() const
1269 return (unsigned int) m_commonValues
.size();
1272 /** Returns label of given common value.
1274 wxString
GetCommonValueLabel( unsigned int i
) const
1276 wxASSERT( GetCommonValue(i
) );
1277 return GetCommonValue(i
)->GetLabel();
1281 Returns index of common value that will truly change value to
1284 int GetUnspecifiedCommonValue() const { return m_cvUnspecified
; }
1286 /** Set index of common value that will truly change value to unspecified.
1287 Using -1 will set none to have such effect.
1290 void SetUnspecifiedCommonValue( int index
) { m_cvUnspecified
= index
; }
1293 Shortcut for creating dialog-caller button. Used, for example, by
1296 This should only be called by properties.
1298 wxWindow
* GenerateEditorButton( const wxPoint
& pos
, const wxSize
& sz
);
1300 /** Fixes position of wxTextCtrl-like control (wxSpinCtrl usually
1301 fits as one). Call after control has been created (but before
1304 void FixPosForTextCtrl( wxWindow
* ctrl
,
1305 unsigned int forColumn
= 1,
1306 const wxPoint
& offset
= wxPoint(0, 0) );
1308 /** Shortcut for creating text editor widget.
1310 Same as pos given for CreateEditor.
1312 Same as sz given for CreateEditor.
1314 Initial text for wxTextCtrl.
1316 If right-side control, such as button, also created, then create it
1317 first and pass it as this parameter.
1319 Extra style flags to pass for wxTextCtrl.
1321 Note that this should generally be called only by new classes derived
1324 wxWindow
* GenerateEditorTextCtrl( const wxPoint
& pos
,
1326 const wxString
& value
,
1327 wxWindow
* secondary
,
1330 unsigned int forColumn
= 1 );
1332 /* Generates both textctrl and button.
1334 wxWindow
* GenerateEditorTextCtrlAndButton( const wxPoint
& pos
,
1335 const wxSize
& sz
, wxWindow
** psecondary
, int limited_editing
,
1336 wxPGProperty
* property
);
1338 /** Generates position for a widget editor dialog box.
1340 Property for which dialog is positioned.
1342 Known or over-approximated size of the dialog.
1344 Position for dialog.
1346 wxPoint
GetGoodEditorDialogPosition( wxPGProperty
* p
,
1349 // Converts escape sequences in src_str to newlines,
1350 // tabs, etc. and copies result to dst_str.
1351 static wxString
& ExpandEscapeSequences( wxString
& dst_str
,
1352 wxString
& src_str
);
1354 // Converts newlines, tabs, etc. in src_str to escape
1355 // sequences, and copies result to dst_str.
1356 static wxString
& CreateEscapeSequences( wxString
& dst_str
,
1357 wxString
& src_str
);
1360 Returns rectangle that fully contains properties between and including
1363 wxRect
GetPropertyRect( const wxPGProperty
* p1
,
1364 const wxPGProperty
* p2
) const;
1366 /** Returns pointer to current active primary editor control (NULL if none).
1368 wxWindow
* GetEditorControl() const;
1370 wxWindow
* GetPrimaryEditor() const
1372 return GetEditorControl();
1376 Returns pointer to current active secondary editor control (NULL if
1379 wxWindow
* GetEditorControlSecondary() const
1381 return m_wndEditor2
;
1385 Refreshes any active editor control.
1387 void RefreshEditor();
1389 // Events from editor controls are forward to this function
1390 void HandleCustomEditorEvent( wxEvent
&event
);
1395 Generates contents for string dst based on the contents of
1398 Format will be "(preDelim)str1(postDelim) (preDelim)str2(postDelim) and
1399 so on. Set flags to 1 inorder to convert backslashes to double-back-
1400 slashes and "(preDelims)"'s to "(preDelims)".
1402 static void ArrayStringToString( wxString
& dst
, const wxArrayString
& src
,
1403 wxChar preDelim
, wxChar postDelim
,
1406 // Mostly useful for page switching.
1407 void SwitchState( wxPropertyGridPageState
* pNewState
);
1409 long GetInternalFlags() const { return m_iFlags
; }
1410 bool HasInternalFlag( long flag
) const
1411 { return (m_iFlags
& flag
) ? true : false; }
1412 void SetInternalFlag( long flag
) { m_iFlags
|= flag
; }
1413 void ClearInternalFlag( long flag
) { m_iFlags
&= ~(flag
); }
1414 void IncFrozen() { m_frozen
++; }
1415 void DecFrozen() { m_frozen
--; }
1417 void OnComboItemPaint( const wxPGComboBox
* pCb
,
1423 /** Standardized double-to-string conversion.
1425 static void DoubleToString( wxString
& target
,
1429 wxString
* precTemplate
);
1432 Call this from wxPGProperty::OnEvent() to cause property value to be
1433 changed after the function returns (with true as return value).
1434 ValueChangeInEvent() must be used if you wish the application to be
1435 able to use wxEVT_PG_CHANGING to potentially veto the given value.
1437 void ValueChangeInEvent( wxVariant variant
)
1439 m_changeInEventValue
= variant
;
1440 m_iFlags
|= wxPG_FL_VALUE_CHANGE_IN_EVENT
;
1444 You can use this member function, for instance, to detect in
1445 wxPGProperty::OnEvent() if wxPGProperty::SetValueInEvent() was
1446 already called in wxPGEditor::OnEvent(). It really only detects
1447 if was value was changed using wxPGProperty::SetValueInEvent(), which
1448 is usually used when a 'picker' dialog is displayed. If value was
1449 written by "normal means" in wxPGProperty::StringToValue() or
1450 IntToValue(), then this function will return false (on the other hand,
1451 wxPGProperty::OnEvent() is not even called in those cases).
1453 bool WasValueChangedInEvent() const
1455 return (m_iFlags
& wxPG_FL_VALUE_CHANGE_IN_EVENT
) ? true : false;
1458 /** Returns true if given event is from first of an array of buttons
1459 (as can be in case when wxPGMultiButton is used).
1461 bool IsMainButtonEvent( const wxEvent
& event
)
1463 return (event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
1464 && (m_wndSecId
== event
.GetId());
1467 /** Pending value is expected to be passed in PerformValidation().
1469 virtual bool DoPropertyChanged( wxPGProperty
* p
,
1470 unsigned int selFlags
= 0 );
1472 /** Called when validation for given property fails.
1474 Value which failed in validation.
1476 Return true if user is allowed to change to another property even
1477 if current has invalid value.
1479 To add your own validation failure behavior, override
1480 wxPropertyGrid::DoOnValidationFailure().
1482 bool OnValidationFailure( wxPGProperty
* property
,
1483 wxVariant
& invalidValue
);
1485 /** Called to indicate property and editor has valid value now.
1487 void OnValidationFailureReset( wxPGProperty
* property
)
1489 if ( property
&& property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
1491 DoOnValidationFailureReset(property
);
1492 property
->ClearFlag(wxPG_PROP_INVALID_VALUE
);
1494 m_validationInfo
.m_failureMessage
.clear();
1497 /** Override in derived class to display error messages in custom manner
1498 (these message usually only result from validation failure).
1500 virtual void DoShowPropertyError( wxPGProperty
* property
,
1501 const wxString
& msg
);
1503 /** Override to customize property validation failure behavior.
1505 Value which failed in validation.
1507 Return true if user is allowed to change to another property even
1508 if current has invalid value.
1510 virtual bool DoOnValidationFailure( wxPGProperty
* property
,
1511 wxVariant
& invalidValue
);
1513 /** Override to customize resetting of property validation failure status.
1515 Property is guaranteed to have flag wxPG_PROP_INVALID_VALUE set.
1517 virtual void DoOnValidationFailureReset( wxPGProperty
* property
);
1519 int GetSpacingY() const { return m_spacingy
; }
1522 Must be called in wxPGEditor::CreateControls() if primary editor window
1523 is wxTextCtrl, just before textctrl is created.
1525 Initial text value of created wxTextCtrl.
1527 void SetupTextCtrlValue( const wxString text
) { m_prevTcValue
= text
; }
1530 Unfocuses or closes editor if one was open, but does not deselect
1533 bool UnfocusEditor();
1535 virtual void SetWindowStyleFlag( long style
);
1537 void DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
);
1539 void DrawItem( wxPGProperty
* p
)
1544 virtual void DrawItemAndChildren( wxPGProperty
* p
);
1547 Draws item, children, and consequtive parents as long as category is
1550 void DrawItemAndValueRelated( wxPGProperty
* p
);
1555 wxPropertyGridPageState used by the grid is created here.
1557 If grid is used in wxPropertyGridManager, there is no point overriding
1558 this - instead, set custom wxPropertyGridPage classes.
1560 virtual wxPropertyGridPageState
* CreateState() const;
1562 enum PerformValidationFlags
1564 SendEvtChanging
= 0x0001,
1565 IsStandaloneValidation
= 0x0002 // Not called in response to event
1569 Runs all validation functionality (includes sending wxEVT_PG_CHANGING).
1570 Returns true if all tests passed. Implement in derived class to
1571 add additional validation behavior.
1573 virtual bool PerformValidation( wxPGProperty
* p
,
1574 wxVariant
& pendingValue
,
1575 int flags
= SendEvtChanging
);
1579 // Control font changer helper.
1580 void SetCurControlBoldFont();
1582 wxPGCell
& GetPropertyDefaultCell()
1584 return m_propertyDefaultCell
;
1587 wxPGCell
& GetCategoryDefaultCell()
1589 return m_categoryDefaultCell
;
1593 // Public methods for semi-public use
1595 bool DoSelectProperty( wxPGProperty
* p
, unsigned int flags
= 0 );
1597 // Overridden functions.
1598 virtual bool Destroy();
1599 // Returns property at given y coordinate (relative to grid's top left).
1600 wxPGProperty
* GetItemAtY( int y
) const { return DoGetItemAtY(y
); }
1602 virtual void Refresh( bool eraseBackground
= true,
1603 const wxRect
*rect
= (const wxRect
*) NULL
);
1604 virtual bool SetFont( const wxFont
& font
);
1605 #if wxPG_SUPPORT_TOOLTIPS
1606 void SetToolTip( const wxString
& tipString
);
1608 virtual void Freeze();
1609 virtual void SetExtraStyle( long exStyle
);
1610 virtual void Thaw();
1611 virtual bool Reparent( wxWindowBase
*newParent
);
1614 virtual wxSize
DoGetBestSize() const;
1616 #ifndef wxPG_ICON_WIDTH
1617 wxBitmap
*m_expandbmp
, *m_collbmp
;
1620 wxCursor
*m_cursorSizeWE
;
1622 /** wxWindow pointers to editor control(s). */
1623 wxWindow
*m_wndEditor
;
1624 wxWindow
*m_wndEditor2
;
1626 /** wxPGCanvas instance. */
1629 #if wxPG_DOUBLE_BUFFER
1630 wxBitmap
*m_doubleBuffer
;
1633 /** Local time ms when control was created. */
1634 wxLongLong m_timeCreated
;
1636 /** wxPGProperty::OnEvent can change value by setting this. */
1637 wxVariant m_changeInEventValue
;
1639 /** Id of m_wndEditor2, or its first child, if any. */
1642 /** Extra Y spacing between the items. */
1645 /** Control client area width; updated on resize. */
1648 /** Control client area height; updated on resize. */
1651 /** Current non-client width (needed when auto-centering). */
1654 /** Non-client width (auto-centering helper). */
1657 /** Previously recorded scroll start position. */
1661 The gutter spacing in front and back of the image.
1662 This determines the amount of spacing in front of each item
1666 /** Includes separator line. */
1669 /** Gutter*2 + image width. */
1672 // y spacing for expand/collapse button.
1673 int m_buttonSpacingY
;
1675 /** Extra margin for expanded sub-group items. */
1676 int m_subgroup_extramargin
;
1679 The image width of the [+] icon.
1681 This is also calculated in the gutter
1685 #ifndef wxPG_ICON_WIDTH
1688 The image height of the [+] icon.
1690 This is calculated as minimal size and to align
1695 /** Current cursor id. */
1699 This captionFont is made equal to the font of the wxScrolledWindow.
1701 As extra the bold face is set on it when this is wanted by the user
1704 wxFont m_captionFont
;
1706 int m_fontHeight
; // Height of the font.
1708 /** m_splitterx when drag began. */
1709 int m_startingSplitterX
;
1712 Index to splitter currently being dragged (0=one after the first
1715 int m_draggedSplitter
;
1717 /** Changed property, calculated in PerformValidation(). */
1718 wxPGProperty
* m_chgInfo_changedProperty
;
1721 Lowest property for which editing happened, but which does not have
1724 wxPGProperty
* m_chgInfo_baseChangedProperty
;
1726 /** Changed property value, calculated in PerformValidation(). */
1727 wxVariant m_chgInfo_pendingValue
;
1729 /** Passed to SetValue. */
1730 wxVariant m_chgInfo_valueList
;
1732 /** Validation information. */
1733 wxPGValidationInfo m_validationInfo
;
1735 /** Actions and keys that trigger them. */
1736 wxPGHashMapI2I m_actionTriggers
;
1742 /** Bits are used to indicate which colours are customized. */
1743 unsigned short m_coloursCustomized
;
1745 /** x - m_splitterx. */
1746 signed char m_dragOffset
;
1748 /** 0 = not dragging, 1 = drag just started, 2 = drag in progress */
1749 unsigned char m_dragStatus
;
1751 /** 0 = margin, 1 = label, 2 = value. */
1752 unsigned char m_mouseSide
;
1754 /** True when editor control is focused. */
1755 unsigned char m_editorFocused
;
1757 /** 1 if m_latsCaption is also the bottommost caption. */
1758 //unsigned char m_lastCaptionBottomnest;
1760 /** Set to 1 when graphics frozen. */
1761 unsigned char m_frozen
;
1763 unsigned char m_vspacing
;
1765 // Used to track when Alt/Ctrl+Key was consumed.
1766 unsigned char m_keyComboConsumed
;
1768 /** 1 if in DoPropertyChanged() */
1769 unsigned char m_inDoPropertyChanged
;
1771 /** 1 if in CommitChangesFromEditor() */
1772 unsigned char m_inCommitChangesFromEditor
;
1774 /** 1 if in DoSelectProperty() */
1775 unsigned char m_inDoSelectProperty
;
1777 wxPGVFBFlags m_permanentValidationFailureBehavior
; // Set by app
1779 /** Internal flags - see wxPG_FL_XXX constants. */
1782 /** When drawing next time, clear this many item slots at the end. */
1783 int m_clearThisMany
;
1785 // Mouse is hovering over this column (index)
1786 unsigned int m_colHover
;
1788 // pointer to property that has mouse hovering
1789 wxPGProperty
* m_propHover
;
1791 // Active label editor
1792 wxTextCtrl
* m_labelEditor
;
1794 // For which property the label editor is active
1795 wxPGProperty
* m_labelEditorProperty
;
1797 // EventObject for wxPropertyGridEvents
1798 wxWindow
* m_eventObject
;
1800 // What (global) window is currently focused (needed to resolve event
1802 wxWindow
* m_curFocused
;
1804 // Event currently being sent - NULL if none at the moment
1805 wxPropertyGridEvent
* m_processedEvent
;
1807 // Last known top-level parent
1810 // Last closed top-level parent
1811 wxWindow
* m_tlpClosed
;
1813 // Local time ms when tlp was closed.
1814 wxLongLong m_tlpClosedTime
;
1817 wxPGSortCallback m_sortFunction
;
1819 // y coordinate of property that mouse hovering
1822 // Which column's editor is selected (usually 1)?
1823 unsigned int m_selColumn
;
1825 // x relative to splitter (needed for resize).
1828 // lines between cells
1830 // property labels and values are written in this colour
1831 wxColour m_colPropFore
;
1832 // or with this colour when disabled
1833 wxColour m_colDisPropFore
;
1834 // background for m_colPropFore
1835 wxColour m_colPropBack
;
1836 // text color for captions
1837 wxColour m_colCapFore
;
1838 // background color for captions
1839 wxColour m_colCapBack
;
1840 // foreground for selected property
1841 wxColour m_colSelFore
;
1842 // background for selected property (actually use background color when
1843 // control out-of-focus)
1844 wxColour m_colSelBack
;
1845 // background colour for margin
1846 wxColour m_colMargin
;
1847 // background colour for empty space below the grid
1848 wxColour m_colEmptySpace
;
1850 // Default property colours
1851 wxPGCell m_propertyDefaultCell
;
1853 // Default property category
1854 wxPGCell m_categoryDefaultCell
;
1856 // Backup of selected property's cells
1857 wxVector
<wxPGCell
> m_propCellsBackup
;
1859 // NB: These *cannot* be moved to globals.
1861 // labels when properties use common values
1862 wxVector
<wxPGCommonValue
*> m_commonValues
;
1864 // array of live events
1865 wxVector
<wxPropertyGridEvent
*> m_liveEvents
;
1867 // Which cv selection really sets value to unspecified?
1868 int m_cvUnspecified
;
1870 // Used to skip excess text editor events
1871 wxString m_prevTcValue
;
1875 // Sets some members to defaults (called constructors).
1878 // Initializes some members (called by Create and complex constructor).
1881 void OnPaint(wxPaintEvent
&event
);
1883 // main event receivers
1884 void OnMouseMove( wxMouseEvent
&event
);
1885 void OnMouseMoveBottom( wxMouseEvent
&event
);
1886 void OnMouseClick( wxMouseEvent
&event
);
1887 void OnMouseRightClick( wxMouseEvent
&event
);
1888 void OnMouseDoubleClick( wxMouseEvent
&event
);
1889 void OnMouseUp( wxMouseEvent
&event
);
1890 void OnKey( wxKeyEvent
&event
);
1891 void OnResize( wxSizeEvent
&event
);
1894 bool HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
);
1895 bool HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
);
1896 bool HandleMouseRightClick( int x
, unsigned int y
, wxMouseEvent
&event
);
1897 bool HandleMouseDoubleClick( int x
, unsigned int y
, wxMouseEvent
&event
);
1898 bool HandleMouseUp( int x
, unsigned int y
, wxMouseEvent
&event
);
1899 void HandleKeyEvent( wxKeyEvent
&event
, bool fromChild
);
1901 void OnMouseEntry( wxMouseEvent
&event
);
1903 void OnIdle( wxIdleEvent
&event
);
1904 void OnFocusEvent( wxFocusEvent
&event
);
1905 void OnChildFocusEvent( wxChildFocusEvent
& event
);
1907 bool OnMouseCommon( wxMouseEvent
&event
, int* px
, int *py
);
1908 bool OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
);
1910 // sub-control event handlers
1911 void OnMouseClickChild( wxMouseEvent
&event
);
1912 void OnMouseRightClickChild( wxMouseEvent
&event
);
1913 void OnMouseMoveChild( wxMouseEvent
&event
);
1914 void OnMouseUpChild( wxMouseEvent
&event
);
1915 void OnChildKeyDown( wxKeyEvent
&event
);
1917 void OnCaptureChange( wxMouseCaptureChangedEvent
&event
);
1919 void OnScrollEvent( wxScrollWinEvent
&event
);
1921 void OnSysColourChanged( wxSysColourChangedEvent
&event
);
1923 void OnTLPClose( wxCloseEvent
& event
);
1927 bool AddToSelectionFromInputEvent( wxPGProperty
* prop
,
1928 unsigned int colIndex
,
1929 wxMouseEvent
* event
= NULL
,
1933 Adjust the centering of the bitmap icons (collapse / expand) when the
1934 caption font changes.
1936 They need to be centered in the middle of the font, so a bit of deltaY
1937 adjustment is needed. On entry, m_captionFont must be set to window
1938 font. It will be modified properly.
1940 void CalculateFontAndBitmapStuff( int vspacing
);
1942 wxRect
GetEditorWidgetRect( wxPGProperty
* p
, int column
) const;
1944 void CorrectEditorWidgetSizeX();
1946 /** Called in RecalculateVirtualSize() to reposition control
1947 on virtual height changes.
1949 void CorrectEditorWidgetPosY();
1951 int DoDrawItems( wxDC
& dc
,
1952 const wxRect
* clipRect
,
1953 bool isBuffered
) const;
1955 /** Draws an expand/collapse (ie. +/-) button.
1957 virtual void DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1958 wxPGProperty
* property
) const;
1960 /** Draws items from topitemy to bottomitemy */
1961 void DrawItems( wxDC
& dc
, unsigned int topitemy
, unsigned int bottomitemy
,
1962 const wxRect
* clip_rect
= (const wxRect
*) NULL
);
1964 // Translate wxKeyEvent to wxPG_ACTION_XXX
1965 int KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const;
1967 int KeyEventToAction(wxKeyEvent
&event
) const
1969 return KeyEventToActions(event
, NULL
);
1972 void ImprovedClientToScreen( int* px
, int* py
);
1974 // Called by focus event handlers. newFocused is the window that becomes
1976 void HandleFocusChange( wxWindow
* newFocused
);
1978 /** Reloads all non-customized colours from system settings. */
1979 void RegainColours();
1981 bool DoEditorValidate();
1983 // Similar to DoSelectProperty() but also works on columns
1984 // other than 1. Does not active editor if column is not
1986 bool DoSelectAndEdit( wxPGProperty
* prop
,
1987 unsigned int colIndex
,
1988 unsigned int selFlags
);
1990 void DoSetSelection( const wxArrayPGProperty
& newSelection
,
1993 bool DoAddToSelection( wxPGProperty
* prop
,
1996 bool DoRemoveFromSelection( wxPGProperty
* prop
,
1999 void DoBeginLabelEdit( unsigned int colIndex
, int selFlags
= 0 );
2000 void DoEndLabelEdit( bool commit
, int selFlags
= 0 );
2001 void OnLabelEditorEnterPress( wxCommandEvent
& event
);
2002 void OnLabelEditorKeyPress( wxKeyEvent
& event
);
2004 wxPGProperty
* DoGetItemAtY( int y
) const;
2006 void DoSetSplitterPosition_( int newxpos
,
2007 bool refresh
= true,
2008 int splitterIndex
= 0,
2009 bool allPages
= false );
2011 void DestroyEditorWnd( wxWindow
* wnd
);
2014 virtual bool DoExpand( wxPGProperty
* p
, bool sendEvent
= false );
2016 virtual bool DoCollapse( wxPGProperty
* p
, bool sendEvent
= false );
2018 // Returns nearest paint visible property (such that will be painted unless
2019 // window is scrolled or resized). If given property is paint visible, then
2020 // it itself will be returned.
2021 wxPGProperty
* GetNearestPaintVisible( wxPGProperty
* p
) const;
2023 static void RegisterDefaultEditors();
2025 // Sets up basic event handling for child control
2026 void SetupChildEventHandling( wxWindow
* wnd
);
2028 void CustomSetCursor( int type
, bool override
= false );
2031 Repositions scrollbar and underlying panel according to changed virtual
2034 void RecalculateVirtualSize( int forceXPos
= -1 );
2036 void PrepareAfterItemsAdded();
2038 // Omit the wxPG_SEL_NOVALIDATE flag to allow vetoing the event
2039 bool SendEvent( int eventType
, wxPGProperty
* p
,
2040 wxVariant
* pValue
= NULL
,
2041 unsigned int selFlags
= wxPG_SEL_NOVALIDATE
,
2042 unsigned int column
= 1 );
2044 void SetFocusOnCanvas();
2046 bool DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
);
2050 bool ButtonTriggerKeyTest( int action
, wxKeyEvent
& event
);
2052 DECLARE_EVENT_TABLE()
2053 #endif // #ifndef SWIG
2056 // -----------------------------------------------------------------------
2058 // Bunch of inlines that need to resolved after all classes have been defined.
2062 inline bool wxPropertyGridPageState::IsDisplayed() const
2064 return ( this == m_pPropGrid
->GetState() );
2067 inline unsigned int wxPropertyGridPageState::GetActualVirtualHeight() const
2069 return DoGetRoot()->GetChildrenHeight(GetGrid()->GetRowHeight());
2073 inline int wxPGProperty::GetDisplayedCommonValueCount() const
2075 if ( HasFlag(wxPG_PROP_USES_COMMON_VALUE
) )
2077 wxPropertyGrid
* pg
= GetGrid();
2079 return (int) pg
->GetCommonValueCount();
2084 inline void wxPGProperty::SetDefaultValue( wxVariant
& value
)
2086 SetAttribute(wxPG_ATTR_DEFAULT_VALUE
, value
);
2089 inline void wxPGProperty::SetEditor( const wxString
& editorName
)
2091 m_customEditor
= wxPropertyGridInterface::GetEditorByName(editorName
);
2094 inline bool wxPGProperty::Hide( bool hide
, int flags
)
2096 return GetGrid()->HideProperty(this, hide
, flags
);
2099 inline bool wxPGProperty::SetMaxLength( int maxLen
)
2101 return GetGrid()->SetPropertyMaxLength(this,maxLen
);
2104 // -----------------------------------------------------------------------
2106 #define wxPG_BASE_EVT_PRE_ID 1775
2110 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_SELECTED
, wxPropertyGridEvent
);
2111 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_CHANGING
, wxPropertyGridEvent
);
2112 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_CHANGED
, wxPropertyGridEvent
);
2113 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_HIGHLIGHTED
, wxPropertyGridEvent
);
2114 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_RIGHT_CLICK
, wxPropertyGridEvent
);
2115 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_PAGE_CHANGED
, wxPropertyGridEvent
);
2116 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_ITEM_COLLAPSED
, wxPropertyGridEvent
);
2117 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_ITEM_EXPANDED
, wxPropertyGridEvent
);
2118 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
, wxEVT_PG_DOUBLE_CLICK
, wxPropertyGridEvent
);
2119 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
,
2120 wxEVT_PG_LABEL_EDIT_BEGIN
, wxPropertyGridEvent
);
2121 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_PROPGRID
,
2122 wxEVT_PG_LABEL_EDIT_ENDING
, wxPropertyGridEvent
);
2126 wxEVT_PG_SELECTED
= wxPG_BASE_EVT_PRE_ID
,
2129 wxEVT_PG_HIGHLIGHTED
,
2130 wxEVT_PG_RIGHT_CLICK
,
2131 wxEVT_PG_PAGE_CHANGED
,
2132 wxEVT_PG_ITEM_COLLAPSED
,
2133 wxEVT_PG_ITEM_EXPANDED
,
2134 wxEVT_PG_DOUBLE_CLICK
,
2135 wxEVT_PG_LABEL_EDIT_BEGIN
,
2136 wxEVT_PG_LABEL_EDIT_ENDING
2141 #define wxPG_BASE_EVT_TYPE wxEVT_PG_SELECTED
2142 #define wxPG_MAX_EVT_TYPE (wxPG_BASE_EVT_TYPE+30)
2146 typedef void (wxEvtHandler::*wxPropertyGridEventFunction
)(wxPropertyGridEvent
&);
2148 #define EVT_PG_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_SELECTED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2149 #define EVT_PG_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGING, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2150 #define EVT_PG_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2151 #define EVT_PG_HIGHLIGHTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_HIGHLIGHTED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2152 #define EVT_PG_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_RIGHT_CLICK, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2153 #define EVT_PG_DOUBLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_DOUBLE_CLICK, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2154 #define EVT_PG_PAGE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_PAGE_CHANGED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2155 #define EVT_PG_ITEM_COLLAPSED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_COLLAPSED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2156 #define EVT_PG_ITEM_EXPANDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_EXPANDED, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2157 #define EVT_PG_LABEL_EDIT_BEGIN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_LABEL_EDIT_BEGIN, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2158 #define EVT_PG_LABEL_EDIT_ENDING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_LABEL_EDIT_ENDING, id, -1, wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn ), NULL ),
2160 #define wxPropertyGridEventHandler(fn) \
2161 wxEVENT_HANDLER_CAST( wxPropertyGridEventFunction, fn )
2166 /** @class wxPropertyGridEvent
2168 A propertygrid event holds information about events associated with
2169 wxPropertyGrid objects.
2171 @library{wxpropgrid}
2174 class WXDLLIMPEXP_PROPGRID wxPropertyGridEvent
: public wxCommandEvent
2179 wxPropertyGridEvent(wxEventType commandType
=0, int id
=0);
2181 /** Copy constructor. */
2182 wxPropertyGridEvent(const wxPropertyGridEvent
& event
);
2185 ~wxPropertyGridEvent();
2188 virtual wxEvent
* Clone() const;
2191 Returns the column index associated with this event.
2193 unsigned int GetColumn() const
2198 wxPGProperty
* GetMainParent() const
2200 wxASSERT(m_property
);
2201 return m_property
->GetMainParent();
2204 /** Returns id of associated property. */
2205 wxPGProperty
* GetProperty() const
2210 wxPGValidationInfo
& GetValidationInfo()
2212 wxASSERT(m_validationInfo
);
2213 return *m_validationInfo
;
2216 /** Returns true if you can veto the action that the event is signaling.
2218 bool CanVeto() const { return m_canVeto
; }
2221 Call this from your event handler to veto action that the event is
2224 You can only veto a shutdown if wxPropertyGridEvent::CanVeto returns
2227 Currently only wxEVT_PG_CHANGING supports vetoing.
2229 void Veto( bool veto
= true ) { m_wasVetoed
= veto
; }
2232 Returns name of the associated property.
2234 @remarks Property name is stored in event, so it remains
2235 accessible even after the associated property or
2236 the property grid has been deleted.
2238 wxString
GetPropertyName() const
2240 return m_propertyName
;
2244 Returns value of the associated property. Works for all event
2245 types, but for wxEVT_PG_CHANGING this member function returns
2246 the value that is pending, so you can call Veto() if the
2247 value is not satisfactory.
2249 @remarks Property value is stored in event, so it remains
2250 accessible even after the associated property or
2251 the property grid has been deleted.
2253 wxVariant
GetPropertyValue() const
2255 if ( m_validationInfo
)
2256 return m_validationInfo
->GetValue();
2261 Returns value of the associated property.
2263 @see GetPropertyValue
2265 wxVariant
GetValue() const
2267 return GetPropertyValue();
2271 Set override validation failure behavior.
2273 Only effective if Veto was also called, and only allowed if event type
2274 is wxEVT_PG_CHANGING.
2276 void SetValidationFailureBehavior( wxPGVFBFlags flags
)
2278 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2279 m_validationInfo
->SetFailureBehavior( flags
);
2282 /** Sets custom failure message for this time only. Only applies if
2283 wxPG_VFB_SHOW_MESSAGE is set in validation failure flags.
2285 void SetValidationFailureMessage( const wxString
& message
)
2287 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2288 m_validationInfo
->SetFailureMessage( message
);
2292 wxPGVFBFlags
GetValidationFailureBehavior() const
2294 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2295 return m_validationInfo
->GetFailureBehavior();
2298 void SetColumn( unsigned int column
)
2303 void SetCanVeto( bool canVeto
) { m_canVeto
= canVeto
; }
2304 bool WasVetoed() const { return m_wasVetoed
; }
2306 /** Changes the associated property. */
2307 void SetProperty( wxPGProperty
* p
)
2311 m_propertyName
= p
->GetName();
2314 void SetPropertyValue( wxVariant value
)
2319 void SetPropertyGrid( wxPropertyGrid
* pg
)
2322 OnPropertyGridSet();
2325 void SetupValidationInfo()
2328 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2329 m_validationInfo
= &m_pg
->GetValidationInfo();
2330 m_value
= m_validationInfo
->GetValue();
2335 void OnPropertyGridSet();
2336 DECLARE_DYNAMIC_CLASS(wxPropertyGridEvent
)
2338 wxPGProperty
* m_property
;
2339 wxPropertyGrid
* m_pg
;
2340 wxPGValidationInfo
* m_validationInfo
;
2342 wxString m_propertyName
;
2345 unsigned int m_column
;
2354 // -----------------------------------------------------------------------
2356 /** @class wxPropertyGridPopulator
2358 Allows populating wxPropertyGrid from arbitrary text source.
2360 class WXDLLIMPEXP_PROPGRID wxPropertyGridPopulator
2363 /** Default constructor.
2365 wxPropertyGridPopulator();
2368 virtual ~wxPropertyGridPopulator();
2370 void SetState( wxPropertyGridPageState
* state
);
2372 void SetGrid( wxPropertyGrid
* pg
);
2374 /** Appends a new property under bottommost parent.
2376 Property class as string.
2378 wxPGProperty
* Add( const wxString
& propClass
,
2379 const wxString
& propLabel
,
2380 const wxString
& propName
,
2381 const wxString
* propValue
,
2382 wxPGChoices
* pChoices
= NULL
);
2385 Pushes property to the back of parent array (ie it becomes bottommost
2386 parent), and starts scanning/adding children for it.
2388 When finished, parent array is returned to the original state.
2390 void AddChildren( wxPGProperty
* property
);
2392 /** Adds attribute to the bottommost property.
2394 Allowed values: "string", (same as string), "int", "bool". Empty string
2397 bool AddAttribute( const wxString
& name
,
2398 const wxString
& type
,
2399 const wxString
& value
);
2401 /** Called once in AddChildren.
2403 virtual void DoScanForChildren() = 0;
2406 Returns id of parent property for which children can currently be
2409 wxPGProperty
* GetCurParent() const
2411 return (wxPGProperty
*) m_propHierarchy
[m_propHierarchy
.size()-1];
2414 wxPropertyGridPageState
* GetState() { return m_state
; }
2415 const wxPropertyGridPageState
* GetState() const { return m_state
; }
2417 /** Like wxString::ToLong, except allows N% in addition of N.
2419 static bool ToLongPCT( const wxString
& s
, long* pval
, long max
);
2421 /** Parses strings of format "choice1"[=value1] ... "choiceN"[=valueN] into
2422 wxPGChoices. Registers parsed result using idString (if not empty).
2423 Also, if choices with given id already registered, then don't parse but
2424 return those choices instead.
2426 wxPGChoices
ParseChoices( const wxString
& choicesString
,
2427 const wxString
& idString
);
2429 /** Implement in derived class to do custom process when an error occurs.
2430 Default implementation uses wxLogError.
2432 virtual void ProcessError( const wxString
& msg
);
2436 /** Used property grid. */
2437 wxPropertyGrid
* m_pg
;
2439 /** Used property grid state. */
2440 wxPropertyGridPageState
* m_state
;
2442 /** Tree-hierarchy of added properties (that can have children). */
2443 wxArrayPGProperty m_propHierarchy
;
2445 /** Hashmap for string-id to wxPGChoicesData mapping. */
2446 wxPGHashMapS2P m_dictIdChoices
;
2449 // -----------------------------------------------------------------------
2452 // Undefine macros that are not needed outside propertygrid sources
2454 #ifndef __wxPG_SOURCE_FILE__
2455 #undef wxPG_FL_DESC_REFRESH_REQUIRED
2456 #undef wxPG_FL_SCROLLBAR_DETECTED
2457 #undef wxPG_FL_CREATEDSTATE
2458 #undef wxPG_FL_NOSTATUSBARHELP
2459 #undef wxPG_FL_SCROLLED
2460 #undef wxPG_FL_FOCUS_INSIDE_CHILD
2461 #undef wxPG_FL_FOCUS_INSIDE
2462 #undef wxPG_FL_MOUSE_INSIDE_CHILD
2463 #undef wxPG_FL_CUR_USES_CUSTOM_IMAGE
2464 #undef wxPG_FL_PRIMARY_FILLS_ENTIRE
2465 #undef wxPG_FL_VALUE_MODIFIED
2466 #undef wxPG_FL_MOUSE_INSIDE
2467 #undef wxPG_FL_FOCUSED
2468 #undef wxPG_FL_MOUSE_CAPTURED
2469 #undef wxPG_FL_INITIALIZED
2470 #undef wxPG_FL_ACTIVATION_BY_CLICK
2471 #undef wxPG_FL_DONT_CENTER_SPLITTER
2472 #undef wxPG_SUPPORT_TOOLTIPS
2473 #undef wxPG_DOUBLE_BUFFER
2474 #undef wxPG_ICON_WIDTH
2475 #undef wxPG_USE_RENDERER_NATIVE
2476 // Following are needed by the manager headers
2477 // #undef const wxString&
2480 // -----------------------------------------------------------------------
2484 #endif // _WX_PROPGRID_PROPGRID_H_