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_
15 #include "wx/dcclient.h"
16 #include "wx/scrolwin.h"
17 #include "wx/tooltip.h"
18 #include "wx/datetime.h"
20 #include "wx/propgrid/property.h"
21 #include "wx/propgrid/propgridiface.h"
25 extern WXDLLIMPEXP_PROPGRID
const wxChar
*wxPropertyGridNameStr
;
29 // -----------------------------------------------------------------------
31 // -----------------------------------------------------------------------
35 // This is required for sharing common global variables.
36 class WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass
40 wxPGGlobalVarsClass();
41 ~wxPGGlobalVarsClass();
43 // Used by advprops, but here to make things easier.
44 wxString m_pDefaultImageWildcard
;
46 // Map of editor class instances (keys are name string).
47 wxPGHashMapS2P m_mapEditorClasses
;
50 wxArrayPtrVoid m_arrValidators
; // These wxValidators need to be freed
53 wxPGHashMapS2P m_dictPropertyClassInfo
; // PropertyName -> ClassInfo
55 wxPGChoices
* m_fontFamilyChoices
;
57 // Replace with your own to affect all properties using default renderer.
58 wxPGCellRenderer
* m_defaultRenderer
;
60 wxPGChoices m_boolChoices
;
62 wxVariant m_vEmptyString
;
64 wxVariant m_vMinusOne
;
68 // Cached constant strings
69 wxPGCachedString m_strstring
;
70 wxPGCachedString m_strlong
;
71 wxPGCachedString m_strbool
;
72 wxPGCachedString m_strlist
;
74 wxPGCachedString m_strMin
;
75 wxPGCachedString m_strMax
;
76 wxPGCachedString m_strUnits
;
77 wxPGCachedString m_strInlineHelp
;
79 // If true then some things are automatically translated
80 bool m_autoGetTranslation
;
82 // > 0 if errors cannot or should not be shown in statusbar etc.
85 int m_extraStyle
; // global extra style
91 int HasExtraStyle( int style
) const { return (m_extraStyle
& style
); }
94 extern WXDLLIMPEXP_PROPGRID wxPGGlobalVarsClass
* wxPGGlobalVars
;
96 #define wxPGVariant_EmptyString (wxPGGlobalVars->m_vEmptyString)
97 #define wxPGVariant_Zero (wxPGGlobalVars->m_vZero)
98 #define wxPGVariant_MinusOne (wxPGGlobalVars->m_vMinusOne)
99 #define wxPGVariant_True (wxPGGlobalVars->m_vTrue)
100 #define wxPGVariant_False (wxPGGlobalVars->m_vFalse)
102 #define wxPGVariant_Bool(A) (A?wxPGVariant_True:wxPGVariant_False)
106 // -----------------------------------------------------------------------
108 /** @section propgrid_window_styles wxPropertyGrid Window Styles
110 SetWindowStyleFlag method can be used to modify some of these at run-time.
113 enum wxPG_WINDOW_STYLES
116 /** This will cause Sort() automatically after an item is added.
117 When inserting a lot of items in this mode, it may make sense to
118 use Freeze() before operations and Thaw() afterwards to increase
121 wxPG_AUTO_SORT
= 0x00000010,
123 /** Categories are not initially shown (even if added).
124 IMPORTANT NOTE: If you do not plan to use categories, then this
125 style will waste resources.
126 This flag can also be changed using wxPropertyGrid::EnableCategories method.
128 wxPG_HIDE_CATEGORIES
= 0x00000020,
130 /* This style combines non-categoric mode and automatic sorting.
132 wxPG_ALPHABETIC_MODE
= (wxPG_HIDE_CATEGORIES
|wxPG_AUTO_SORT
),
134 /** Modified values are shown in bold font. Changing this requires Refresh()
137 wxPG_BOLD_MODIFIED
= 0x00000040,
139 /** When wxPropertyGrid is resized, splitter moves to the center. This
140 behavior stops once the user manually moves the splitter.
142 wxPG_SPLITTER_AUTO_CENTER
= 0x00000080,
144 /** Display tooltips for cell text that cannot be shown completely. If
145 wxUSE_TOOLTIPS is 0, then this doesn't have any effect.
147 wxPG_TOOLTIPS
= 0x00000100,
149 /** Disables margin and hides all expand/collapse buttons that would appear
150 outside the margin (for sub-properties). Toggling this style automatically
151 expands all collapsed items.
153 wxPG_HIDE_MARGIN
= 0x00000200,
155 /** This style prevents user from moving the splitter.
157 wxPG_STATIC_SPLITTER
= 0x00000400,
159 /** Combination of other styles that make it impossible for user to modify
162 wxPG_STATIC_LAYOUT
= (wxPG_HIDE_MARGIN
|wxPG_STATIC_SPLITTER
),
164 /** Disables wxTextCtrl based editors for properties which
165 can be edited in another way.
167 Equals calling wxPropertyGrid::LimitPropertyEditing for all added
170 wxPG_LIMITED_EDITING
= 0x00000800,
172 /** wxPropertyGridManager only: Show toolbar for mode and page selection. */
173 wxPG_TOOLBAR
= 0x00001000,
175 /** wxPropertyGridManager only: Show adjustable text box showing description
176 or help text, if available, for currently selected property.
178 wxPG_DESCRIPTION
= 0x00002000
182 enum wxPG_EX_WINDOW_STYLES
186 NOTE: wxPG_EX_xxx are extra window styles and must be set using
187 SetExtraStyle() member function.
189 Speeds up switching to wxPG_HIDE_CATEGORIES mode. Initially, if
190 wxPG_HIDE_CATEGORIES is not defined, the non-categorized data storage is
191 not activated, and switching the mode first time becomes somewhat slower.
192 wxPG_EX_INIT_NOCAT activates the non-categorized data storage right away.
193 IMPORTANT NOTE: If you do plan not switching to non-categoric mode, or if
194 you don't plan to use categories at all, then using this style will result
195 in waste of resources.
198 wxPG_EX_INIT_NOCAT
= 0x00001000,
200 /** Extended window style that sets wxPropertyGridManager toolbar to not
203 wxPG_EX_NO_FLAT_TOOLBAR
= 0x00002000,
205 /** Shows alphabetic/categoric mode buttons from toolbar.
207 wxPG_EX_MODE_BUTTONS
= 0x00008000,
209 /** Show property help strings as tool tips instead as text on the status bar.
210 You can set the help strings using SetPropertyHelpString member function.
212 wxPG_EX_HELP_AS_TOOLTIPS
= 0x00010000,
214 /** Prevent TAB from focusing to wxButtons. This behavior was default
215 in version 1.2.0 and earlier.
216 NOTE! Tabbing to button doesn't work yet. Problem seems to be that on wxMSW
217 atleast the button doesn't properly propagate key events (yes, I'm using
220 //wxPG_EX_NO_TAB_TO_BUTTON = 0x00020000,
222 /** Allows relying on native double-buffering.
224 wxPG_EX_NATIVE_DOUBLE_BUFFERING
= 0x00080000,
226 /** Set this style to let user have ability to set values of properties to
227 unspecified state. Same as setting wxPG_PROP_AUTO_UNSPECIFIED for
230 wxPG_EX_AUTO_UNSPECIFIED_VALUES
= 0x00200000,
233 If this style is used, built-in attributes (such as wxPG_FLOAT_PRECISION
234 and wxPG_STRING_PASSWORD) are not stored into property's attribute storage
235 (thus they are not readable).
237 Note that this option is global, and applies to all wxPG property
240 wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
= 0x00400000,
243 With this style Validators on properties will work same as in
246 wxPG_EX_LEGACY_VALIDATORS
= 0x00800000,
248 /** Hides page selection buttons from toolbar.
250 wxPG_EX_HIDE_PAGE_BUTTONS
= 0x01000000
254 /** Combines various styles.
256 #define wxPG_DEFAULT_STYLE (0)
258 /** Combines various styles.
260 #define wxPGMAN_DEFAULT_STYLE (0)
265 // -----------------------------------------------------------------------
268 // Ids for sub-controls
269 // NB: It should not matter what these are.
270 #define wxPG_SUBID1 2
271 #define wxPG_SUBID2 3
272 #define wxPG_SUBID_TEMP1 4
274 // -----------------------------------------------------------------------
276 /** @class wxPGCommonValue
278 wxPropertyGrid stores information about common values in these
281 NB: Common value feature is not complete, and thus not mentioned in
284 class WXDLLIMPEXP_PROPGRID wxPGCommonValue
288 wxPGCommonValue( const wxString
& label
, wxPGCellRenderer
* renderer
)
291 m_renderer
= renderer
;
294 virtual ~wxPGCommonValue()
296 m_renderer
->DecRef();
299 virtual wxString
GetEditableText() const { return m_label
; }
300 const wxString
& GetLabel() const { return m_label
; }
301 wxPGCellRenderer
* GetRenderer() const { return m_renderer
; }
305 wxPGCellRenderer
* m_renderer
;
308 // -----------------------------------------------------------------------
310 /** @section propgrid_vfbflags wxPropertyGrid Validation Failure Behavior Flags
314 enum wxPG_VALIDATION_FAILURE_BEHAVIOR_FLAGS
317 /** Prevents user from leaving property unless value is valid. If this
318 behavior flag is not used, then value change is instead cancelled.
320 wxPG_VFB_STAY_IN_PROPERTY
= 0x01,
322 /** Calls wxBell() on validation failure.
324 wxPG_VFB_BEEP
= 0x02,
326 /** Cell with invalid value will be marked (with red colour).
328 wxPG_VFB_MARK_CELL
= 0x04,
330 /** Display customizable text message explaining the situation.
332 wxPG_VFB_SHOW_MESSAGE
= 0x08,
335 wxPG_VFB_DEFAULT
= wxPG_VFB_STAY_IN_PROPERTY
|wxPG_VFB_BEEP
,
337 /** Only used internally. */
338 wxPG_VFB_UNDEFINED
= 0x80
345 typedef wxByte wxPGVFBFlags
;
347 /** @class wxPGValidationInfo
349 Used to convey validation information to and from functions that
350 actually perform validation.
352 struct wxPGValidationInfo
354 /** Value to be validated.
358 /** Message displayed on validation failure.
360 wxString m_failureMessage
;
362 /** Validation failure behavior. Use wxPG_VFB_XXX flags.
364 wxPGVFBFlags m_failureBehavior
;
366 wxPGVFBFlags
GetFailureBehavior() const { return m_failureBehavior
; }
368 void SetFailureBehavior(wxPGVFBFlags failureBehavior
)
369 { m_failureBehavior
= failureBehavior
; }
371 const wxString
& GetFailureMessage() const { return m_failureMessage
; }
373 void SetFailureMessage(const wxString
& message
)
374 { m_failureMessage
= message
; }
377 // -----------------------------------------------------------------------
379 /** @section propgrid_pgactions wxPropertyGrid Action Identifiers
381 These are used with wxPropertyGrid::AddActionTrigger() and
382 wxPropertyGrid::ClearActionTriggers().
386 enum wxPG_KEYBOARD_ACTIONS
388 wxPG_ACTION_INVALID
= 0,
389 wxPG_ACTION_NEXT_PROPERTY
,
390 wxPG_ACTION_PREV_PROPERTY
,
391 wxPG_ACTION_EXPAND_PROPERTY
,
392 wxPG_ACTION_COLLAPSE_PROPERTY
,
393 wxPG_ACTION_CANCEL_EDIT
,
403 // -----------------------------------------------------------------------
406 // wxPropertyGrid::DoSelectProperty flags (selFlags)
408 // Focuses to created editor
409 #define wxPG_SEL_FOCUS 0x01
410 // Forces deletion and recreation of editor
411 #define wxPG_SEL_FORCE 0x02
412 // For example, doesn't cause EnsureVisible
413 #define wxPG_SEL_NONVISIBLE 0x04
414 // Do not validate editor's value before selecting
415 #define wxPG_SEL_NOVALIDATE 0x08
416 // Property being deselected is about to be deleted
417 #define wxPG_SEL_DELETING 0x10
418 // Property's values was set to unspecified by the user
419 #define wxPG_SEL_SETUNSPEC 0x20
420 // Property's event handler changed the value
421 #define wxPG_SEL_DIALOGVAL 0x40
424 // -----------------------------------------------------------------------
429 #define wxPG_FL_INITIALIZED 0x0001
430 // Set when creating editor controls if it was clicked on.
431 #define wxPG_FL_ACTIVATION_BY_CLICK 0x0002
432 #define wxPG_FL_DONT_CENTER_SPLITTER 0x0004
433 #define wxPG_FL_FOCUSED 0x0008
434 #define wxPG_FL_MOUSE_CAPTURED 0x0010
435 #define wxPG_FL_MOUSE_INSIDE 0x0020
436 #define wxPG_FL_VALUE_MODIFIED 0x0040
437 // don't clear background of m_wndEditor
438 #define wxPG_FL_PRIMARY_FILLS_ENTIRE 0x0080
439 // currently active editor uses custom image
440 #define wxPG_FL_CUR_USES_CUSTOM_IMAGE 0x0100
441 // cell colours override selection colours for selected cell
442 #define wxPG_FL_CELL_OVERRIDES_SEL 0x0200
443 #define wxPG_FL_SCROLLED 0x0400
444 // set when all added/inserted properties get hideable flag
445 #define wxPG_FL_ADDING_HIDEABLES 0x0800
446 // Disables showing help strings on statusbar.
447 #define wxPG_FL_NOSTATUSBARHELP 0x1000
448 // Marks that we created the state, so we have to destroy it too.
449 #define wxPG_FL_CREATEDSTATE 0x2000
450 // Set if scrollbar's existence was detected in last onresize.
451 #define wxPG_FL_SCROLLBAR_DETECTED 0x4000
452 // Set if wxPGMan requires redrawing of description text box.
453 #define wxPG_FL_DESC_REFRESH_REQUIRED 0x8000
454 // Set if contained in wxPropertyGridManager
455 #define wxPG_FL_IN_MANAGER 0x00020000
456 // Set after wxPropertyGrid is shown in its initial good size
457 #define wxPG_FL_GOOD_SIZE_SET 0x00040000
458 // Next navigation key event will get ignored
459 #define wxPG_FL_IGNORE_NEXT_NAVKEY 0x00080000
460 // Set when in SelectProperty.
461 #define wxPG_FL_IN_SELECT_PROPERTY 0x00100000
462 // Set when help string is shown in status bar
463 #define wxPG_FL_STRING_IN_STATUSBAR 0x00200000
464 // Splitter position has been custom-set by the user
465 #define wxPG_FL_SPLITTER_PRE_SET 0x00400000
466 // Validation failed. Clear on modify event.
467 #define wxPG_FL_VALIDATION_FAILED 0x00800000
468 // Set if selected is fully painted (ie. both image and text)
469 //#define wxPG_FL_SELECTED_IS_FULL_PAINT 0x01000000
470 // Set after page has been inserted to manager
471 #define wxPG_MAN_FL_PAGE_INSERTED 0x02000000
472 // Active editor control is abnormally large
473 #define wxPG_FL_ABNORMAL_EDITOR 0x04000000
474 // Recursion guard for OnCustomEditorEvent
475 #define wxPG_FL_IN_ONCUSTOMEDITOREVENT 0x08000000
476 #define wxPG_FL_VALUE_CHANGE_IN_EVENT 0x10000000
477 // Editor control width should not change on resize
478 #define wxPG_FL_FIXED_WIDTH_EDITOR 0x20000000
479 // Width of panel can be different than width of grid
480 #define wxPG_FL_HAS_VIRTUAL_WIDTH 0x40000000
481 // Prevents RecalculateVirtualSize re-entrancy
482 #define wxPG_FL_RECALCULATING_VIRTUAL_SIZE 0x80000000
484 #endif // #ifndef SWIG
486 #if !defined(__wxPG_SOURCE_FILE__) && !defined(SWIG)
487 // Reduce compile time, but still include in user app
488 #include "wx/propgrid/props.h"
491 // -----------------------------------------------------------------------
493 /** @class wxPropertyGrid
495 wxPropertyGrid is a specialized grid for editing properties
496 such as strings, numbers, flagsets, fonts, and colours. wxPropertySheet
497 used to do the very same thing, but it hasn't been updated for a while
498 and it is currently deprecated.
500 Please note that most member functions are inherited and as such not
501 documented on this page. This means you will probably also want to read
502 wxPropertyGridInterface class reference.
504 See also @ref overview_propgrid.
506 @section propgrid_window_styles_ Window Styles
508 See @ref propgrid_window_styles.
510 @section propgrid_event_handling Event Handling
512 To process input from a propertygrid control, use these event handler
513 macros to direct input to member functions that take a wxPropertyGridEvent
516 @beginEventTable{wxPropertyGridEvent}
517 @event{EVT_PG_SELECTED (id, func)}
518 Respond to wxEVT_PG_SELECTED event, generated when property value
519 has been changed by user.
520 @event{EVT_PG_CHANGING(id, func)}
521 Respond to wxEVT_PG_CHANGING event, generated when property value
522 is about to be changed by user. Use wxPropertyGridEvent::GetValue()
523 to take a peek at the pending value, and wxPropertyGridEvent::Veto()
524 to prevent change from taking place, if necessary.
525 @event{EVT_PG_HIGHLIGHTED(id, func)}
526 Respond to wxEVT_PG_HIGHLIGHTED event, which occurs when mouse
527 moves over a property. Event's property is NULL if hovered area does
528 not belong to any property.
529 @event{EVT_PG_RIGHT_CLICK(id, func)}
530 Respond to wxEVT_PG_RIGHT_CLICK event, which occurs when property is
531 clicked on with right mouse button.
532 @event{EVT_PG_DOUBLE_CLICK(id, func)}
533 Respond to wxEVT_PG_DOUBLE_CLICK event, which occurs when property is
534 double-clicked onwith left mouse button.
535 @event{EVT_PG_ITEM_COLLAPSED(id, func)}
536 Respond to wxEVT_PG_ITEM_COLLAPSED event, generated when user collapses
537 a property or category..
538 @event{EVT_PG_ITEM_EXPANDED(id, func)}
539 Respond to wxEVT_PG_ITEM_EXPANDED event, generated when user expands
540 a property or category..
545 - Use Freeze() and Thaw() respectively to disable and enable drawing. This
546 will also delay sorting etc. miscellaneous calculations to the last
552 class WXDLLIMPEXP_PROPGRID
553 wxPropertyGrid
: public wxScrolledWindow
, public wxPropertyGridInterface
555 friend class wxPropertyGridPageState
;
556 friend class wxPropertyGridInterface
;
557 friend class wxPropertyGridManager
;
558 friend class wxPGCanvas
;
561 DECLARE_DYNAMIC_CLASS(wxPropertyGrid
)
566 %pythonAppend wxPropertyGrid
{
567 self
._setOORInfo(self
)
568 self
.DoDefaultTypeMappings()
569 self
.edited_objects
= {}
570 self
.DoDefaultValueTypeMappings()
571 if not hasattr(self
.__class__
,'_vt2setter'):
572 self
.__class__
._vt2setter
= {}
574 %pythonAppend
wxPropertyGrid() ""
576 wxPropertyGrid( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
577 const wxPoint
& pos
= wxDefaultPosition
,
578 const wxSize
& size
= wxDefaultSize
,
579 long style
= wxPG_DEFAULT_STYLE
,
580 const wxChar
* name
= wxPyPropertyGridNameStr
);
581 %RenameCtor
(PrePropertyGrid
, wxPropertyGrid());
585 Two step constructor.
587 Call Create when this constructor is called to build up the
592 /** The default constructor. The styles to be used are styles valid for
593 the wxWindow and wxScrolledWindow.
594 @see @link wndflags Additional Window Styles@endlink
596 wxPropertyGrid( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
597 const wxPoint
& pos
= wxDefaultPosition
,
598 const wxSize
& size
= wxDefaultSize
,
599 long style
= wxPG_DEFAULT_STYLE
,
600 const wxChar
* name
= wxPropertyGridNameStr
);
603 virtual ~wxPropertyGrid();
606 /** Adds given key combination to trigger given action.
608 Which action to trigger. See @link pgactions List of list of
609 wxPropertyGrid actions@endlink.
611 void AddActionTrigger( int action
, int keycode
, int modifiers
= 0 );
614 This static function enables or disables automatic use of
615 wxGetTranslation for following strings: wxEnumProperty list labels,
616 wxFlagsProperty sub-property labels.
620 static void AutoGetTranslation( bool enable
);
623 Changes value of a property, as if from an editor.
625 Use this instead of SetPropertyValue() if you need the value to run
626 through validation process, and also send the property change event.
629 Returns true if value was successfully changed.
631 bool ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
);
634 Centers the splitter.
636 If argument is true, automatic splitter centering is enabled (only
637 applicapple if style wxPG_SPLITTER_AUTO_CENTER was defined).
639 void CenterSplitter( bool enable_auto_centering
= false );
641 /** Deletes all properties.
643 virtual void Clear();
645 /** Clears action triggers for given action.
647 Which action to trigger. See @link pgactions List of list of
648 wxPropertyGrid actions@endlink.
650 void ClearActionTriggers( int action
);
652 /** Forces updating the value of property from the editor control.
654 Note that wxEVT_PG_CHANGING and wxEVT_PG_CHANGED are dispatched using
655 ProcessEvent, meaning your event handlers will be called immediately.
658 Returns true if anything was changed.
660 virtual bool CommitChangesFromEditor( wxUint32 flags
= 0 );
665 Whenever the control is created without any parameters, use Create to
666 actually create it. Don't access the control's public methods before
667 this is called @see @link wndflags Additional Window Styles@endlink
669 bool Create( wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
670 const wxPoint
& pos
= wxDefaultPosition
,
671 const wxSize
& size
= wxDefaultSize
,
672 long style
= wxPG_DEFAULT_STYLE
,
673 const wxChar
* name
= wxPropertyGridNameStr
);
676 Call when editor widget's contents is modified.
678 For example, this is called when changes text in wxTextCtrl (used in
679 wxStringProperty and wxIntProperty).
682 This function should only be called by custom properties.
684 @see wxPGProperty::OnEvent()
686 void EditorsValueWasModified() { m_iFlags
|= wxPG_FL_VALUE_MODIFIED
; }
688 /** Reverse of EditorsValueWasModified().
691 This function should only be called by custom properties.
693 void EditorsValueWasNotModified()
695 m_iFlags
&= ~(wxPG_FL_VALUE_MODIFIED
);
699 Enables or disables (shows/hides) categories according to parameter
702 bool EnableCategories( bool enable
);
704 /** Scrolls and/or expands items to ensure that the given item is visible.
705 Returns true if something was actually done.
707 bool EnsureVisible( wxPGPropArg id
);
710 Reduces column sizes to minimum possible that contents are still
711 visibly (naturally some margin space will be applied as well).
714 Minimum size for the grid to still display everything.
717 Does not work well with wxPG_SPLITTER_AUTO_CENTER window style.
719 This function only works properly if grid size prior to call was already
722 Note that you can also get calculated column widths by calling
723 GetState->GetColumnWidth() immediately after this function returns.
727 wxSize sz
= m_pState
->DoFitColumns();
732 Returns wxWindow that the properties are painted on, and which should
733 be used as the parent for editor controls.
735 wxPanel
* GetPanel() const
740 /** Returns current category caption background colour. */
741 wxColour
GetCaptionBackgroundColour() const { return m_colCapBack
; }
743 wxFont
& GetCaptionFont() { return m_captionFont
; }
745 const wxFont
& GetCaptionFont() const { return m_captionFont
; }
747 /** Returns current category caption text colour. */
748 wxColour
GetCaptionForegroundColour() const { return m_colCapFore
; }
750 /** Returns current cell background colour. */
751 wxColour
GetCellBackgroundColour() const { return m_colPropBack
; }
753 /** Returns current cell text colour when disabled. */
754 wxColour
GetCellDisabledTextColour() const { return m_colDisPropFore
; }
756 /** Returns current cell text colour. */
757 wxColour
GetCellTextColour() const { return m_colPropFore
; }
759 /** Returns number of columns on current page. */
760 int GetColumnCount() const
762 return m_pState
->m_colWidths
.size();
765 /** Returns colour of empty space below properties. */
766 wxColour
GetEmptySpaceColour() const { return m_colEmptySpace
; }
768 /** Returns height of highest characters of used font. */
769 int GetFontHeight() const { return m_fontHeight
; }
771 /** Returns pointer to itself. Dummy function that enables same kind
772 of code to use wxPropertyGrid and wxPropertyGridManager.
774 wxPropertyGrid
* GetGrid() { return this; }
776 /** Returns rectangle of custom paint image.
778 wxRect
GetImageRect( wxPGProperty
* p
, int item
) const;
780 /** Returns size of the custom paint image in front of property.
781 If no argument is given, returns preferred size.
783 wxSize
GetImageSize( wxPGProperty
* p
= NULL
, int item
= -1 ) const;
786 /** Returns last item which could be iterated using given flags.
788 See @ref propgrid_iterator_flags.
790 wxPGProperty
* GetLastItem( int flags
= wxPG_ITERATE_DEFAULT
)
792 return m_pState
->GetLastItem(flags
);
795 const wxPGProperty
* GetLastItem( int flags
= wxPG_ITERATE_DEFAULT
) const
797 return m_pState
->GetLastItem(flags
);
801 /** Returns colour of lines between cells. */
802 wxColour
GetLineColour() const { return m_colLine
; }
804 /** Returns background colour of margin. */
805 wxColour
GetMarginColour() const { return m_colMargin
; }
807 /** Returns cell background colour of a property. */
808 wxColour
GetPropertyBackgroundColour( wxPGPropArg id
) const;
810 /** Returns cell background colour of a property. */
811 wxColour
GetPropertyTextColour( wxPGPropArg id
) const;
813 /** Returns "root property". It does not have name, etc. and it is not
814 visible. It is only useful for accessing its children.
816 wxPGProperty
* GetRoot() const { return m_pState
->m_properties
; }
818 /** Returns height of a single grid row (in pixels). */
819 int GetRowHeight() const { return m_lineHeight
; }
821 /** Returns currently selected property. */
822 wxPGProperty
* GetSelectedProperty () const { return GetSelection(); }
824 /** Returns currently selected property. */
825 wxPGProperty
* GetSelection() const
830 /** Returns current selection background colour. */
831 wxColour
GetSelectionBackgroundColour() const { return m_colSelBack
; }
833 /** Returns current selection text colour. */
834 wxColour
GetSelectionForegroundColour() const { return m_colSelFore
; }
836 /** Returns current splitter x position. */
837 int GetSplitterPosition() const
838 { return m_pState
->DoGetSplitterPosition(0); }
840 /** Returns wxTextCtrl active in currently selected property, if any. Takes
841 into account wxOwnerDrawnComboBox.
843 wxTextCtrl
* GetEditorTextCtrl() const;
845 wxPGValidationInfo
& GetValidationInfo()
847 return m_validationInfo
;
850 /** Returns current vertical spacing. */
851 int GetVerticalSpacing() const { return (int)m_vspacing
; }
853 /** Returns true if editor's value was marked modified.
855 bool IsEditorsValueModified() const
856 { return ( m_iFlags
& wxPG_FL_VALUE_MODIFIED
) ? true : false; }
858 /** Returns information about arbitrary position in the grid.
860 For wxPropertyGridHitTestResult definition, see
861 wxPropertyGridPageState::HitTest().
863 wxPropertyGridHitTestResult
HitTest( const wxPoint
& pt
) const;
865 /** Returns true if any property has been modified by the user. */
866 bool IsAnyModified() const { return (m_pState
->m_anyModified
>0); }
869 Returns true if updating is frozen (ie Freeze() called but not yet
872 bool IsFrozen() const { return (m_frozen
>0)?true:false; }
874 /** Redraws given property.
876 virtual void RefreshProperty( wxPGProperty
* p
);
879 /** Registers a new editor class.
881 Pointer to the editor class instance that should be used.
883 static wxPGEditor
* RegisterEditorClass( wxPGEditor
* editor
,
884 const wxString
& name
,
885 bool noDefCheck
= false );
888 /** Resets all colours to the original system values.
894 Editor widget is automatically created, but not focused unless focus is
895 true. This will generate wxEVT_PG_SELECT event.
899 True if selection finished successfully. Usually only fails if
900 current value in editor is not valid.
901 @see wxPropertyGrid::Unselect
903 bool SelectProperty( wxPGPropArg id
, bool focus
= false )
905 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
906 return DoSelectProperty(p
,focus
?wxPG_SEL_FOCUS
:0);
909 /** Changes keyboard shortcut to push the editor button.
911 You can set default with keycode 0. Good value for the platform is
912 guessed, but don't expect it to be very accurate.
914 void SetButtonShortcut( int keycode
,
915 bool ctrlDown
= false,
916 bool altDown
= false );
918 /** Sets category caption background colour. */
919 void SetCaptionBackgroundColour(const wxColour
& col
);
921 /** Sets category caption text colour. */
922 void SetCaptionTextColour(const wxColour
& col
);
924 /** Sets default cell background colour - applies to property cells.
925 Note that appearance of editor widgets may not be affected.
927 void SetCellBackgroundColour(const wxColour
& col
);
929 /** Sets cell text colour for disabled properties.
931 void SetCellDisabledTextColour(const wxColour
& col
);
933 /** Sets default cell text colour - applies to property name and value text.
934 Note that appearance of editor widgets may not be affected.
936 void SetCellTextColour(const wxColour
& col
);
938 /** Set number of columns (2 or more).
940 void SetColumnCount( int colCount
)
942 m_pState
->SetColumnCount(colCount
);
947 Sets the 'current' category - Append will add non-category properties
950 void SetCurrentCategory( wxPGPropArg id
)
952 wxPG_PROP_ARG_CALL_PROLOG()
953 wxPropertyCategory
* pc
= wxDynamicCast(p
, wxPropertyCategory
);
955 m_pState
->m_currentCategory
= pc
;
958 /** Sets colour of empty space below properties. */
959 void SetEmptySpaceColour(const wxColour
& col
);
961 /** Sets colour of lines between cells. */
962 void SetLineColour(const wxColour
& col
);
964 /** Sets background colour of margin. */
965 void SetMarginColour(const wxColour
& col
);
967 /** Sets property attribute for all applicapple properties.
968 Be sure to use this method only after all properties have been
971 void SetPropertyAttributeAll( const wxString
& attrName
, wxVariant value
);
973 /** Sets background colour of property and all its children. Colours of
974 captions are not affected. Background brush cache is optimized for often
975 set colours to be set last.
977 void SetPropertyBackgroundColour( wxPGPropArg id
, const wxColour
& col
);
979 /** Resets text and background colours of given property.
981 void SetPropertyColoursToDefault( wxPGPropArg id
);
983 /** Sets text colour of property and all its children.
985 void SetPropertyTextColour( wxPGPropArg id
,
987 bool recursively
= true );
990 Sets selection background colour - applies to selected property name
993 void SetSelectionBackgroundColour(const wxColour
& col
);
996 Sets selection foreground colour - applies to selected property name
999 void SetSelectionTextColour(const wxColour
& col
);
1001 /** Sets x coordinate of the splitter.
1003 Splitter position cannot exceed grid size, and therefore setting it
1004 during form creation may fail as initial grid size is often smaller
1005 than desired splitter position, especially when sizers are being used.
1007 void SetSplitterPosition( int newxpos
, int col
= 0 )
1009 DoSetSplitterPosition_(newxpos
, true, col
);
1010 m_iFlags
|= wxPG_FL_SPLITTER_PRE_SET
;
1013 /** Set virtual width for this particular page. Width -1 indicates that the
1014 virtual width should be disabled. */
1015 void SetVirtualWidth( int width
);
1017 /** Sets name of a property.
1019 Name or pointer of property which name to change.
1023 void SetPropertyName( wxPGPropArg id
, const wxString
& newname
)
1025 wxPG_PROP_ARG_CALL_PROLOG()
1026 DoSetPropertyName( p
, newname
);
1029 /** Moves splitter as left as possible, while still allowing all
1030 labels to be shown in full.
1032 If false, will still allow sub-properties (ie. properties which
1033 parent is not root or category) to be cropped.
1035 void SetSplitterLeft( bool subProps
= false )
1037 m_pState
->SetSplitterLeft(subProps
);
1040 /** Sets vertical spacing. Can be 1, 2, or 3 - a value relative to font
1041 height. Value of 2 should be default on most platforms.
1043 On wxMSW, wxComboBox, when used as property editor widget, will spill
1044 out with anything less than 3.
1046 void SetVerticalSpacing( int vspacing
)
1048 m_vspacing
= (unsigned char)vspacing
;
1049 CalculateFontAndBitmapStuff( vspacing
);
1050 if ( !m_pState
->m_itemsAdded
) Refresh();
1053 /** Shows an brief error message that is related to a property. */
1054 void ShowPropertyError( wxPGPropArg id
, const wxString
& msg
)
1056 wxPG_PROP_ARG_CALL_PROLOG()
1057 DoShowPropertyError(p
, msg
);
1060 /** Sorts all items at all levels (except sub-properties). */
1063 /** Sorts children of a category.
1065 void SortChildren( wxPGPropArg id
);
1067 /////////////////////////////////////////////////////////////////
1069 // Following methods do not need to be (currently) documented
1071 /////////////////////////////////////////////////////////////////
1073 bool HasVirtualWidth() const
1074 { return (m_iFlags
& wxPG_FL_HAS_VIRTUAL_WIDTH
) ? true : false; }
1076 const wxPGCommonValue
* GetCommonValue( unsigned int i
) const
1078 return (wxPGCommonValue
*) m_commonValues
[i
];
1081 /** Returns number of common values.
1083 unsigned int GetCommonValueCount() const
1085 return m_commonValues
.size();
1088 /** Returns label of given common value.
1090 wxString
GetCommonValueLabel( unsigned int i
) const
1092 wxASSERT( GetCommonValue(i
) );
1093 return GetCommonValue(i
)->GetLabel();
1097 Returns index of common value that will truly change value to
1100 int GetUnspecifiedCommonValue() const { return m_cvUnspecified
; }
1102 /** Set index of common value that will truly change value to unspecified.
1103 Using -1 will set none to have such effect.
1106 void SetUnspecifiedCommonValue( int index
) { m_cvUnspecified
= index
; }
1109 Shortcut for creating dialog-caller button. Used, for example, by
1112 This should only be called by properties.
1114 wxWindow
* GenerateEditorButton( const wxPoint
& pos
, const wxSize
& sz
);
1116 /** Fixes position of wxTextCtrl-like control (wxSpinCtrl usually
1117 fits as one). Call after control has been created (but before
1120 void FixPosForTextCtrl( wxWindow
* ctrl
,
1121 const wxPoint
& offset
= wxPoint(0, 0) );
1123 /** Shortcut for creating text editor widget.
1125 Same as pos given for CreateEditor.
1127 Same as sz given for CreateEditor.
1129 Initial text for wxTextCtrl.
1131 If right-side control, such as button, also created, then create it
1132 first and pass it as this parameter.
1134 Extra style flags to pass for wxTextCtrl.
1136 Note that this should generally be called only by new classes derived
1139 wxWindow
* GenerateEditorTextCtrl( const wxPoint
& pos
,
1141 const wxString
& value
,
1142 wxWindow
* secondary
,
1146 /* Generates both textctrl and button.
1148 wxWindow
* GenerateEditorTextCtrlAndButton( const wxPoint
& pos
,
1149 const wxSize
& sz
, wxWindow
** psecondary
, int limited_editing
,
1150 wxPGProperty
* property
);
1152 /** Generates position for a widget editor dialog box.
1154 Property for which dialog is positioned.
1156 Known or over-approximated size of the dialog.
1158 Position for dialog.
1160 wxPoint
GetGoodEditorDialogPosition( wxPGProperty
* p
,
1163 // Converts escape sequences in src_str to newlines,
1164 // tabs, etc. and copies result to dst_str.
1165 static wxString
& ExpandEscapeSequences( wxString
& dst_str
,
1166 wxString
& src_str
);
1168 // Converts newlines, tabs, etc. in src_str to escape
1169 // sequences, and copies result to dst_str.
1170 static wxString
& CreateEscapeSequences( wxString
& dst_str
,
1171 wxString
& src_str
);
1174 Returns rectangle that fully contains properties between and including
1177 wxRect
GetPropertyRect( const wxPGProperty
* p1
,
1178 const wxPGProperty
* p2
) const;
1180 /** Returns pointer to current active primary editor control (NULL if none).
1182 If editor uses clipper window, pointer is returned to the actual
1183 editor, not the clipper.
1185 wxWindow
* GetEditorControl() const;
1187 /** Adjusts given position if topCtrlWnd is child of clipper window.
1189 bool AdjustPosForClipperWindow( wxWindow
* topCtrlWnd
, int* x
, int* y
);
1191 wxWindow
* GetPrimaryEditor() const
1193 return GetEditorControl();
1197 Returns pointer to current active secondary editor control (NULL if
1200 wxWindow
* GetEditorControlSecondary() const
1202 return m_wndEditor2
;
1208 Generates contents for string dst based on the contents of
1211 Format will be "(preDelim)str1(postDelim) (preDelim)str2(postDelim) and
1212 so on. Set flags to 1 inorder to convert backslashes to double-back-
1213 slashes and "(preDelims)"'s to "(preDelims)".
1215 static void ArrayStringToString( wxString
& dst
, const wxArrayString
& src
,
1216 wxChar preDelim
, wxChar postDelim
,
1219 // Mostly useful for page switching.
1220 void SwitchState( wxPropertyGridPageState
* pNewState
);
1222 /** Pass this function to Connect calls in propertyclass::CreateEditor.
1224 void OnCustomEditorEvent( wxCommandEvent
&event
);
1226 long GetInternalFlags() const { return m_iFlags
; }
1227 void SetInternalFlag( long flag
) { m_iFlags
|= flag
; }
1228 void ClearInternalFlag( long flag
) { m_iFlags
&= ~(flag
); }
1229 void IncFrozen() { m_frozen
++; }
1230 void DecFrozen() { m_frozen
--; }
1232 void OnComboItemPaint( wxPGCustomComboControl
* pCb
,int item
,wxDC
& dc
,
1233 wxRect
& rect
,int flags
);
1235 // Used by simple check box for keyboard navigation
1236 void SendNavigationKeyEvent( int dir
);
1238 /** Standardized double-to-string conversion.
1240 static void DoubleToString( wxString
& target
,
1244 wxString
* precTemplate
);
1247 Call this from wxPGProperty::OnEvent() to cause property value to be
1248 changed after the function returns (with true as return value).
1249 ValueChangeInEvent() must be used if you wish the application to be
1250 able to use wxEVT_PG_CHANGING to potentially veto the given value.
1252 void ValueChangeInEvent( wxVariant variant
)
1254 m_changeInEventValue
= variant
;
1255 m_iFlags
|= wxPG_FL_VALUE_CHANGE_IN_EVENT
;
1258 /** Returns true if given event is from first of an array of buttons
1259 (as can be in case when wxPGMultiButton is used).
1261 bool IsMainButtonEvent( const wxEvent
& event
)
1263 return (event
.GetEventType() == wxEVT_COMMAND_BUTTON_CLICKED
)
1264 && (m_wndSecId
== event
.GetId());
1267 /** Pending value is expected to be passed in PerformValidation().
1269 virtual bool DoPropertyChanged( wxPGProperty
* p
,
1270 unsigned int selFlags
= 0 );
1273 Runs all validation functionality (includes sending wxEVT_PG_CHANGING).
1274 Returns true if all tests passed.
1276 virtual bool PerformValidation( wxPGProperty
* p
, wxVariant
& pendingValue
);
1278 /** Called when validation for given property fails.
1280 Value which failed in validation.
1282 Return true if user is allowed to change to another property even
1283 if current has invalid value.
1285 To add your own validation failure behavior, override
1286 wxPropertyGrid::DoOnValidationFailure().
1288 bool OnValidationFailure( wxPGProperty
* property
, wxVariant
& invalidValue
)
1290 bool res
= DoOnValidationFailure(property
, invalidValue
);
1291 property
->SetFlag(wxPG_PROP_INVALID_VALUE
);
1295 /** Called to indicate property and editor has valid value now.
1297 void OnValidationFailureReset( wxPGProperty
* property
)
1299 if ( property
&& property
->HasFlag(wxPG_PROP_INVALID_VALUE
) )
1301 DoOnValidationFailureReset(property
);
1302 property
->ClearFlag(wxPG_PROP_INVALID_VALUE
);
1304 m_validationInfo
.m_failureMessage
.clear();
1307 /** Override in derived class to display error messages in custom manner
1308 (these message usually only result from validation failure).
1310 virtual void DoShowPropertyError( wxPGProperty
* property
,
1311 const wxString
& msg
);
1313 /** Override to customize property validation failure behavior.
1315 Value which failed in validation.
1317 Return true if user is allowed to change to another property even
1318 if current has invalid value.
1320 virtual bool DoOnValidationFailure( wxPGProperty
* property
,
1321 wxVariant
& invalidValue
);
1323 /** Override to customize resetting of property validation failure status.
1325 Property is guaranteed to have flag wxPG_PROP_INVALID_VALUE set.
1327 virtual void DoOnValidationFailureReset( wxPGProperty
* property
);
1329 int GetSpacingY() const { return m_spacingy
; }
1332 Must be called in wxPGEditor::CreateControls() if primary editor window
1333 is wxTextCtrl, just before textctrl is created.
1335 Initial text value of created wxTextCtrl.
1337 void SetupTextCtrlValue( const wxString text
) { m_prevTcValue
= text
; }
1340 Unfocuses or closes editor if one was open, but does not deselect
1343 bool UnfocusEditor();
1348 wxPropertyGridPageState used by the grid is created here.
1350 If grid is used in wxPropertyGridManager, there is no point overriding
1351 this - instead, set custom wxPropertyGridPage classes.
1353 virtual wxPropertyGridPageState
* CreateState() const;
1358 // Control font changer helper.
1359 void SetCurControlBoldFont();
1362 // Public methods for semi-public use
1363 // (not protected for optimization)
1365 bool DoSelectProperty( wxPGProperty
* p
, unsigned int flags
= 0 );
1367 // Overridden functions.
1368 virtual bool Destroy();
1369 virtual wxSize
DoGetBestSize() const;
1370 // Returns property at given y coordinate (relative to grid's top left).
1371 wxPGProperty
* GetItemAtY( int y
) const { return DoGetItemAtY(y
); }
1373 virtual void Refresh( bool eraseBackground
= true,
1374 const wxRect
*rect
= (const wxRect
*) NULL
);
1375 virtual bool SetFont( const wxFont
& font
);
1376 #if wxPG_SUPPORT_TOOLTIPS
1377 void SetToolTip( const wxString
& tipString
);
1379 virtual void Freeze();
1380 virtual void SetExtraStyle( long exStyle
);
1381 virtual void Thaw();
1386 #ifndef wxPG_ICON_WIDTH
1387 wxBitmap
*m_expandbmp
, *m_collbmp
;
1390 wxCursor
*m_cursorSizeWE
;
1392 /** wxWindow pointers to editor control(s). */
1393 wxWindow
*m_wndEditor
;
1394 wxWindow
*m_wndEditor2
;
1396 /** wxPGCanvas instance. */
1399 #if wxPG_DOUBLE_BUFFER
1400 wxBitmap
*m_doubleBuffer
;
1403 wxArrayPtrVoid
*m_windowsToDelete
;
1405 /** Local time ms when control was created. */
1406 wxLongLong m_timeCreated
;
1408 /** wxPGProperty::OnEvent can change value by setting this. */
1409 wxVariant m_changeInEventValue
;
1411 /** Id of m_wndEditor2, or its first child, if any. */
1414 /** Extra Y spacing between the items. */
1417 /** Control client area width; updated on resize. */
1420 /** Control client area height; updated on resize. */
1423 /** Current non-client width (needed when auto-centering). */
1426 /** Non-client width (auto-centering helper). */
1429 /** Previously recorded scroll start position. */
1433 The gutter spacing in front and back of the image.
1434 This determines the amount of spacing in front of each item
1438 /** Includes separator line. */
1441 /** Gutter*2 + image width. */
1444 // y spacing for expand/collapse button.
1445 int m_buttonSpacingY
;
1447 /** Extra margin for expanded sub-group items. */
1448 int m_subgroup_extramargin
;
1451 The image width of the [+] icon.
1453 This is also calculated in the gutter
1457 #ifndef wxPG_ICON_WIDTH
1460 The image height of the [+] icon.
1462 This is calculated as minimal size and to align
1467 /** Current cursor id. */
1471 This captionFont is made equal to the font of the wxScrolledWindow.
1473 As extra the bold face is set on it when this is wanted by the user
1476 wxFont m_captionFont
;
1478 int m_fontHeight
; // Height of the font.
1480 // Base keycode for triggering push button.
1481 int m_pushButKeyCode
;
1483 /** m_splitterx when drag began. */
1484 int m_startingSplitterX
;
1487 Index to splitter currently being dragged (0=one after the first
1490 int m_draggedSplitter
;
1492 /** Changed property, calculated in PerformValidation(). */
1493 wxPGProperty
* m_chgInfo_changedProperty
;
1496 Lowest property for which editing happened, but which does not have
1499 wxPGProperty
* m_chgInfo_baseChangedProperty
;
1501 /** Changed property value, calculated in PerformValidation(). */
1502 wxVariant m_chgInfo_pendingValue
;
1504 /** Passed to SetValue. */
1505 wxVariant m_chgInfo_valueList
;
1507 /** Validation information. */
1508 wxPGValidationInfo m_validationInfo
;
1510 /** Actions and keys that trigger them. */
1511 wxPGHashMapI2I m_actionTriggers
;
1517 /** Bits are used to indicate which colours are customized. */
1518 unsigned short m_coloursCustomized
;
1520 /** x - m_splitterx. */
1521 signed char m_dragOffset
;
1523 /** 0 = not dragging, 1 = drag just started, 2 = drag in progress */
1524 unsigned char m_dragStatus
;
1526 /** 0 = margin, 1 = label, 2 = value. */
1527 unsigned char m_mouseSide
;
1529 /** True when editor control is focused. */
1530 unsigned char m_editorFocused
;
1532 /** 1 if m_latsCaption is also the bottommost caption. */
1533 //unsigned char m_lastCaptionBottomnest;
1535 /** Set to 1 when graphics frozen. */
1536 unsigned char m_frozen
;
1538 unsigned char m_vspacing
;
1540 // Does triggering push button need Alt down?
1541 unsigned char m_pushButKeyCodeNeedsAlt
;
1543 // Does triggering push button need Ctrl down?
1544 unsigned char m_pushButKeyCodeNeedsCtrl
;
1546 // Used to track when Alt/Ctrl+Key was consumed.
1547 unsigned char m_keyComboConsumed
;
1549 /** 1 if in DoPropertyChanged() */
1550 unsigned char m_inDoPropertyChanged
;
1552 /** 1 if in CommitChangesFromEditor() */
1553 unsigned char m_inCommitChangesFromEditor
;
1555 /** 1 if in DoSelectProperty() */
1556 unsigned char m_inDoSelectProperty
;
1558 wxPGVFBFlags m_permanentValidationFailureBehavior
; // Set by app
1560 /** Internal flags - see wxPG_FL_XXX constants. */
1563 /** When drawing next time, clear this many item slots at the end. */
1564 int m_clearThisMany
;
1566 /** Pointer to selected property. Note that this is duplicated in
1567 m_state for better transiency between pages so that the selected
1568 item can be retained.
1570 wxPGProperty
* m_selected
;
1572 // pointer to property that has mouse hovering
1573 wxPGProperty
* m_propHover
;
1575 // EventObject for wxPropertyGridEvents
1576 wxWindow
* m_eventObject
;
1578 // What (global) window is currently focused (needed to resolve event
1580 wxWindow
* m_curFocused
;
1583 wxEvtHandler
* m_tlwHandler
;
1588 // y coordinate of property that mouse hovering
1590 // Which column's editor is selected (usually 1)?
1593 // x relative to splitter (needed for resize).
1596 // lines between cells
1598 // property labels and values are written in this colour
1599 wxColour m_colPropFore
;
1600 // or with this colour when disabled
1601 wxColour m_colDisPropFore
;
1602 // background for m_colPropFore
1603 wxColour m_colPropBack
;
1604 // text color for captions
1605 wxColour m_colCapFore
;
1606 // background color for captions
1607 wxColour m_colCapBack
;
1608 // foreground for selected property
1609 wxColour m_colSelFore
;
1610 // background for selected property (actually use background color when
1611 // control out-of-focus)
1612 wxColour m_colSelBack
;
1613 // background colour for margin
1614 wxColour m_colMargin
;
1615 // background colour for empty space below the grid
1616 wxColour m_colEmptySpace
;
1618 // NB: These *cannot* be moved to globals.
1620 // Array of background colour brushes.
1621 wxArrayPtrVoid m_arrBgBrushes
;
1622 // Array of foreground colours.
1623 wxArrayPtrVoid m_arrFgCols
;
1625 // labels when properties use common values
1626 wxArrayPtrVoid m_commonValues
;
1627 // Which cv selection really sets value to unspecified?
1628 int m_cvUnspecified
;
1630 // Used to skip excess text editor events
1631 wxString m_prevTcValue
;
1635 // Sets some members to defaults (called constructors).
1638 // Initializes some members (called by Create and complex constructor).
1641 void OnPaint(wxPaintEvent
&event
);
1643 // main event receivers
1644 void OnMouseMove( wxMouseEvent
&event
);
1645 void OnMouseMoveBottom( wxMouseEvent
&event
);
1646 void OnMouseClick( wxMouseEvent
&event
);
1647 void OnMouseRightClick( wxMouseEvent
&event
);
1648 void OnMouseDoubleClick( wxMouseEvent
&event
);
1649 void OnMouseUp( wxMouseEvent
&event
);
1650 void OnKey( wxKeyEvent
&event
);
1651 void OnKeyUp( wxKeyEvent
&event
);
1652 void OnNavigationKey( wxNavigationKeyEvent
& event
);
1653 void OnResize( wxSizeEvent
&event
);
1656 bool HandleMouseMove( int x
, unsigned int y
, wxMouseEvent
&event
);
1657 bool HandleMouseClick( int x
, unsigned int y
, wxMouseEvent
&event
);
1658 bool HandleMouseRightClick( int x
, unsigned int y
, wxMouseEvent
&event
);
1659 bool HandleMouseDoubleClick( int x
, unsigned int y
, wxMouseEvent
&event
);
1660 bool HandleMouseUp( int x
, unsigned int y
, wxMouseEvent
&event
);
1661 void HandleKeyEvent( wxKeyEvent
&event
);
1662 // Handle TAB and ESCAPE in control
1663 bool HandleChildKey( wxKeyEvent
& event
);
1665 void OnMouseEntry( wxMouseEvent
&event
);
1667 void OnIdle( wxIdleEvent
&event
);
1668 void OnFocusEvent( wxFocusEvent
&event
);
1669 void OnChildFocusEvent( wxChildFocusEvent
& event
);
1671 bool OnMouseCommon( wxMouseEvent
&event
, int* px
, int *py
);
1672 bool OnMouseChildCommon( wxMouseEvent
&event
, int* px
, int *py
);
1674 // sub-control event handlers
1675 void OnMouseClickChild( wxMouseEvent
&event
);
1676 void OnMouseRightClickChild( wxMouseEvent
&event
);
1677 void OnMouseMoveChild( wxMouseEvent
&event
);
1678 void OnMouseUpChild( wxMouseEvent
&event
);
1679 void OnChildKeyDown( wxKeyEvent
&event
);
1680 void OnChildKeyUp( wxKeyEvent
&event
);
1682 void OnCaptureChange( wxMouseCaptureChangedEvent
&event
);
1684 void OnScrollEvent( wxScrollWinEvent
&event
);
1686 void OnSysColourChanged( wxSysColourChangedEvent
&event
);
1691 Adjust the centering of the bitmap icons (collapse / expand) when the
1692 caption font changes.
1694 They need to be centered in the middle of the font, so a bit of deltaY
1695 adjustment is needed. On entry, m_captionFont must be set to window
1696 font. It will be modified properly.
1698 void CalculateFontAndBitmapStuff( int vspacing
);
1700 wxRect
GetEditorWidgetRect( wxPGProperty
* p
, int column
) const;
1702 void CorrectEditorWidgetSizeX();
1704 /** Called in RecalculateVirtualSize() to reposition control
1705 on virtual height changes.
1707 void CorrectEditorWidgetPosY();
1711 void OnScreenNote( const wxChar
* format
, ... );
1714 /** Deselect current selection, if any. Returns true if success
1715 (ie. validator did not intercept). */
1716 bool DoClearSelection();
1718 int DoDrawItems( wxDC
& dc
,
1719 const wxPGProperty
* first_item
,
1720 const wxPGProperty
* last_item
,
1721 const wxRect
* clip_rect
,
1722 bool isBuffered
) const;
1724 void DoSetPropertyValueUnspecified( wxPGProperty
* p
);
1726 /** Draws an expand/collapse (ie. +/-) button.
1728 virtual void DrawExpanderButton( wxDC
& dc
, const wxRect
& rect
,
1729 wxPGProperty
* property
) const;
1731 /** Draws items from topitemy to bottomitemy */
1732 void DrawItems( wxDC
& dc
, unsigned int topitemy
, unsigned int bottomitemy
,
1733 const wxRect
* clip_rect
= (const wxRect
*) NULL
);
1735 void DrawItems( const wxPGProperty
* p1
, const wxPGProperty
* p2
);
1737 void DrawItem( wxPGProperty
* p
)
1742 virtual void DrawItemAndChildren( wxPGProperty
* p
);
1745 Draws item, children, and consequtive parents as long as category is
1748 void DrawItemAndValueRelated( wxPGProperty
* p
);
1750 // Translate wxKeyEvent to wxPG_ACTION_XXX
1751 int KeyEventToActions(wxKeyEvent
&event
, int* pSecond
) const;
1753 int KeyEventToAction(wxKeyEvent
&event
) const
1755 return KeyEventToActions(event
, NULL
);
1758 void ImprovedClientToScreen( int* px
, int* py
);
1760 // Called by focus event handlers. newFocused is the window that becomes
1762 void HandleFocusChange( wxWindow
* newFocused
);
1764 /** Reloads all non-customized colours from system settings. */
1765 void RegainColours();
1767 bool DoEditorValidate();
1769 wxPGProperty
* DoGetItemAtY( int y
) const;
1771 void DoSetSplitterPosition_( int newxpos
,
1772 bool refresh
= true,
1773 int splitterIndex
= 0,
1774 bool allPages
= false );
1778 virtual bool DoExpand( wxPGProperty
* p
, bool sendEvent
= false );
1780 virtual bool DoCollapse( wxPGProperty
* p
, bool sendEvent
= false );
1782 // Returns nearest paint visible property (such that will be painted unless
1783 // window is scrolled or resized). If given property is paint visible, then
1784 // it itself will be returned.
1785 wxPGProperty
* GetNearestPaintVisible( wxPGProperty
* p
) const;
1787 static void RegisterDefaultEditors();
1789 // Sets m_bgColIndex to this property and all its children.
1790 void SetBackgroundColourIndex( wxPGProperty
* p
, int index
);
1792 // Sets m_fgColIndex to this property and all its children.
1793 void SetTextColourIndex( wxPGProperty
* p
, int index
, int flags
);
1795 int CacheColour( const wxColour
& colour
);
1797 void DoSetPropertyName( wxPGProperty
* p
, const wxString
& newname
);
1799 // Setups event handling for child control
1800 void SetupEventHandling( wxWindow
* wnd
, int id
);
1802 void CustomSetCursor( int type
, bool override
= false );
1804 virtual bool ProcessEvent(wxEvent
& event
);
1805 virtual void SetWindowStyleFlag( long style
);
1808 Repositions scrollbar and underlying panel according to changed virtual
1811 void RecalculateVirtualSize( int forceXPos
= -1 );
1813 void PrepareAfterItemsAdded();
1815 bool SendEvent( int eventType
,
1817 wxVariant
* pValue
= NULL
,
1818 unsigned int selFlags
= 0 );
1820 bool DoHideProperty( wxPGProperty
* p
, bool hide
, int flags
);
1824 bool ButtonTriggerKeyTest( wxKeyEvent
&event
);
1826 #endif // DOXYGEN_SHOULD_SKIP_THIS
1829 DECLARE_EVENT_TABLE()
1830 #endif // #ifndef SWIG
1833 // -----------------------------------------------------------------------
1835 // Bunch of inlines that need to resolved after all classes have been defined.
1839 inline bool wxPropertyGridPageState::IsDisplayed() const
1841 return ( this == m_pPropGrid
->GetState() );
1844 inline unsigned int wxPropertyGridPageState::GetActualVirtualHeight() const
1846 return DoGetRoot()->GetChildrenHeight(GetGrid()->GetRowHeight());
1850 inline int wxPGProperty::GetDisplayedCommonValueCount() const
1852 if ( HasFlag(wxPG_PROP_USES_COMMON_VALUE
) )
1854 wxPropertyGrid
* pg
= GetGrid();
1856 return pg
->GetCommonValueCount();
1861 inline void wxPGProperty::SetEditor( const wxString
& editorName
)
1863 m_customEditor
= wxPropertyGridInterface::GetEditorByName(editorName
);
1866 inline void wxPGProperty::SetName( const wxString
& newName
)
1868 GetGrid()->SetPropertyName(this, newName
);
1871 inline bool wxPGProperty::Hide( bool hide
, int flags
)
1873 return GetGrid()->HideProperty(this, hide
, flags
);
1876 inline bool wxPGProperty::SetMaxLength( int maxLen
)
1878 return GetGrid()->SetPropertyMaxLength(this,maxLen
);
1881 // -----------------------------------------------------------------------
1886 #define wxPG_BASE_EVT_PRE_ID 1775
1888 BEGIN_DECLARE_EVENT_TYPES()
1889 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_SELECTED
, wxPG_BASE_EVT_PRE_ID
)
1890 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_CHANGING
, wxPG_BASE_EVT_PRE_ID
+1)
1891 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_CHANGED
, wxPG_BASE_EVT_PRE_ID
+2)
1892 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_HIGHLIGHTED
, wxPG_BASE_EVT_PRE_ID
+3)
1893 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_RIGHT_CLICK
, wxPG_BASE_EVT_PRE_ID
+4)
1894 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_PAGE_CHANGED
, wxPG_BASE_EVT_PRE_ID
+5)
1895 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_ITEM_COLLAPSED
, wxPG_BASE_EVT_PRE_ID
+6)
1896 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_ITEM_EXPANDED
, wxPG_BASE_EVT_PRE_ID
+7)
1897 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_PROPGRID
, wxEVT_PG_DOUBLE_CLICK
, wxPG_BASE_EVT_PRE_ID
+8)
1898 END_DECLARE_EVENT_TYPES()
1901 wxEVT_PG_SELECTED
= wxPG_BASE_EVT_PRE_ID
,
1904 wxEVT_PG_HIGHLIGHTED
,
1905 wxEVT_PG_RIGHT_CLICK
,
1906 wxEVT_PG_PAGE_CHANGED
,
1907 wxEVT_PG_ITEM_COLLAPSED
,
1908 wxEVT_PG_ITEM_EXPANDED
,
1909 wxEVT_PG_DOUBLE_CLICK
1914 #define wxPG_BASE_EVT_TYPE wxEVT_PG_SELECTED
1915 #define wxPG_MAX_EVT_TYPE (wxPG_BASE_EVT_TYPE+30)
1919 typedef void (wxEvtHandler::*wxPropertyGridEventFunction
)(wxPropertyGridEvent
&);
1921 #define EVT_PG_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1922 #define EVT_PG_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1923 #define EVT_PG_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1924 #define EVT_PG_HIGHLIGHTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_HIGHLIGHTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1925 #define EVT_PG_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1926 #define EVT_PG_DOUBLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_DOUBLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1927 #define EVT_PG_PAGE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_PAGE_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1928 #define EVT_PG_ITEM_COLLAPSED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_COLLAPSED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1929 #define EVT_PG_ITEM_EXPANDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PG_ITEM_EXPANDED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPropertyGridEventFunction, & fn ), (wxObject *) NULL ),
1931 #define wxPropertyGridEventHandler(A) \
1932 ((wxObjectEventFunction)(wxEventFunction)(wxPropertyGridEventFunction)&A)
1937 /** @class wxPropertyGridEvent
1939 A propertygrid event holds information about events associated with
1940 wxPropertyGrid objects.
1942 @library{wxpropgrid}
1945 class WXDLLIMPEXP_PROPGRID wxPropertyGridEvent
: public wxCommandEvent
1950 wxPropertyGridEvent(wxEventType commandType
=0, int id
=0);
1952 /** Copy constructor. */
1953 wxPropertyGridEvent(const wxPropertyGridEvent
& event
);
1956 ~wxPropertyGridEvent();
1959 virtual wxEvent
* Clone() const;
1961 wxPGProperty
* GetMainParent() const
1963 wxASSERT(m_property
);
1964 return m_property
->GetMainParent();
1967 /** Returns id of associated property. */
1968 wxPGProperty
* GetProperty() const
1973 wxPGValidationInfo
& GetValidationInfo()
1975 wxASSERT(m_validationInfo
);
1976 return *m_validationInfo
;
1979 /** Returns true if event has associated property. */
1980 bool HasProperty() const { return ( m_property
!= (wxPGProperty
*) NULL
); }
1982 /** Returns true if you can veto the action that the event is signaling.
1984 bool CanVeto() const { return m_canVeto
; }
1987 Call this from your event handler to veto action that the event is
1990 You can only veto a shutdown if wxPropertyGridEvent::CanVeto returns
1993 Currently only wxEVT_PG_CHANGING supports vetoing.
1995 void Veto( bool veto
= true ) { m_wasVetoed
= veto
; }
1997 /** Returns value that is about to be set for wxEVT_PG_CHANGING.
1999 const wxVariant
& GetValue() const
2001 wxASSERT_MSG( m_validationInfo
,
2002 "Only call GetValue from a handler "
2003 "of event type that supports it" );
2004 return *m_validationInfo
->m_pValue
;
2008 Set override validation failure behavior.
2010 Only effective if Veto was also called, and only allowed if event type
2011 is wxEVT_PG_CHANGING.
2013 void SetValidationFailureBehavior( int flags
)
2015 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2016 m_validationInfo
->m_failureBehavior
= (wxPGVFBFlags
) flags
;
2019 /** Sets custom failure message for this time only. Only applies if
2020 wxPG_VFB_SHOW_MESSAGE is set in validation failure flags.
2022 void SetValidationFailureMessage( const wxString
& message
)
2024 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2025 m_validationInfo
->m_failureMessage
= message
;
2029 wxPGVFBFlags
GetValidationFailureBehavior() const
2031 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2032 return m_validationInfo
->m_failureBehavior
;
2035 void SetCanVeto( bool canVeto
) { m_canVeto
= canVeto
; }
2036 bool WasVetoed() const { return m_wasVetoed
; }
2038 /** Changes the associated property. */
2039 void SetProperty( wxPGProperty
* p
) { m_property
= p
; }
2041 void SetPropertyGrid( wxPropertyGrid
* pg
) { m_pg
= pg
; }
2043 void SetupValidationInfo()
2046 wxASSERT( GetEventType() == wxEVT_PG_CHANGING
);
2047 m_validationInfo
= &m_pg
->GetValidationInfo();
2052 DECLARE_DYNAMIC_CLASS(wxPropertyGridEvent
)
2054 wxPGProperty
* m_property
;
2055 wxPropertyGrid
* m_pg
;
2056 wxPGValidationInfo
* m_validationInfo
;
2065 // -----------------------------------------------------------------------
2067 /** @class wxPropertyGridPopulator
2069 Allows populating wxPropertyGrid from arbitrary text source.
2071 class WXDLLIMPEXP_PROPGRID wxPropertyGridPopulator
2074 /** Default constructor.
2076 wxPropertyGridPopulator();
2079 virtual ~wxPropertyGridPopulator();
2081 void SetState( wxPropertyGridPageState
* state
);
2083 void SetGrid( wxPropertyGrid
* pg
);
2085 /** Appends a new property under bottommost parent.
2087 Property class as string.
2089 wxPGProperty
* Add( const wxString
& propClass
,
2090 const wxString
& propLabel
,
2091 const wxString
& propName
,
2092 const wxString
* propValue
,
2093 wxPGChoices
* pChoices
= NULL
);
2096 Pushes property to the back of parent array (ie it becomes bottommost
2097 parent), and starts scanning/adding children for it.
2099 When finished, parent array is returned to the original state.
2101 void AddChildren( wxPGProperty
* property
);
2103 /** Adds attribute to the bottommost property.
2105 Allowed values: "string", (same as string), "int", "bool". Empty string
2108 bool AddAttribute( const wxString
& name
,
2109 const wxString
& type
,
2110 const wxString
& value
);
2112 /** Called once in AddChildren.
2114 virtual void DoScanForChildren() = 0;
2117 Returns id of parent property for which children can currently be
2120 wxPGProperty
* GetCurParent() const
2122 return (wxPGProperty
*) m_propHierarchy
[m_propHierarchy
.size()-1];
2125 wxPropertyGridPageState
* GetState() { return m_state
; }
2126 const wxPropertyGridPageState
* GetState() const { return m_state
; }
2128 /** Like wxString::ToLong, except allows N% in addition of N.
2130 static bool ToLongPCT( const wxString
& s
, long* pval
, long max
);
2132 /** Parses strings of format "choice1"[=value1] ... "choiceN"[=valueN] into
2133 wxPGChoices. Registers parsed result using idString (if not empty).
2134 Also, if choices with given id already registered, then don't parse but
2135 return those choices instead.
2137 wxPGChoices
ParseChoices( const wxString
& choicesString
,
2138 const wxString
& idString
);
2140 /** Implement in derived class to do custom process when an error occurs.
2141 Default implementation uses wxLogError.
2143 virtual void ProcessError( const wxString
& msg
);
2147 /** Used property grid. */
2148 wxPropertyGrid
* m_pg
;
2150 /** Used property grid state. */
2151 wxPropertyGridPageState
* m_state
;
2153 /** Tree-hierarchy of added properties (that can have children). */
2154 wxArrayPGProperty m_propHierarchy
;
2156 /** Hashmap for string-id to wxPGChoicesData mapping. */
2157 wxPGHashMapS2P m_dictIdChoices
;
2160 // -----------------------------------------------------------------------
2163 // Undefine macros that are not needed outside propertygrid sources
2165 #ifndef __wxPG_SOURCE_FILE__
2166 #undef wxPG_FL_DESC_REFRESH_REQUIRED
2167 #undef wxPG_FL_SCROLLBAR_DETECTED
2168 #undef wxPG_FL_CREATEDSTATE
2169 #undef wxPG_FL_NOSTATUSBARHELP
2170 #undef wxPG_FL_SCROLLED
2171 #undef wxPG_FL_FOCUS_INSIDE_CHILD
2172 #undef wxPG_FL_FOCUS_INSIDE
2173 #undef wxPG_FL_MOUSE_INSIDE_CHILD
2174 #undef wxPG_FL_CUR_USES_CUSTOM_IMAGE
2175 #undef wxPG_FL_PRIMARY_FILLS_ENTIRE
2176 #undef wxPG_FL_VALUE_MODIFIED
2177 #undef wxPG_FL_MOUSE_INSIDE
2178 #undef wxPG_FL_FOCUSED
2179 #undef wxPG_FL_MOUSE_CAPTURED
2180 #undef wxPG_FL_INITIALIZED
2181 #undef wxPG_FL_ACTIVATION_BY_CLICK
2182 #undef wxPG_FL_DONT_CENTER_SPLITTER
2183 #undef wxPG_SUPPORT_TOOLTIPS
2184 #undef wxPG_DOUBLE_BUFFER
2185 #undef wxPG_ICON_WIDTH
2186 #undef wxPG_USE_RENDERER_NATIVE
2187 // Following are needed by the manager headers
2188 // #undef const wxString&
2193 #include "wx/propgrid/editor.h"
2194 #include "wx/propgrid/manager.h"
2197 // -----------------------------------------------------------------------
2199 #endif // _WX_PROPGRID_PROPGRID_H_