1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgrid/property.h
3 // Purpose: wxPGProperty and related support classes
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PROPGRID_PROPERTY_H_
13 #define _WX_PROPGRID_PROPERTY_H_
17 #include "wx/propgrid/propgriddefs.h"
19 // -----------------------------------------------------------------------
21 #define wxNullProperty ((wxPGProperty*)NULL)
24 /** @class wxPGPaintData
26 Contains information relayed to property's OnCustomPaint.
30 /** wxPropertyGrid. */
31 const wxPropertyGrid
* m_parent
;
34 Normally -1, otherwise index to drop-down list item that has to be
39 /** Set to drawn width in OnCustomPaint (optional). */
43 In a measure item call, set this to the height of item at m_choiceItem
53 // space between vertical sides of a custom image
54 #define wxPG_CUSTOM_IMAGE_SPACINGY 1
56 // space between caption and selection rectangle,
57 #define wxPG_CAPRECTXMARGIN 2
59 // horizontally and vertically
60 #define wxPG_CAPRECTYMARGIN 1
63 /** @class wxPGCellRenderer
65 Base class for wxPropertyGrid cell renderers.
67 class WXDLLIMPEXP_PROPGRID wxPGCellRenderer
71 wxPGCellRenderer( unsigned int refCount
= 1 )
72 : m_refCount(refCount
) { }
73 virtual ~wxPGCellRenderer() { }
78 // We are painting selected item
79 Selected
= 0x00010000,
81 // We are painting item in choice popup
82 ChoicePopup
= 0x00020000,
84 // We are rendering wxOwnerDrawnComboBox control
85 // (or other owner drawn control, but that is only
86 // officially supported one ATM).
89 // We are painting a disable property
90 Disabled
= 0x00080000,
92 // We are painting selected, disabled, or similar
93 // item that dictates fore- and background colours,
94 // overriding any cell values.
95 DontUseCellFgCol
= 0x00100000,
96 DontUseCellBgCol
= 0x00200000,
97 DontUseCellColours
= DontUseCellFgCol
|
101 virtual void Render( wxDC
& dc
,
103 const wxPropertyGrid
* propertyGrid
,
104 wxPGProperty
* property
,
107 int flags
) const = 0;
109 /** Returns size of the image in front of the editable area.
111 If property is NULL, then this call is for a custom value. In that case
112 the item is index to wxPropertyGrid's custom values.
114 virtual wxSize
GetImageSize( const wxPGProperty
* property
,
118 /** Paints property category selection rectangle.
120 virtual void DrawCaptionSelectionRect( wxDC
& dc
,
122 int w
, int h
) const;
124 /** Utility to draw vertically centered text.
126 void DrawText( wxDC
& dc
,
129 const wxString
& text
) const;
132 Utility to draw editor's value, or vertically aligned text if editor is
135 void DrawEditorValue( wxDC
& dc
, const wxRect
& rect
,
136 int xOffset
, const wxString
& text
,
137 wxPGProperty
* property
,
138 const wxPGEditor
* editor
) const;
140 /** Utility to render cell bitmap and set text colour plus bg brush colour.
142 Returns image width that, for instance, can be passed to DrawText.
144 int PreDrawCell( wxDC
& dc
,
146 const wxPGCell
& cell
,
163 unsigned int m_refCount
;
167 class WXDLLIMPEXP_PROPGRID wxPGCellData
: public wxObjectRefData
169 friend class wxPGCell
;
173 void SetText( const wxString
& text
)
176 m_hasValidText
= true;
178 void SetBitmap( const wxBitmap
& bitmap
) { m_bitmap
= bitmap
; }
179 void SetFgCol( const wxColour
& col
) { m_fgCol
= col
; }
180 void SetBgCol( const wxColour
& col
) { m_bgCol
= col
; }
183 virtual ~wxPGCellData() { }
190 // True if m_text is valid and specified
196 Base class for simple wxPropertyGrid cell information.
198 class WXDLLIMPEXP_PROPGRID wxPGCell
: public wxObject
202 wxPGCell( const wxPGCell
& other
)
204 m_refData
= other
.m_refData
;
209 wxPGCell( const wxString
& text
,
210 const wxBitmap
& bitmap
= wxNullBitmap
,
211 const wxColour
& fgCol
= wxNullColour
,
212 const wxColour
& bgCol
= wxNullColour
);
214 virtual ~wxPGCell() { }
216 wxPGCellData
* GetData()
218 return (wxPGCellData
*) m_refData
;
221 const wxPGCellData
* GetData() const
223 return (const wxPGCellData
*) m_refData
;
228 return (m_refData
&& GetData()->m_hasValidText
);
232 Merges valid data from srcCell into this.
234 void MergeFrom( const wxPGCell
& srcCell
);
236 void SetText( const wxString
& text
);
237 void SetBitmap( const wxBitmap
& bitmap
);
238 void SetFgCol( const wxColour
& col
);
239 void SetBgCol( const wxColour
& col
);
241 const wxString
& GetText() const { return GetData()->m_text
; }
242 const wxBitmap
& GetBitmap() const { return GetData()->m_bitmap
; }
243 const wxColour
& GetFgCol() const { return GetData()->m_fgCol
; }
244 const wxColour
& GetBgCol() const { return GetData()->m_bgCol
; }
246 wxPGCell
& operator=( const wxPGCell
& other
)
248 if ( this != &other
)
256 virtual wxObjectRefData
*CreateRefData() const
257 { return new wxPGCellData(); }
259 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
263 /** @class wxPGDefaultRenderer
265 Default cell renderer, that can handles the common
268 class WXDLLIMPEXP_PROPGRID wxPGDefaultRenderer
: public wxPGCellRenderer
271 virtual void Render( wxDC
& dc
,
273 const wxPropertyGrid
* propertyGrid
,
274 wxPGProperty
* property
,
279 virtual wxSize
GetImageSize( const wxPGProperty
* property
,
286 // -----------------------------------------------------------------------
288 /** @class wxPGAttributeStorage
290 wxPGAttributeStorage is somewhat optimized storage for
291 key=variant pairs (ie. a map).
293 class WXDLLIMPEXP_PROPGRID wxPGAttributeStorage
296 wxPGAttributeStorage();
297 ~wxPGAttributeStorage();
299 void Set( const wxString
& name
, const wxVariant
& value
);
300 unsigned int GetCount() const { return (unsigned int) m_map
.size(); }
301 wxVariant
FindValue( const wxString
& name
) const
303 wxPGHashMapS2P::const_iterator it
= m_map
.find(name
);
304 if ( it
!= m_map
.end() )
306 wxVariantData
* data
= (wxVariantData
*) it
->second
;
308 return wxVariant(data
, it
->first
);
313 typedef wxPGHashMapS2P::const_iterator const_iterator
;
314 const_iterator
StartIteration() const
316 return m_map
.begin();
318 bool GetNext( const_iterator
& it
, wxVariant
& variant
) const
320 if ( it
== m_map
.end() )
323 wxVariantData
* data
= (wxVariantData
*) it
->second
;
325 variant
.SetData(data
);
326 variant
.SetName(it
->first
);
332 wxPGHashMapS2P m_map
;
337 // -----------------------------------------------------------------------
339 /** @section propgrid_propflags wxPGProperty Flags
343 enum wxPG_PROPERTY_FLAGS
346 /** Indicates bold font.
348 wxPG_PROP_MODIFIED
= 0x0001,
350 /** Disables ('greyed' text and editor does not activate) property.
352 wxPG_PROP_DISABLED
= 0x0002,
354 /** Hider button will hide this property.
356 wxPG_PROP_HIDDEN
= 0x0004,
358 /** This property has custom paint image just in front of its value.
359 If property only draws custom images into a popup list, then this
360 flag should not be set.
362 wxPG_PROP_CUSTOMIMAGE
= 0x0008,
364 /** Do not create text based editor for this property (but button-triggered
365 dialog and choice are ok).
367 wxPG_PROP_NOEDITOR
= 0x0010,
369 /** Property is collapsed, ie. it's children are hidden.
371 wxPG_PROP_COLLAPSED
= 0x0020,
374 If property is selected, then indicates that validation failed for pending
377 If property is not selected, then indicates that the the actual property
378 value has failed validation (NB: this behavior is not currently supported,
379 but may be used in future).
381 wxPG_PROP_INVALID_VALUE
= 0x0040,
385 /** Switched via SetWasModified(). Temporary flag - only used when
386 setting/changing property value.
388 wxPG_PROP_WAS_MODIFIED
= 0x0200,
391 If set, then child properties (if any) are private, and should be
392 "invisible" to the application.
394 wxPG_PROP_AGGREGATE
= 0x0400,
396 /** If set, then child properties (if any) are copies and should not
399 wxPG_PROP_CHILDREN_ARE_COPIES
= 0x0800,
402 Classifies this item as a non-category.
404 Used for faster item type identification.
406 wxPG_PROP_PROPERTY
= 0x1000,
409 Classifies this item as a category.
411 Used for faster item type identification.
413 wxPG_PROP_CATEGORY
= 0x2000,
415 /** Classifies this item as a property that has children, but is not aggregate
416 (ie children are not private).
418 wxPG_PROP_MISC_PARENT
= 0x4000,
420 /** Property is read-only. Editor is still created.
422 wxPG_PROP_READONLY
= 0x8000,
425 // NB: FLAGS ABOVE 0x8000 CANNOT BE USED WITH PROPERTY ITERATORS
428 /** Property's value is composed from values of child properties.
430 This flag cannot be used with property iterators.
432 wxPG_PROP_COMPOSED_VALUE
= 0x00010000,
434 /** Common value of property is selectable in editor.
436 This flag cannot be used with property iterators.
438 wxPG_PROP_USES_COMMON_VALUE
= 0x00020000,
440 /** Property can be set to unspecified value via editor.
441 Currently, this applies to following properties:
442 - wxIntProperty, wxUIntProperty, wxFloatProperty, wxEditEnumProperty:
446 This flag cannot be used with property iterators.
448 wxPG_PROP_AUTO_UNSPECIFIED
= 0x00040000,
450 /** Indicates the bit useable by derived properties.
452 wxPG_PROP_CLASS_SPECIFIC_1
= 0x00080000,
454 /** Indicates the bit useable by derived properties.
456 wxPG_PROP_CLASS_SPECIFIC_2
= 0x00100000
462 #define wxPG_PROP_MAX wxPG_PROP_AUTO_UNSPECIFIED
464 /** Property with children must have one of these set, otherwise iterators
465 will not work correctly.
466 Code should automatically take care of this, however.
468 #define wxPG_PROP_PARENTAL_FLAGS \
469 (wxPG_PROP_AGGREGATE|wxPG_PROP_CATEGORY|wxPG_PROP_MISC_PARENT)
474 // Combination of flags that can be stored by GetFlagsAsString
475 #define wxPG_STRING_STORED_FLAGS \
476 (wxPG_PROP_DISABLED|wxPG_PROP_HIDDEN|wxPG_PROP_NOEDITOR|wxPG_PROP_COLLAPSED)
478 // -----------------------------------------------------------------------
483 @section propgrid_property_attributes wxPropertyGrid Property Attribute
486 wxPGProperty::SetAttribute() and
487 wxPropertyGridInterface::SetPropertyAttribute() accept one of these as
488 attribute name argument.
490 You can use strings instead of constants. However, some of these
491 constants are redefined to use cached strings which may reduce
492 your binary size by some amount.
497 /** Set default value for property.
499 #define wxPG_ATTR_DEFAULT_VALUE wxS("DefaultValue")
501 /** Universal, int or double. Minimum value for numeric properties.
503 #define wxPG_ATTR_MIN wxS("Min")
505 /** Universal, int or double. Maximum value for numeric properties.
507 #define wxPG_ATTR_MAX wxS("Max")
509 /** Universal, string. When set, will be shown as text after the displayed
510 text value. Alternatively, if third column is enabled, text will be shown
511 there (for any type of property).
513 #define wxPG_ATTR_UNITS wxS("Units")
515 /** Universal, string. When set, will be shown in property's value cell
516 when displayed value string is empty, or value is unspecified.
518 #define wxPG_ATTR_INLINE_HELP wxS("InlineHelp")
520 /** wxBoolProperty specific, int, default 0. When 1 sets bool property to
521 use checkbox instead of choice.
523 #define wxPG_BOOL_USE_CHECKBOX wxS("UseCheckbox")
525 /** wxBoolProperty specific, int, default 0. When 1 sets bool property value
526 to cycle on double click (instead of showing the popup listbox).
528 #define wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING wxS("UseDClickCycling")
531 wxFloatProperty (and similar) specific, int, default -1.
533 Sets the (max) precision used when floating point value is rendered as
534 text. The default -1 means infinite precision.
536 #define wxPG_FLOAT_PRECISION wxS("Precision")
539 The text will be echoed as asterisks (wxTE_PASSWORD will be passed to
542 #define wxPG_STRING_PASSWORD wxS("Password")
544 /** Define base used by a wxUIntProperty. Valid constants are
545 wxPG_BASE_OCT, wxPG_BASE_DEC, wxPG_BASE_HEX and wxPG_BASE_HEXL
546 (lowercase characters).
548 #define wxPG_UINT_BASE wxS("Base")
550 /** Define prefix rendered to wxUIntProperty. Accepted constants
551 wxPG_PREFIX_NONE, wxPG_PREFIX_0x, and wxPG_PREFIX_DOLLAR_SIGN.
552 <b>Note:</b> Only wxPG_PREFIX_NONE works with Decimal and Octal
555 #define wxPG_UINT_PREFIX wxS("Prefix")
558 wxFileProperty/wxImageFileProperty specific, wxChar*, default is
560 Sets the wildcard used in the triggered wxFileDialog. Format is the same.
562 #define wxPG_FILE_WILDCARD wxS("Wildcard")
564 /** wxFileProperty/wxImageFileProperty specific, int, default 1.
565 When 0, only the file name is shown (i.e. drive and directory are hidden).
567 #define wxPG_FILE_SHOW_FULL_PATH wxS("ShowFullPath")
569 /** Specific to wxFileProperty and derived properties, wxString, default empty.
570 If set, then the filename is shown relative to the given path string.
572 #define wxPG_FILE_SHOW_RELATIVE_PATH wxS("ShowRelativePath")
575 Specific to wxFileProperty and derived properties, wxString, default is
578 Sets the initial path of where to look for files.
580 #define wxPG_FILE_INITIAL_PATH wxS("InitialPath")
582 /** Specific to wxFileProperty and derivatives, wxString, default is empty.
583 Sets a specific title for the dir dialog.
585 #define wxPG_FILE_DIALOG_TITLE wxS("DialogTitle")
587 /** Specific to wxDirProperty, wxString, default is empty.
588 Sets a specific message for the dir dialog.
590 #define wxPG_DIR_DIALOG_MESSAGE wxS("DialogMessage")
592 /** Sets displayed date format for wxDateProperty.
594 #define wxPG_DATE_FORMAT wxS("DateFormat")
596 /** Sets wxDatePickerCtrl window style used with wxDateProperty. Default
597 is wxDP_DEFAULT | wxDP_SHOWCENTURY.
599 #define wxPG_DATE_PICKER_STYLE wxS("PickerStyle")
601 /** SpinCtrl editor, int or double. How much number changes when button is
602 pressed (or up/down on keybard).
604 #define wxPG_ATTR_SPINCTRL_STEP wxS("Step")
606 /** SpinCtrl editor, bool. If true, value wraps at Min/Max.
608 #define wxPG_ATTR_SPINCTRL_WRAP wxS("Wrap")
611 wxMultiChoiceProperty, int.
612 If 0, no user strings allowed. If 1, user strings appear before list
613 strings. If 2, user strings appear after list string.
615 #define wxPG_ATTR_MULTICHOICE_USERSTRINGMODE wxS("UserStringMode")
618 wxColourProperty and its kind, int, default 1.
620 Setting this attribute to 0 hides custom colour from property's list of
623 #define wxPG_COLOUR_ALLOW_CUSTOM wxS("AllowCustom")
628 // Redefine attribute macros to use cached strings
630 #define wxPG_ATTR_MIN wxPGGlobalVars->m_strMin
632 #define wxPG_ATTR_MAX wxPGGlobalVars->m_strMax
633 #undef wxPG_ATTR_UNITS
634 #define wxPG_ATTR_UNITS wxPGGlobalVars->m_strUnits
635 #undef wxPG_ATTR_INLINE_HELP
636 #define wxPG_ATTR_INLINE_HELP wxPGGlobalVars->m_strInlineHelp
640 // -----------------------------------------------------------------------
644 /** @class wxPGChoiceEntry
645 Data of a single wxPGChoices choice.
647 class WXDLLIMPEXP_PROPGRID wxPGChoiceEntry
: public wxPGCell
651 wxPGChoiceEntry(const wxPGChoiceEntry
& other
)
653 m_refData
= other
.m_refData
;
656 m_value
= other
.m_value
;
658 wxPGChoiceEntry( const wxString
& label
,
659 int value
= wxPG_INVALID_VALUE
)
660 : wxPGCell(), m_value(value
)
665 virtual ~wxPGChoiceEntry() { }
667 void SetValue( int value
) { m_value
= value
; }
668 int GetValue() const { return m_value
; }
670 wxPGChoiceEntry
& operator=( const wxPGChoiceEntry
& other
)
672 if ( this != &other
)
676 m_value
= other
.m_value
;
685 typedef void* wxPGChoicesId
;
687 class WXDLLIMPEXP_PROPGRID wxPGChoicesData
689 friend class wxPGChoices
;
691 // Constructor sets m_refCount to 1.
694 void CopyDataFrom( wxPGChoicesData
* data
);
696 wxPGChoiceEntry
& Insert( int index
, const wxPGChoiceEntry
& item
);
698 // Delete all entries
701 unsigned int GetCount() const
703 return (unsigned int) m_items
.size();
706 const wxPGChoiceEntry
& Item( unsigned int i
) const
708 wxASSERT_MSG( i
< GetCount(), "invalid index" );
712 wxPGChoiceEntry
& Item( unsigned int i
)
714 wxASSERT_MSG( i
< GetCount(), "invalid index" );
721 wxASSERT( m_refCount
>= 0 );
722 if ( m_refCount
== 0 )
727 wxVector
<wxPGChoiceEntry
> m_items
;
729 // So that multiple properties can use the same set
732 virtual ~wxPGChoicesData();
735 #define wxPGChoicesEmptyData ((wxPGChoicesData*)NULL)
739 /** @class wxPGChoices
741 Helper class for managing choices of wxPropertyGrid properties.
742 Each entry can have label, value, bitmap, text colour, and background
745 @remarks If you do not specify value for entry, index is used.
750 class WXDLLIMPEXP_PROPGRID wxPGChoices
753 typedef long ValArrItem
;
755 /** Default constructor. */
761 /** Copy constructor. */
762 wxPGChoices( const wxPGChoices
& a
)
764 if ( a
.m_data
!= wxPGChoicesEmptyData
)
767 m_data
->m_refCount
++;
778 Values for choices. If NULL, indexes are used.
780 wxPGChoices( const wxChar
** labels
, const long* values
= NULL
)
793 Values for choices. If empty, indexes are used.
795 wxPGChoices( const wxArrayString
& labels
,
796 const wxArrayInt
& values
= wxArrayInt() )
802 /** Simple interface constructor. */
803 wxPGChoices( wxPGChoicesData
* data
)
819 If did not have own copies, creates them now. If was empty, identical
820 to set except that creates copies.
823 Labels for added choices.
826 Values for added choices. If empty, relevant entry indexes are used.
828 void Add( const wxChar
** labels
, const ValArrItem
* values
= NULL
);
830 /** Version that works with wxArrayString and wxArrayInt. */
831 void Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
= wxArrayInt() );
834 Adds a single choice.
837 Label for added choice.
840 Value for added choice. If unspecified, index is used.
842 wxPGChoiceEntry
& Add( const wxString
& label
,
843 int value
= wxPG_INVALID_VALUE
);
845 /** Adds a single item, with bitmap. */
846 wxPGChoiceEntry
& Add( const wxString
& label
,
847 const wxBitmap
& bitmap
,
848 int value
= wxPG_INVALID_VALUE
);
850 /** Adds a single item with full entry information. */
851 wxPGChoiceEntry
& Add( const wxPGChoiceEntry
& entry
)
853 return Insert(entry
, -1);
856 /** Adds single item. */
857 wxPGChoiceEntry
& AddAsSorted( const wxString
& label
,
858 int value
= wxPG_INVALID_VALUE
);
860 void Assign( const wxPGChoices
& a
)
862 AssignData(a
.m_data
);
865 void AssignData( wxPGChoicesData
* data
);
867 /** Delete all choices. */
870 if ( m_data
!= wxPGChoicesEmptyData
)
876 if ( m_data
== wxPGChoicesEmptyData
)
877 m_data
= new wxPGChoicesData();
880 /** Gets a unsigned number identifying this list. */
881 wxPGChoicesId
GetId() const { return (wxPGChoicesId
) m_data
; };
883 const wxString
& GetLabel( unsigned int ind
) const
885 return Item(ind
).GetText();
888 unsigned int GetCount () const
893 return m_data
->GetCount();
896 int GetValue( unsigned int ind
) const { return Item(ind
).GetValue(); }
898 /** Returns array of values matching the given strings. Unmatching strings
899 result in wxPG_INVALID_VALUE entry in array.
901 wxArrayInt
GetValuesForStrings( const wxArrayString
& strings
) const;
903 /** Returns array of indices matching given strings. Unmatching strings
904 are added to 'unmatched', if not NULL.
906 wxArrayInt
GetIndicesForStrings( const wxArrayString
& strings
,
907 wxArrayString
* unmatched
= NULL
) const;
909 int Index( const wxString
& str
) const;
910 int Index( int val
) const;
912 /** Inserts single item. */
913 wxPGChoiceEntry
& Insert( const wxString
& label
,
915 int value
= wxPG_INVALID_VALUE
);
917 /** Inserts a single item with full entry information. */
918 wxPGChoiceEntry
& Insert( const wxPGChoiceEntry
& entry
, int index
);
920 /** Returns false if this is a constant empty set of choices,
921 which should not be modified.
925 return ( m_data
!= wxPGChoicesEmptyData
);
928 const wxPGChoiceEntry
& Item( unsigned int i
) const
931 return m_data
->Item(i
);
934 wxPGChoiceEntry
& Item( unsigned int i
)
937 return m_data
->Item(i
);
940 /** Removes count items starting at position nIndex. */
941 void RemoveAt(size_t nIndex
, size_t count
= 1);
944 /** Does not create copies for itself. */
945 void Set( const wxChar
** labels
, const long* values
= NULL
)
952 /** Version that works with wxArrayString and wxArrayInt. */
953 void Set( const wxArrayString
& labels
,
954 const wxArrayInt
& values
= wxArrayInt() )
963 // Creates exclusive copy of current choices
966 if ( m_data
->m_refCount
!= 1 )
968 wxPGChoicesData
* data
= new wxPGChoicesData();
969 data
->CopyDataFrom(m_data
);
975 // Returns data, increases refcount.
976 wxPGChoicesData
* GetData()
978 wxASSERT( m_data
->m_refCount
!= 0xFFFFFFF );
979 m_data
->m_refCount
++;
983 // Returns plain data ptr - no refcounting stuff is done.
984 wxPGChoicesData
* GetDataPtr() const { return m_data
; }
986 // Changes ownership of data to you.
987 wxPGChoicesData
* ExtractData()
989 wxPGChoicesData
* data
= m_data
;
990 m_data
= wxPGChoicesEmptyData
;
994 wxArrayString
GetLabels() const;
997 void operator= (const wxPGChoices
& a
)
999 AssignData(a
.m_data
);
1002 wxPGChoiceEntry
& operator[](unsigned int i
)
1007 const wxPGChoiceEntry
& operator[](unsigned int i
) const
1013 wxPGChoicesData
* m_data
;
1020 // -----------------------------------------------------------------------
1022 /** @class wxPGProperty
1024 wxPGProperty is base class for all wxPropertyGrid properties.
1026 NB: Full class overview is now only present in
1027 interface/wx/propgrid/property.h.
1029 @library{wxpropgrid}
1032 class WXDLLIMPEXP_PROPGRID wxPGProperty
: public wxObject
1034 friend class wxPropertyGrid
;
1035 friend class wxPropertyGridInterface
;
1036 friend class wxPropertyGridPageState
;
1037 friend class wxPropertyGridPopulator
;
1038 friend class wxStringProperty
; // Proper "<composed>" support requires this
1040 DECLARE_ABSTRACT_CLASS(wxPGProperty
)
1043 typedef wxUint32 FlagType
;
1045 /** Basic constructor.
1050 Non-abstract property classes should have constructor of this style:
1054 // If T is a class, then it should be a constant reference
1055 // (e.g. const T& ) instead.
1056 MyProperty( const wxString& label, const wxString& name, T value )
1059 // Generally recommended way to set the initial value
1060 // (as it should work in pretty much 100% of cases).
1065 // If has private child properties then create them here. Also
1066 // set flag that indicates presence of private children. E.g.:
1068 // SetParentalType(wxPG_PROP_AGGREGATE);
1070 // AddChild( new wxStringProperty( "Subprop 1",
1072 // value.GetSubProp1() ) );
1077 wxPGProperty( const wxString
& label
, const wxString
& name
);
1081 It is customary for derived properties to implement this.
1083 virtual ~wxPGProperty();
1085 /** This virtual function is called after m_value has been set.
1088 - If m_value was set to Null variant (ie. unspecified value),
1089 OnSetValue() will not be called.
1090 - m_value may be of any variant type. Typically properties internally
1091 support only one variant type, and as such OnSetValue() provides a
1092 good opportunity to convert
1093 supported values into internal type.
1094 - Default implementation does nothing.
1096 virtual void OnSetValue();
1098 /** Override this to return something else than m_value as the value.
1100 virtual wxVariant
DoGetValue() const { return m_value
; }
1102 #if !defined(SWIG) || defined(CREATE_VCW)
1103 /** Implement this function in derived class to check the value.
1104 Return true if it is ok. Returning false prevents property change events
1108 - Default implementation always returns true.
1110 virtual bool ValidateValue( wxVariant
& value
,
1111 wxPGValidationInfo
& validationInfo
) const;
1114 Converts text into wxVariant value appropriate for this property.
1117 On function entry this is the old value (should not be wxNullVariant
1118 in normal cases). Translated value must be assigned back to it.
1121 Text to be translated into variant.
1124 If wxPG_FULL_VALUE is set, returns complete, storable value instead
1125 of displayable one (they may be different).
1126 If wxPG_COMPOSITE_FRAGMENT is set, text is interpreted as a part of
1127 composite property string value (as generated by ValueToString()
1128 called with this same flag).
1130 @return Returns @true if resulting wxVariant value was different.
1132 @remarks Default implementation converts semicolon delimited tokens into
1133 child values. Only works for properties with children.
1135 You might want to take into account that m_value is Null variant
1136 if property value is unspecified (which is usually only case if
1137 you explicitly enabled that sort behavior).
1139 virtual bool StringToValue( wxVariant
& variant
,
1140 const wxString
& text
,
1141 int argFlags
= 0 ) const;
1144 Converts integer (possibly a choice selection) into wxVariant value
1145 appropriate for this property.
1148 On function entry this is the old value (should not be wxNullVariant
1149 in normal cases). Translated value must be assigned back to it.
1152 Integer to be translated into variant.
1155 If wxPG_FULL_VALUE is set, returns complete, storable value instead
1158 @return Returns @true if resulting wxVariant value was different.
1161 - If property is not supposed to use choice or spinctrl or other editor
1162 with int-based value, it is not necessary to implement this method.
1163 - Default implementation simply assign given int to m_value.
1164 - If property uses choice control, and displays a dialog on some choice
1165 items, then it is preferred to display that dialog in IntToValue
1167 - You might want to take into account that m_value is Null variant if
1168 property value is unspecified (which is usually only case if you
1169 explicitly enabled that sort behavior).
1171 virtual bool IntToValue( wxVariant
& value
,
1173 int argFlags
= 0 ) const;
1174 #endif // !defined(SWIG) || defined(CREATE_VCW)
1176 Converts property value into a text representation.
1179 Value to be converted.
1182 If 0 (default value), then displayed string is returned.
1183 If wxPG_FULL_VALUE is set, returns complete, storable string value
1184 instead of displayable. If wxPG_EDITABLE_VALUE is set, returns
1185 string value that must be editable in textctrl. If
1186 wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to
1187 display as a part of string property's composite text
1190 @remarks Default implementation calls GenerateComposedValue().
1192 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
1194 /** Converts string to a value, and if successful, calls SetValue() on it.
1195 Default behavior is to do nothing.
1197 String to get the value from.
1199 true if value was changed.
1201 bool SetValueFromString( const wxString
& text
, int flags
= wxPG_PROGRAMMATIC_VALUE
);
1203 /** Converts integer to a value, and if succesful, calls SetValue() on it.
1204 Default behavior is to do nothing.
1206 Int to get the value from.
1208 If has wxPG_FULL_VALUE, then the value given is a actual value and
1211 True if value was changed.
1213 bool SetValueFromInt( long value
, int flags
= 0 );
1216 Returns size of the custom painted image in front of property.
1218 This method must be overridden to return non-default value if
1219 OnCustomPaint is to be called.
1221 Normally -1, but can be an index to the property's list of items.
1223 - Default behavior is to return wxSize(0,0), which means no image.
1224 - Default image width or height is indicated with dimension -1.
1225 - You can also return wxPG_DEFAULT_IMAGE_SIZE, i.e. wxSize(-1, -1).
1227 virtual wxSize
OnMeasureImage( int item
= -1 ) const;
1230 Events received by editor widgets are processed here.
1232 Note that editor class usually processes most events. Some, such as
1233 button press events of TextCtrlAndButton class, can be handled here.
1234 Also, if custom handling for regular events is desired, then that can
1235 also be done (for example, wxSystemColourProperty custom handles
1236 wxEVT_COMMAND_CHOICE_SELECTED to display colour picker dialog when
1237 'custom' selection is made).
1239 If the event causes value to be changed, SetValueInEvent()
1240 should be called to set the new value.
1245 Should return true if any changes in value should be reported.
1247 If property uses choice control, and displays a dialog on some choice
1248 items, then it is preferred to display that dialog in IntToValue
1251 virtual bool OnEvent( wxPropertyGrid
* propgrid
,
1252 wxWindow
* wnd_primary
,
1256 Called after value of a child property has been altered.
1258 Note that this function is usually called at the time that value of
1259 this property, or given child property, is still pending for change.
1261 Sample pseudo-code implementation:
1264 void MyProperty::ChildChanged( wxVariant& thisValue,
1266 wxVariant& childValue ) const
1268 // Acquire reference to actual type of data stored in variant
1269 // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros
1270 // were used to create the variant class).
1271 T& data = TFromVariant(thisValue);
1273 // Copy childValue into data.
1274 switch ( childIndex )
1277 data.SetSubProp1( childvalue.GetLong() );
1280 data.SetSubProp2( childvalue.GetString() );
1288 Value of this property, that should be altered.
1290 Index of child changed (you can use Item(childIndex) to get).
1292 Value of the child property.
1294 virtual void ChildChanged( wxVariant
& thisValue
,
1296 wxVariant
& childValue
) const;
1298 /** Returns pointer to an instance of used editor.
1300 virtual const wxPGEditor
* DoGetEditorClass() const;
1302 /** Returns pointer to the wxValidator that should be used
1303 with the editor of this property (NULL for no validator).
1304 Setting validator explicitly via SetPropertyValidator
1307 In most situations, code like this should work well
1308 (macros are used to maintain one actual validator instance,
1309 so on the second call the function exits within the first
1314 wxValidator* wxMyPropertyClass::DoGetValidator () const
1316 WX_PG_DOGETVALIDATOR_ENTRY()
1318 wxMyValidator* validator = new wxMyValidator(...);
1320 ... prepare validator...
1322 WX_PG_DOGETVALIDATOR_EXIT(validator)
1328 You can get common filename validator by returning
1329 wxFileProperty::GetClassValidator(). wxDirProperty,
1330 for example, uses it.
1332 virtual wxValidator
* DoGetValidator () const;
1335 Override to paint an image in front of the property value text or
1336 drop-down list item (but only if wxPGProperty::OnMeasureImage is
1337 overridden as well).
1339 If property's OnMeasureImage() returns size that has height != 0 but
1340 less than row height ( < 0 has special meanings), wxPropertyGrid calls
1341 this method to draw a custom image in a limited area in front of the
1342 editor control or value text/graphics, and if control has drop-down
1343 list, then the image is drawn there as well (even in the case
1344 OnMeasureImage() returned higher height than row height).
1346 NOTE: Following applies when OnMeasureImage() returns a "flexible"
1347 height ( using wxPG_FLEXIBLE_SIZE(W,H) macro), which implies variable
1348 height items: If rect.x is < 0, then this is a measure item call, which
1349 means that dc is invalid and only thing that should be done is to set
1350 paintdata.m_drawnHeight to the height of the image of item at index
1351 paintdata.m_choiceItem. This call may be done even as often as once
1352 every drop-down popup show.
1357 Box reserved for custom graphics. Includes surrounding rectangle,
1358 if any. If x is < 0, then this is a measure item call (see above).
1360 wxPGPaintData structure with much useful data.
1363 - You can actually exceed rect width, but if you do so then
1364 paintdata.m_drawnWidth must be set to the full width drawn in
1366 - Due to technical reasons, rect's height will be default even if
1367 custom height was reported during measure call.
1368 - Brush is guaranteed to be default background colour. It has been
1369 already used to clear the background of area being painted. It
1371 - Pen is guaranteed to be 1-wide 'black' (or whatever is the proper
1372 colour) pen for drawing framing rectangle. It can be changed as
1375 @see ValueToString()
1377 virtual void OnCustomPaint( wxDC
& dc
,
1379 wxPGPaintData
& paintdata
);
1382 Returns used wxPGCellRenderer instance for given property column
1385 Default implementation returns editor's renderer for all columns.
1387 virtual wxPGCellRenderer
* GetCellRenderer( int column
) const;
1389 /** Returns which choice is currently selected. Only applies to properties
1392 Needs to reimplemented in derived class if property value does not
1393 map directly to a choice. Integer as index, bool, and string usually do.
1395 virtual int GetChoiceSelection() const;
1398 Refresh values of child properties.
1400 Automatically called after value is set.
1402 virtual void RefreshChildren();
1404 /** Special handling for attributes of this property.
1406 If returns false, then the attribute will be automatically stored in
1409 Default implementation simply returns false.
1411 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
1413 /** Returns value of an attribute.
1415 Override if custom handling of attributes is needed.
1417 Default implementation simply return NULL variant.
1419 virtual wxVariant
DoGetAttribute( const wxString
& name
) const;
1421 /** Returns instance of a new wxPGEditorDialogAdapter instance, which is
1422 used when user presses the (optional) button next to the editor control;
1424 Default implementation returns NULL (ie. no action is generated when
1427 virtual wxPGEditorDialogAdapter
* GetEditorDialog() const;
1429 /** Append a new choice to property's list of choices.
1431 int AddChoice( const wxString
& label
, int value
= wxPG_INVALID_VALUE
)
1433 return InsertChoice(label
, wxNOT_FOUND
, value
);
1437 Returns true if children of this property are component values (for
1438 instance, points size, face name, and is_underlined are component
1441 bool AreChildrenComponents() const
1443 if ( m_flags
& (wxPG_PROP_COMPOSED_VALUE
|wxPG_PROP_AGGREGATE
) )
1450 Removes entry from property's wxPGChoices and editor control (if it is
1453 If selected item is deleted, then the value is set to unspecified.
1455 void DeleteChoice( int index
);
1458 Call to enable or disable usage of common value (integer value that can
1459 be selected for properties instead of their normal values) for this
1462 Common values are disabled by the default for all properties.
1464 void EnableCommonValue( bool enable
= true )
1466 if ( enable
) SetFlag( wxPG_PROP_USES_COMMON_VALUE
);
1467 else ClearFlag( wxPG_PROP_USES_COMMON_VALUE
);
1471 Composes text from values of child properties.
1473 wxString
GenerateComposedValue() const
1476 DoGenerateComposedValue(s
);
1480 /** Returns property's label. */
1481 const wxString
& GetLabel() const { return m_label
; }
1483 /** Returns property's name with all (non-category, non-root) parents. */
1484 wxString
GetName() const;
1487 Returns property's base name (ie parent's name is not added in any
1490 const wxString
& GetBaseName() const { return m_name
; }
1492 /** Returns read-only reference to property's list of choices.
1494 const wxPGChoices
& GetChoices() const
1499 /** Returns coordinate to the top y of the property. Note that the
1500 position of scrollbars is not taken into account.
1504 wxVariant
GetValue() const
1506 return DoGetValue();
1510 /** Returns reference to the internal stored value. GetValue is preferred
1511 way to get the actual value, since GetValueRef ignores DoGetValue,
1512 which may override stored value.
1514 wxVariant
& GetValueRef()
1519 const wxVariant
& GetValueRef() const
1525 /** Returns text representation of property's value.
1528 If 0 (default value), then displayed string is returned.
1529 If wxPG_FULL_VALUE is set, returns complete, storable string value
1530 instead of displayable. If wxPG_EDITABLE_VALUE is set, returns
1531 string value that must be editable in textctrl. If
1532 wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to
1533 display as a part of string property's composite text
1536 @remarks In older versions, this function used to be overridden to convert
1537 property's value into a string representation. This function is
1538 now handled by ValueToString(), and overriding this function now
1539 will result in run-time assertion failure.
1541 virtual wxString
GetValueAsString( int argFlags
= 0 ) const;
1543 /** Synonymous to GetValueAsString().
1545 @deprecated Use GetValueAsString() instead.
1547 @see GetValueAsString()
1549 wxDEPRECATED( wxString
GetValueString( int argFlags
= 0 ) const );
1551 void UpdateControl( wxWindow
* primary
);
1554 Returns wxPGCell of given column.
1556 const wxPGCell
& GetCell( unsigned int column
) const;
1558 wxPGCell
& GetCell( unsigned int column
);
1560 /** Return number of displayed common values for this property.
1562 int GetDisplayedCommonValueCount() const;
1564 wxString
GetDisplayedString() const
1566 return GetValueAsString(0);
1569 /** Returns property grid where property lies. */
1570 wxPropertyGrid
* GetGrid() const;
1572 /** Returns owner wxPropertyGrid, but only if one is currently on a page
1573 displaying this property. */
1574 wxPropertyGrid
* GetGridIfDisplayed() const;
1576 /** Returns highest level non-category, non-root parent. Useful when you
1577 have nested wxCustomProperties/wxParentProperties.
1579 Thus, if immediate parent is root or category, this will return the
1582 wxPGProperty
* GetMainParent() const;
1584 /** Return parent of property */
1585 wxPGProperty
* GetParent() const { return m_parent
; }
1587 /** Returns true if property has editable wxTextCtrl when selected.
1590 Altough disabled properties do not displayed editor, they still
1591 return True here as being disabled is considered a temporary
1592 condition (unlike being read-only or having limited editing enabled).
1594 bool IsTextEditable() const;
1596 bool IsValueUnspecified() const
1598 return m_value
.IsNull();
1601 FlagType
HasFlag( FlagType flag
) const
1603 return ( m_flags
& flag
);
1606 /** Returns comma-delimited string of property attributes.
1608 const wxPGAttributeStorage
& GetAttributes() const
1610 return m_attributes
;
1613 /** Returns m_attributes as list wxVariant.
1615 wxVariant
GetAttributesAsList() const;
1617 FlagType
GetFlags() const
1622 const wxPGEditor
* GetEditorClass() const;
1624 wxString
GetValueType() const
1626 return m_value
.GetType();
1629 /** Returns editor used for given column. NULL for no editor.
1631 const wxPGEditor
* GetColumnEditor( int column
) const
1634 return GetEditorClass();
1639 /** Returns common value selected for this property. -1 for none.
1641 int GetCommonValue() const
1643 return m_commonValue
;
1646 /** Returns true if property has even one visible child.
1648 bool HasVisibleChildren() const;
1650 /** Inserts a new choice to property's list of choices.
1652 int InsertChoice( const wxString
& label
, int index
, int value
= wxPG_INVALID_VALUE
);
1655 Returns true if this property is actually a wxPropertyCategory.
1657 bool IsCategory() const { return HasFlag(wxPG_PROP_CATEGORY
)?true:false; }
1659 /** Returns true if this property is actually a wxRootProperty.
1661 bool IsRoot() const { return (m_parent
== NULL
); }
1663 /** Returns true if this is a sub-property. */
1664 bool IsSubProperty() const
1666 wxPGProperty
* parent
= (wxPGProperty
*)m_parent
;
1667 if ( parent
&& !parent
->IsCategory() )
1672 /** Returns last visible sub-property, recursively.
1674 const wxPGProperty
* GetLastVisibleSubItem() const;
1676 wxVariant
GetDefaultValue() const;
1678 int GetMaxLength() const
1680 return (int) m_maxLen
;
1684 Determines, recursively, if all children are not unspecified.
1687 Assumes members in this wxVariant list as pending
1690 bool AreAllChildrenSpecified( wxVariant
* pendingList
= NULL
) const;
1692 /** Updates composed values of parent non-category properties, recursively.
1693 Returns topmost property updated.
1696 - Must not call SetValue() (as can be called in it).
1698 wxPGProperty
* UpdateParentValues();
1700 /** Returns true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES.
1702 bool UsesAutoUnspecified() const
1704 return HasFlag(wxPG_PROP_AUTO_UNSPECIFIED
)?true:false;
1707 wxBitmap
* GetValueImage() const
1709 return m_valueBitmap
;
1712 wxVariant
GetAttribute( const wxString
& name
) const;
1715 Returns named attribute, as string, if found.
1717 Otherwise defVal is returned.
1719 wxString
GetAttribute( const wxString
& name
, const wxString
& defVal
) const;
1722 Returns named attribute, as long, if found.
1724 Otherwise defVal is returned.
1726 long GetAttributeAsLong( const wxString
& name
, long defVal
) const;
1729 Returns named attribute, as double, if found.
1731 Otherwise defVal is returned.
1733 double GetAttributeAsDouble( const wxString
& name
, double defVal
) const;
1735 unsigned int GetDepth() const { return (unsigned int)m_depth
; }
1737 /** Gets flags as a'|' delimited string. Note that flag names are not
1738 prepended with 'wxPG_PROP_'.
1740 String will only be made to include flags combined by this parameter.
1742 wxString
GetFlagsAsString( FlagType flagsMask
) const;
1744 /** Returns position in parent's array. */
1745 unsigned int GetIndexInParent() const
1747 return (unsigned int)m_arrIndex
;
1750 /** Hides or reveals the property.
1752 true for hide, false for reveal.
1754 By default changes are applied recursively. Set this paramter
1755 wxPG_DONT_RECURSE to prevent this.
1757 inline bool Hide( bool hide
, int flags
= wxPG_RECURSE
);
1759 bool IsExpanded() const
1760 { return (!(m_flags
& wxPG_PROP_COLLAPSED
) && GetChildCount()); }
1762 /** Returns true if all parents expanded.
1764 bool IsVisible() const;
1766 bool IsEnabled() const { return !(m_flags
& wxPG_PROP_DISABLED
); }
1768 /** If property's editor is created this forces its recreation.
1769 Useful in SetAttribute etc. Returns true if actually did anything.
1771 bool RecreateEditor();
1773 /** If property's editor is active, then update it's value.
1775 void RefreshEditor();
1777 /** Sets an attribute for this property.
1779 Text identifier of attribute. See @ref propgrid_property_attributes.
1783 void SetAttribute( const wxString
& name
, wxVariant value
);
1785 void SetAttributes( const wxPGAttributeStorage
& attributes
);
1788 Sets property's background colour.
1791 Background colour to use.
1794 If @true, children are affected recursively, and any categories
1797 void SetBackgroundColour( const wxColour
& colour
,
1798 bool recursively
= false );
1801 Sets property's text colour.
1807 If @true, children are affected recursively, and any categories
1810 void SetTextColour( const wxColour
& colour
,
1811 bool recursively
= false );
1814 /** Sets editor for a property.
1817 For builtin editors, use wxPGEditor_X, where X is builtin editor's
1818 name (TextCtrl, Choice, etc. see wxPGEditor documentation for full
1821 For custom editors, use pointer you received from
1822 wxPropertyGrid::RegisterEditorClass().
1824 void SetEditor( const wxPGEditor
* editor
)
1826 m_customEditor
= editor
;
1830 /** Sets editor for a property.
1832 inline void SetEditor( const wxString
& editorName
);
1835 Sets cell information for given column.
1837 void SetCell( int column
, const wxPGCell
& cell
);
1839 /** Sets common value selected for this property. -1 for none.
1841 void SetCommonValue( int commonValue
)
1843 m_commonValue
= commonValue
;
1846 /** Sets flags from a '|' delimited string. Note that flag names are not
1847 prepended with 'wxPG_PROP_'.
1849 void SetFlagsFromString( const wxString
& str
);
1851 /** Sets property's "is it modified?" flag. Affects children recursively.
1853 void SetModifiedStatus( bool modified
)
1855 SetFlagRecursively(wxPG_PROP_MODIFIED
, modified
);
1858 /** Call in OnEvent(), OnButtonClick() etc. to change the property value
1859 based on user input.
1862 This method is const since it doesn't actually modify value, but posts
1863 given variant as pending value, stored in wxPropertyGrid.
1865 void SetValueInEvent( wxVariant value
) const;
1868 Call this to set value of the property.
1870 Unlike methods in wxPropertyGrid, this does not automatically update
1874 Use wxPropertyGrid::ChangePropertyValue() instead if you need to run
1875 through validation process and send property change event.
1877 If you need to change property value in event, based on user input, use
1878 SetValueInEvent() instead.
1881 Pointer to list variant that contains child values. Used to indicate
1882 which children should be marked as modified.
1884 Various flags (for instance, wxPG_SETVAL_REFRESH_EDITOR).
1886 void SetValue( wxVariant value
, wxVariant
* pList
= NULL
, int flags
= 0 );
1888 /** Set wxBitmap in front of the value. This bitmap may be ignored
1889 by custom cell renderers.
1891 void SetValueImage( wxBitmap
& bmp
);
1893 /** If property has choices and they are not yet exclusive, new such copy
1894 of them will be created.
1896 void SetChoicesExclusive()
1898 m_choices
.SetExclusive();
1901 /** Sets selected choice and changes property value.
1903 Tries to retain value type, although currently if it is not string,
1904 then it is forced to integer.
1906 void SetChoiceSelection( int newValue
);
1908 void SetExpanded( bool expanded
)
1910 if ( !expanded
) m_flags
|= wxPG_PROP_COLLAPSED
;
1911 else m_flags
&= ~wxPG_PROP_COLLAPSED
;
1914 void SetFlag( FlagType flag
) { m_flags
|= flag
; }
1916 void SetFlagRecursively( FlagType flag
, bool set
);
1918 void SetHelpString( const wxString
& helpString
)
1920 m_helpString
= helpString
;
1923 void SetLabel( const wxString
& label
) { m_label
= label
; }
1925 inline void SetName( const wxString
& newName
);
1928 Changes what sort of parent this property is for its children.
1931 Use one of the following values: wxPG_PROP_MISC_PARENT (for generic
1932 parents), wxPG_PROP_CATEGORY (for categories), or
1933 wxPG_PROP_AGGREGATE (for derived property classes with private
1936 @remarks You only need to call this if you use AddChild() to add
1937 child properties. Adding properties with
1938 wxPropertyGridInterface::Insert() or
1939 wxPropertyGridInterface::AppendIn() will automatically set
1940 property to use wxPG_PROP_MISC_PARENT style.
1942 void SetParentalType( int flag
)
1944 m_flags
&= ~(wxPG_PROP_PROPERTY
|wxPG_PROP_PARENTAL_FLAGS
);
1948 void SetValueToUnspecified()
1950 wxVariant val
; // Create NULL variant
1954 #if wxUSE_VALIDATORS
1955 /** Sets wxValidator for a property*/
1956 void SetValidator( const wxValidator
& validator
)
1958 m_validator
= wxDynamicCast(validator
.Clone(),wxValidator
);
1961 /** Gets assignable version of property's validator. */
1962 wxValidator
* GetValidator() const
1966 return DoGetValidator();
1968 #endif // #if wxUSE_VALIDATORS
1971 /** Returns client data (void*) of a property.
1973 void* GetClientData() const
1975 return m_clientData
;
1978 /** Sets client data (void*) of a property.
1980 This untyped client data has to be deleted manually.
1982 void SetClientData( void* clientData
)
1984 m_clientData
= clientData
;
1987 /** Returns client object of a property.
1989 void SetClientObject(wxClientData
* clientObject
)
1991 delete m_clientObject
;
1992 m_clientObject
= clientObject
;
1995 /** Sets managed client object of a property.
1997 wxClientData
*GetClientObject() const { return m_clientObject
; }
2000 /** Sets new set of choices for property.
2003 This operation clears the property value.
2005 bool SetChoices( wxPGChoices
& choices
);
2007 /** Set max length of text in text editor.
2009 inline bool SetMaxLength( int maxLen
);
2011 /** Call with 'false' in OnSetValue to cancel value changes after all
2012 (ie. cancel 'true' returned by StringToValue() or IntToValue()).
2014 void SetWasModified( bool set
= true )
2016 if ( set
) m_flags
|= wxPG_PROP_WAS_MODIFIED
;
2017 else m_flags
&= ~wxPG_PROP_WAS_MODIFIED
;
2020 const wxString
& GetHelpString() const
2022 return m_helpString
;
2025 void ClearFlag( FlagType flag
) { m_flags
&= ~(flag
); }
2027 // Use, for example, to detect if item is inside collapsed section.
2028 bool IsSomeParent( wxPGProperty
* candidate_parent
) const;
2031 Adapts list variant into proper value using consecutive
2034 void AdaptListToValue( wxVariant
& list
, wxVariant
* value
) const;
2037 Adds a child property. If you use this instead of
2038 wxPropertyGridInterface::Insert() or
2039 wxPropertyGridInterface::AppendIn(), then you must set up
2040 property's parental type before making the call. To do this,
2041 call property's SetParentalType() function with either
2042 wxPG_PROP_MISC_PARENT (normal, public children) or with
2043 wxPG_PROP_AGGREGATE (private children for subclassed property).
2047 wxPGProperty* prop = new wxStringProperty(wxS("Property"));
2048 prop->SetParentalType(wxPG_PROP_MISC_PARENT);
2049 wxPGProperty* prop2 = new wxStringProperty(wxS("Property2"));
2050 prop->AddChild(prop2);
2053 void AddChild( wxPGProperty
* prop
);
2055 /** Returns height of children, recursively, and
2056 by taking expanded/collapsed status into account.
2058 iMax is used when finding property y-positions.
2060 int GetChildrenHeight( int lh
, int iMax
= -1 ) const;
2062 /** Returns number of child properties */
2063 unsigned int GetChildCount() const
2065 return (unsigned int) m_children
.size();
2068 /** Returns sub-property at index i. */
2069 wxPGProperty
* Item( unsigned int i
) const
2070 { return m_children
[i
]; }
2072 /** Returns last sub-property.
2074 wxPGProperty
* Last() const { return m_children
.back(); }
2076 /** Returns index of given child property. */
2077 int Index( const wxPGProperty
* p
) const;
2079 /** Deletes all sub-properties. */
2082 // Puts correct indexes to children
2083 void FixIndicesOfChildren( unsigned int starthere
= 0 );
2086 // Returns wxPropertyGridPageState in which this property resides.
2087 wxPropertyGridPageState
* GetParentState() const { return m_parentState
; }
2090 wxPGProperty
* GetItemAtY( unsigned int y
,
2092 unsigned int* nextItemY
) const;
2094 /** Returns (direct) child property with given name (or NULL if not found).
2096 wxPGProperty
* GetPropertyByName( const wxString
& name
) const;
2100 DocStr(GetClientData
,
2101 "Returns the client data object for a property", "");
2102 PyObject
* GetClientData() {
2103 wxPyClientData
* data
= (wxPyClientData
*)self
->GetClientObject();
2105 Py_INCREF(data
->m_obj
);
2113 DocStr(SetClientData
,
2114 "Associate the given client data.", "");
2115 void SetClientData(PyObject
* clientData
) {
2116 wxPyClientData
* data
= new wxPyClientData(clientData
);
2117 self
->SetClientObject(data
);
2121 GetClientObject
= GetClientData
2122 SetClientObject
= SetClientData
2128 // Returns various display-related information for given column
2129 void GetDisplayInfo( unsigned int column
,
2133 const wxPGCell
** pCell
);
2135 static wxString
* sm_wxPG_LABEL
;
2137 /** This member is public so scripting language bindings
2138 wrapper code can access it freely.
2145 Sets property cell in fashion that reduces number of exclusive
2146 copies of cell data. Used when setting, for instance, same
2147 background colour for a number of properties.
2150 First column to affect.
2153 Last column to affect.
2156 Pre-prepared cell that is used for those which cell data
2157 before this matched unmodCellData.
2160 If unmodCellData did not match, valid cell data from this
2161 is merged into cell (usually generating new exclusive copy
2164 @param unmodCellData
2165 If cell's cell data matches this, its cell is now set to
2168 @param ignoreWithFlags
2169 Properties with any one of these flags are skipped.
2172 If @true, apply this operation recursively in child properties.
2174 void AdaptiveSetCell( unsigned int firstCol
,
2175 unsigned int lastCol
,
2176 const wxPGCell
& preparedCell
,
2177 const wxPGCell
& srcData
,
2178 wxPGCellData
* unmodCellData
,
2179 FlagType ignoreWithFlags
,
2183 Makes sure m_cells has size of column+1 (or more).
2185 void EnsureCells( unsigned int column
);
2187 /** Returns (direct) child property with given name (or NULL if not found),
2191 Start looking for the child at this index.
2194 Does not support scope (ie. Parent.Child notation).
2196 wxPGProperty
* GetPropertyByNameWH( const wxString
& name
,
2197 unsigned int hintIndex
) const;
2199 /** This is used by Insert etc. */
2200 void AddChild2( wxPGProperty
* prop
,
2202 bool correct_mode
= true );
2204 void DoGenerateComposedValue( wxString
& text
,
2205 int argFlags
= wxPG_VALUE_IS_CURRENT
,
2206 const wxVariantList
* valueOverrides
= NULL
,
2207 wxPGHashMapS2S
* childResults
= NULL
) const;
2209 void DoSetName(const wxString
& str
) { m_name
= str
; }
2211 void InitAfterAdded( wxPropertyGridPageState
* pageState
,
2212 wxPropertyGrid
* propgrid
);
2214 // Removes child property with given pointer. Does not delete it.
2215 void RemoveChild( wxPGProperty
* p
);
2217 void SetParentState( wxPropertyGridPageState
* pstate
)
2218 { m_parentState
= pstate
; }
2220 // Call after fixed sub-properties added/removed after creation.
2221 // if oldSelInd >= 0 and < new max items, then selection is
2223 void SubPropsChanged( int oldSelInd
= -1 );
2225 int GetY2( int lh
) const;
2229 wxPGProperty
* m_parent
;
2230 wxPropertyGridPageState
* m_parentState
;
2232 wxClientData
* m_clientObject
;
2234 // Overrides editor returned by property class
2235 const wxPGEditor
* m_customEditor
;
2236 #if wxUSE_VALIDATORS
2237 // Editor is going to get this validator
2238 wxValidator
* m_validator
;
2240 // Show this in front of the value
2242 // TODO: Can bitmap be implemented with wxPGCell?
2243 wxBitmap
* m_valueBitmap
;
2246 wxPGAttributeStorage m_attributes
;
2247 wxArrayPGProperty m_children
;
2249 // Extended cell information
2250 wxVector
<wxPGCell
> m_cells
;
2252 // Choices shown in drop-down list of editor control.
2253 wxPGChoices m_choices
;
2255 // Help shown in statusbar or help box.
2256 wxString m_helpString
;
2258 // Index in parent's property array.
2259 unsigned int m_arrIndex
;
2261 // If not -1, then overrides m_value
2266 // Maximum length (mainly for string properties). Could be in some sort of
2267 // wxBaseStringProperty, but currently, for maximum flexibility and
2268 // compatibility, we'll stick it here. Anyway, we had 3 excess bytes to use
2269 // so short int will fit in just fine.
2272 // Root has 0, categories etc. at that level 1, etc.
2273 unsigned char m_depth
;
2275 // m_depthBgCol indicates width of background colour between margin and item
2276 // (essentially this is category's depth, if none then equals m_depth).
2277 unsigned char m_depthBgCol
;
2280 // Called in constructors.
2282 void Init( const wxString
& label
, const wxString
& name
);
2283 #endif // #ifndef SWIG
2286 // -----------------------------------------------------------------------
2289 // Property class declaration helper macros
2290 // (wxPGRootPropertyClass and wxPropertyCategory require this).
2293 #define WX_PG_DECLARE_DOGETEDITORCLASS \
2294 virtual const wxPGEditor* DoGetEditorClass() const;
2297 #define WX_PG_DECLARE_PROPERTY_CLASS(CLASSNAME) \
2299 DECLARE_DYNAMIC_CLASS(CLASSNAME) \
2300 WX_PG_DECLARE_DOGETEDITORCLASS \
2303 #define WX_PG_DECLARE_PROPERTY_CLASS(CLASSNAME)
2306 // Implements sans constructor function. Also, first arg is class name, not
2308 #define WX_PG_IMPLEMENT_PROPERTY_CLASS_PLAIN(PROPNAME,T,EDITOR) \
2309 const wxPGEditor* PROPNAME::DoGetEditorClass() const \
2311 return wxPGEditor_##EDITOR; \
2314 // -----------------------------------------------------------------------
2318 /** @class wxPGRootProperty
2320 Root parent property.
2322 class WXDLLIMPEXP_PROPGRID wxPGRootProperty
: public wxPGProperty
2325 WX_PG_DECLARE_PROPERTY_CLASS(wxPGRootProperty
)
2330 virtual ~wxPGRootProperty();
2332 virtual bool StringToValue( wxVariant
&, const wxString
&, int ) const
2340 // -----------------------------------------------------------------------
2342 /** @class wxPropertyCategory
2344 Category (caption) property.
2346 class WXDLLIMPEXP_PROPGRID wxPropertyCategory
: public wxPGProperty
2348 friend class wxPropertyGrid
;
2349 friend class wxPropertyGridPageState
;
2350 WX_PG_DECLARE_PROPERTY_CLASS(wxPropertyCategory
)
2353 /** Default constructor is only used in special cases. */
2354 wxPropertyCategory();
2356 wxPropertyCategory( const wxString
& label
,
2357 const wxString
& name
= wxPG_LABEL
);
2358 ~wxPropertyCategory();
2360 int GetTextExtent( const wxWindow
* wnd
, const wxFont
& font
) const;
2363 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
) const;
2365 void SetTextColIndex( unsigned int colInd
)
2366 { m_capFgColIndex
= (wxByte
) colInd
; }
2367 unsigned int GetTextColIndex() const
2368 { return (unsigned int) m_capFgColIndex
; }
2370 void CalculateTextExtent( wxWindow
* wnd
, const wxFont
& font
);
2372 int m_textExtent
; // pre-calculated length of text
2373 wxByte m_capFgColIndex
; // caption text colour index
2381 // -----------------------------------------------------------------------
2383 #endif // wxUSE_PROPGRID
2385 #endif // _WX_PROPGRID_PROPERTY_H_