1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxPGProperty
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 #define wxNullProperty ((wxPGProperty*)NULL)
14 @section propgrid_property_attributes wxPropertyGrid Property Attribute Identifiers
16 wxPGProperty::SetAttribute() and wxPropertyGridInterface::SetPropertyAttribute()
17 accept one of these as attribute name argument.
19 You can use strings instead of constants.
20 However, some of these constants are redefined to use cached strings which
21 may reduce your binary size by some amount.
26 /** Set default value for property.
28 #define wxPG_ATTR_DEFAULT_VALUE wxS("DefaultValue")
30 /** Universal, int or double. Minimum value for numeric properties.
32 #define wxPG_ATTR_MIN wxS("Min")
34 /** Universal, int or double. Maximum value for numeric properties.
36 #define wxPG_ATTR_MAX wxS("Max")
38 /** Universal, string. When set, will be shown as text after the displayed
39 text value. Alternatively, if third column is enabled, text will be shown
40 there (for any type of property).
42 #define wxPG_ATTR_UNITS wxS("Units")
44 /** Universal, string. When set, will be shown in property's value cell
45 when displayed value string is empty, or value is unspecified.
47 #define wxPG_ATTR_INLINE_HELP wxS("InlineHelp")
49 /** wxBoolProperty specific, int, default 0. When 1 sets bool property to
50 use checkbox instead of choice.
52 #define wxPG_BOOL_USE_CHECKBOX wxS("UseCheckbox")
54 /** wxBoolProperty specific, int, default 0. When 1 sets bool property value
55 to cycle on double click (instead of showing the popup listbox).
57 #define wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING wxS("UseDClickCycling")
59 /** wxFloatProperty (and similar) specific, int, default -1. Sets the (max) precision
60 used when floating point value is rendered as text. The default -1 means infinite
63 #define wxPG_FLOAT_PRECISION wxS("Precision")
65 /** The text will be echoed as asterisks (wxTE_PASSWORD will be passed to textctrl etc).
67 #define wxPG_STRING_PASSWORD wxS("Password")
69 /** Define base used by a wxUIntProperty. Valid constants are
70 wxPG_BASE_OCT, wxPG_BASE_DEC, wxPG_BASE_HEX and wxPG_BASE_HEXL
71 (lowercase characters).
73 #define wxPG_UINT_BASE wxS("Base")
75 /** Define prefix rendered to wxUIntProperty. Accepted constants
76 wxPG_PREFIX_NONE, wxPG_PREFIX_0x, and wxPG_PREFIX_DOLLAR_SIGN.
77 <b>Note:</b> Only wxPG_PREFIX_NONE works with Decimal and Octal
80 #define wxPG_UINT_PREFIX wxS("Prefix")
82 /** wxFileProperty/wxImageFileProperty specific, wxChar*, default is detected/varies.
83 Sets the wildcard used in the triggered wxFileDialog. Format is the
86 #define wxPG_FILE_WILDCARD wxS("Wildcard")
88 /** wxFileProperty/wxImageFileProperty specific, int, default 1.
89 When 0, only the file name is shown (i.e. drive and directory are hidden).
91 #define wxPG_FILE_SHOW_FULL_PATH wxS("ShowFullPath")
93 /** Specific to wxFileProperty and derived properties, wxString, default empty.
94 If set, then the filename is shown relative to the given path string.
96 #define wxPG_FILE_SHOW_RELATIVE_PATH wxS("ShowRelativePath")
98 /** Specific to wxFileProperty and derived properties, wxString, default is empty.
99 Sets the initial path of where to look for files.
101 #define wxPG_FILE_INITIAL_PATH wxS("InitialPath")
103 /** Specific to wxFileProperty and derivatives, wxString, default is empty.
104 Sets a specific title for the dir dialog.
106 #define wxPG_FILE_DIALOG_TITLE wxS("DialogTitle")
108 /** Specific to wxDirProperty, wxString, default is empty.
109 Sets a specific message for the dir dialog.
111 #define wxPG_DIR_DIALOG_MESSAGE wxS("DialogMessage")
113 /** Sets displayed date format for wxDateProperty.
115 #define wxPG_DATE_FORMAT wxS("DateFormat")
117 /** Sets wxDatePickerCtrl window style used with wxDateProperty. Default
118 is wxDP_DEFAULT | wxDP_SHOWCENTURY.
120 #define wxPG_DATE_PICKER_STYLE wxS("PickerStyle")
122 /** SpinCtrl editor, int or double. How much number changes when button is
123 pressed (or up/down on keybard).
125 #define wxPG_ATTR_SPINCTRL_STEP wxS("Step")
127 /** SpinCtrl editor, bool. If @true, value wraps at Min/Max.
129 #define wxPG_ATTR_SPINCTRL_WRAP wxS("Wrap")
131 /** SpinCtrl editor, bool. If @true, value can also by changed by moving
132 mouse when left mouse button is being pressed.
134 #define wxPG_ATTR_SPINCTRL_MOTIONSPIN wxS("MotionSpin")
136 /** wxMultiChoiceProperty, int. If 0, no user strings allowed. If 1, user strings
137 appear before list strings. If 2, user strings appear after list string.
139 #define wxPG_ATTR_MULTICHOICE_USERSTRINGMODE wxS("UserStringMode")
141 /** wxColourProperty and its kind, int, default 1. Setting this attribute to 0 hides custom
142 colour from property's list of choices.
144 #define wxPG_COLOUR_ALLOW_CUSTOM wxS("AllowCustom")
154 wxPGProperty is base class for all wxPropertyGrid properties. In
155 sections below we cover few related topics.
157 @li @ref pgproperty_properties
158 @li @ref pgproperty_creating
160 @section pgproperty_properties Supplied Ready-to-use Property Classes
162 Here is a list and short description of supplied fully-functional
163 property classes. They are located in either props.h or advprops.h.
165 @li @ref wxArrayStringProperty
166 @li @ref wxBoolProperty
167 @li @ref wxColourProperty
168 @li @ref wxCursorProperty
169 @li @ref wxDateProperty
170 @li @ref wxDirProperty
171 @li @ref wxEditEnumProperty
172 @li @ref wxEnumProperty
173 @li @ref wxFileProperty
174 @li @ref wxFlagsProperty
175 @li @ref wxFloatProperty
176 @li @ref wxFontProperty
177 @li @ref wxImageFileProperty
178 @li @ref wxIntProperty
179 @li @ref wxLongStringProperty
180 @li @ref wxMultiChoiceProperty
181 @li @ref wxPropertyCategory
182 @li @ref wxStringProperty
183 @li @ref wxSystemColourProperty
184 @li @ref wxUIntProperty
186 @subsection wxPropertyCategory
188 Not an actual property per se, but a header for a group of properties.
189 Regardless inherits from wxPGProperty.
191 @subsection wxStringProperty
193 Simple string property. wxPG_STRING_PASSWORD attribute may be used
194 to echo value as asterisks and use wxTE_PASSWORD for wxTextCtrl.
196 @remarks wxStringProperty has a special trait: if it has value of
197 "<composed>", and also has child properties, then its displayed
198 value becomes composition of child property values, similar as
199 with wxFontProperty, for instance.
201 @subsection wxIntProperty
203 Like wxStringProperty, but converts text to a signed long integer.
204 wxIntProperty seamlessly supports 64-bit integers (ie. wxLongLong).
205 To safely convert variant to integer, use code like this:
209 ll << property->GetValue();
212 wxLongLong ll = propertyGrid->GetPropertyValueAsLong(property);
215 @subsection wxUIntProperty
217 Like wxIntProperty, but displays value as unsigned int. To set
218 the prefix used globally, manipulate wxPG_UINT_PREFIX string attribute.
219 To set the globally used base, manipulate wxPG_UINT_BASE int
220 attribute. Regardless of current prefix, understands (hex) values starting
221 with both "0x" and "$".
222 Like wxIntProperty, wxUIntProperty seamlessly supports 64-bit unsigned
223 integers (ie. wxULongLong). Same wxVariant safety rules apply.
225 @subsection wxFloatProperty
227 Like wxStringProperty, but converts text to a double-precision floating point.
228 Default float-to-text precision is 6 decimals, but this can be changed
229 by modifying wxPG_FLOAT_PRECISION attribute.
231 @subsection wxBoolProperty
233 Represents a boolean value. wxChoice is used as editor control, by the
234 default. wxPG_BOOL_USE_CHECKBOX attribute can be set to true inorder to use
237 @subsection wxLongStringProperty
239 Like wxStringProperty, but has a button that triggers a small text editor
240 dialog. Note that in long string values, tabs are represented by "\t" and
243 To display custom dialog on button press, you can subclass
244 wxLongStringProperty and implement OnButtonClick, like this:
247 virtual bool OnButtonClick( wxPropertyGrid* propGrid, wxString& value )
249 wxSize dialogSize(...size of your dialog...);
251 wxPoint dlgPos = propGrid->GetGoodEditorDialogPosition(this,
254 // Create dialog dlg at dlgPos. Use value as initial string
258 if ( dlg.ShowModal() == wxID_OK )
260 value = dlg.GetStringValue);
267 Also, if you wish not to have line breaks and tabs translated to
268 escape sequences, then do following in constructor of your subclass:
271 m_flags |= wxPG_PROP_NO_ESCAPE;
274 @subsection wxDirProperty
276 Like wxLongStringProperty, but the button triggers dir selector instead.
277 Supported properties (all with string value): wxPG_DIR_DIALOG_MESSAGE.
279 @subsection wxFileProperty
281 Like wxLongStringProperty, but the button triggers file selector instead.
282 Default wildcard is "All files..." but this can be changed by setting
283 wxPG_FILE_WILDCARD attribute (see wxFileDialog for format details).
284 Attribute wxPG_FILE_SHOW_FULL_PATH can be set to @false inorder to show
285 only the filename, not the entire path.
287 @subsection wxEnumProperty
289 Represents a single selection from a list of choices -
290 wxOwnerDrawnComboBox is used to edit the value.
292 @subsection wxFlagsProperty
294 Represents a bit set that fits in a long integer. wxBoolProperty sub-properties
295 are created for editing individual bits. Textctrl is created to manually edit
296 the flags as a text; a continous sequence of spaces, commas and semicolons
297 is considered as a flag id separator.
298 <b>Note: </b> When changing "choices" (ie. flag labels) of wxFlagsProperty, you
299 will need to use wxPGProperty::SetChoices() - otherwise they will not get updated
302 @subsection wxArrayStringProperty
304 Allows editing of a list of strings in wxTextCtrl and in a separate dialog.
306 @subsection wxDateProperty
308 wxDateTime property. Default editor is DatePickerCtrl, altough TextCtrl
309 should work as well. wxPG_DATE_FORMAT attribute can be used to change
310 string wxDateTime::Format uses (altough default is recommended as it is
311 locale-dependant), and wxPG_DATE_PICKER_STYLE allows changing window
312 style given to DatePickerCtrl (default is wxDP_DEFAULT|wxDP_SHOWCENTURY).
314 @subsection wxEditEnumProperty
316 Represents a string that can be freely edited or selected from list of choices -
317 custom combobox control is used to edit the value.
319 @subsection wxMultiChoiceProperty
321 Allows editing a multiple selection from a list of strings. This is
322 property is pretty much built around concept of wxMultiChoiceDialog.
323 It uses wxArrayString value.
325 @subsection wxImageFileProperty
327 Like wxFileProperty, but has thumbnail of the image in front of
328 the filename and autogenerates wildcard from available image handlers.
330 @subsection wxColourProperty
332 <b>Useful alternate editor:</b> Choice.
334 Represents wxColour. wxButton is used to trigger a colour picker dialog.
335 There are various sub-classing opportunities with this class. See
336 below in wxSystemColourProperty section for details.
338 @subsection wxFontProperty
340 Represents wxFont. Various sub-properties are used to edit individual
343 @subsection wxSystemColourProperty
345 Represents wxColour and a system colour index. wxChoice is used to edit
346 the value. Drop-down list has color images. Note that value type
347 is wxColourPropertyValue instead of wxColour (which wxColourProperty
351 class wxColourPropertyValue : public wxObject
354 // An integer value relating to the colour, and which exact
355 // meaning depends on the property with which it is used.
357 // For wxSystemColourProperty:
358 // Any of wxSYS_COLOUR_XXX, or any web-colour ( use wxPG_TO_WEB_COLOUR
359 // macro - (currently unsupported) ), or wxPG_COLOUR_CUSTOM.
362 // Resulting colour. Should be correct regardless of type.
367 in wxSystemColourProperty, and its derived class wxColourProperty, there
368 are various sub-classing features. To set basic list list of colour
369 names, call wxPGProperty::SetChoices().
372 // Override in derived class to customize how colours are translated
374 virtual wxString ColourToString( const wxColour& col, int index ) const;
376 // Returns index of entry that triggers colour picker dialog
377 // (default is last).
378 virtual int GetCustomColourIndex() const;
380 // Helper function to show the colour dialog
381 bool QueryColourFromUser( wxVariant& variant ) const;
383 // Returns colour for given choice.
384 // Default function returns wxSystemSettings::GetColour(index).
385 virtual wxColour GetColour( int index ) const;
388 @subsection wxCursorProperty
390 Represents a wxCursor. wxChoice is used to edit the value.
391 Drop-down list has cursor images under some (wxMSW) platforms.
394 @section pgproperty_creating Creating Custom Properties
396 New properties can be created by subclassing wxPGProperty or one
397 of the provided property classes, and (re)implementing necessary
398 member functions. Below, each virtual member function has ample
399 documentation about its purpose and any odd details which to keep
402 Here is a very simple 'template' code:
405 class MyProperty : public wxPGProperty
408 // All arguments of ctor must have a default value -
409 // use wxPG_LABEL for label and name
410 MyProperty( const wxString& label = wxPG_LABEL,
411 const wxString& name = wxPG_LABEL,
412 const wxString& value = wxEmptyString )
414 // m_value is wxVariant
418 virtual ~MyProperty() { }
420 const wxPGEditor* DoGetEditorClass() const
422 // Determines editor used by property.
423 // You can replace 'TextCtrl' below with any of these
424 // builtin-in property editor identifiers: Choice, ComboBox,
425 // TextCtrlAndButton, ChoiceAndButton, CheckBox, SpinCtrl,
427 return wxPGEditor_TextCtrl;
430 virtual wxString ValueToString( wxVariant& value,
433 // TODO: Convert given property value to a string
436 virtual bool StringToValue( wxVariant& variant, const wxString& text, int argFlags )
438 // TODO: Adapt string to property value.
445 Since wxPGProperty derives from wxObject, you can use standard
446 DECLARE_DYNAMIC_CLASS and IMPLEMENT_DYNAMIC_CLASS macros. From the
447 above example they were omitted for sake of simplicity, and besides,
448 they are only really needed if you need to use wxRTTI with your
451 You can change the 'value type' of a property by simply assigning different
452 type of variant with SetValue. <b>It is mandatory to implement
453 wxVariantData class for all data types used as property values.</b>
454 You can use macros declared in wxPropertyGrid headers. For instance:
458 // (If you need to have export declaration, use version of macros
459 // with _EXPORTED postfix)
460 WX_PG_DECLARE_VARIANT_DATA(MyDataClass)
463 WX_PG_IMPLEMENT_VARIANT_DATA(MyDataClass)
465 // Or, if you don't have valid == operator:
466 WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(MyDataClass)
472 class wxPGProperty
: public wxObject
475 typedef wxUint32 FlagType
;
484 Non-abstract property classes should have constructor of this style:
488 MyProperty( const wxString& label, const wxString& name, const T& value )
491 // Generally recommended way to set the initial value
492 // (as it should work in pretty much 100% of cases).
497 // If has private child properties then create them here. For example:
498 // AddChild( new wxStringProperty( "Subprop 1", wxPG_LABEL, value.GetSubProp1() ) );
503 wxPGProperty( const wxString
& label
, const wxString
& name
);
506 Virtual destructor. It is customary for derived properties to implement this.
508 virtual ~wxPGProperty();
511 This virtual function is called after m_value has been set.
514 - If m_value was set to Null variant (ie. unspecified value), OnSetValue()
516 - m_value may be of any variant type. Typically properties internally support only
517 one variant type, and as such OnSetValue() provides a good opportunity to convert
518 supported values into internal type.
519 - Default implementation does nothing.
521 virtual void OnSetValue();
524 Override this to return something else than m_value as the value.
526 virtual wxVariant
DoGetValue() const;
529 Implement this function in derived class to check the value.
530 Return @true if it is ok. Returning @false prevents property change events
534 - Default implementation always returns @true.
536 virtual bool ValidateValue( wxVariant
& value
, wxPGValidationInfo
& validationInfo
) const;
539 Converts text into wxVariant value appropriate for this property.
542 On function entry this is the old value (should not be wxNullVariant
543 in normal cases). Translated value must be assigned back to it.
546 Text to be translated into variant.
549 If wxPG_FULL_VALUE is set, returns complete, storable value instead
550 of displayable one (they may be different).
551 If wxPG_COMPOSITE_FRAGMENT is set, text is interpreted as a part of
552 composite property string value (as generated by ValueToString()
553 called with this same flag).
555 @return Returns @true if resulting wxVariant value was different.
557 @remarks Default implementation converts semicolon delimited tokens into
558 child values. Only works for properties with children.
560 You might want to take into account that m_value is Null variant
561 if property value is unspecified (which is usually only case if
562 you explicitly enabled that sort behavior).
564 virtual bool StringToValue( wxVariant
& variant
, const wxString
& text
, int argFlags
= 0 ) const;
567 Converts integer (possibly a choice selection) into wxVariant value
568 appropriate for this property.
571 On function entry this is the old value (should not be wxNullVariant
572 in normal cases). Translated value must be assigned back to it.
574 Integer to be translated into variant.
576 If wxPG_FULL_VALUE is set, returns complete, storable value instead
579 @return Returns @true if resulting wxVariant value was different.
582 - If property is not supposed to use choice or spinctrl or other editor
583 with int-based value, it is not necessary to implement this method.
584 - Default implementation simply assign given int to m_value.
585 - If property uses choice control, and displays a dialog on some choice
586 items, then it is preferred to display that dialog in IntToValue
588 - You might want to take into account that m_value is Mull variant if
589 property value is unspecified (which is usually only case if you
590 explicitly enabled that sort behavior).
592 virtual bool IntToValue( wxVariant
& variant
, int number
, int argFlags
= 0 ) const;
595 Converts property value into a text representation.
598 Value to be converted.
600 If 0 (default value), then displayed string is returned.
601 If wxPG_FULL_VALUE is set, returns complete, storable string value
602 instead of displayable. If wxPG_EDITABLE_VALUE is set, returns
603 string value that must be editable in textctrl.
604 If wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to
605 display as a part of string property's composite text representation.
607 @remarks Default implementation calls GenerateComposedValue().
609 virtual wxString
ValueToString( wxVariant
& value
, int argFlags
= 0 ) const;
612 Converts string to a value, and if successful, calls SetValue() on it.
613 Default behavior is to do nothing.
616 String to get the value from.
620 @return @true if value was changed.
622 bool SetValueFromString( const wxString
& text
, int flags
= 0 );
625 Converts integer to a value, and if succesful, calls SetValue() on it.
626 Default behavior is to do nothing.
629 Int to get the value from.
631 If has wxPG_FULL_VALUE, then the value given is a actual value and not an index.
633 @return @true if value was changed.
635 bool SetValueFromInt( long value
, int flags
= 0 );
638 Returns size of the custom painted image in front of property. This method
639 must be overridden to return non-default value if OnCustomPaint is to be
643 Normally -1, but can be an index to the property's list of items.
646 - Default behavior is to return wxSize(0,0), which means no image.
647 - Default image width or height is indicated with dimension -1.
648 - You can also return wxPG_DEFAULT_IMAGE_SIZE which equals wxSize(-1, -1).
650 virtual wxSize
OnMeasureImage( int item
= -1 ) const;
653 Events received by editor widgets are processed here. Note that editor class
654 usually processes most events. Some, such as button press events of
655 TextCtrlAndButton class, can be handled here. Also, if custom handling
656 for regular events is desired, then that can also be done (for example,
657 wxSystemColourProperty custom handles wxEVT_COMMAND_CHOICE_SELECTED
658 to display colour picker dialog when 'custom' selection is made).
660 If the event causes value to be changed, SetValueInEvent() should be called
661 to set the new value.
663 The parameter @a event is the associated wxEvent.
666 Should return @true if any changes in value should be reported.
669 - If property uses choice control, and displays a dialog on some choice items,
670 then it is preferred to display that dialog in IntToValue instead of OnEvent.
672 virtual bool OnEvent( wxPropertyGrid
* propgrid
, wxWindow
* wnd_primary
, wxEvent
& event
);
675 Called after value of a child property has been altered. Note that this function is
676 usually called at the time that value of this property, or given child property, is
677 still pending for change.
679 Sample pseudo-code implementation:
682 void MyProperty::ChildChanged( wxVariant& thisValue, int childIndex, wxVariant& childValue ) const
684 // Acquire reference to actual type of data stored in variant
685 // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros were used to create
686 // the variant class).
687 T& data = TFromVariant(thisValue);
689 // Copy childValue into data.
690 switch ( childIndex )
693 data.SetSubProp1( childvalue.GetLong() );
696 data.SetSubProp2( childvalue.GetString() );
704 Value of this property, that should be altered.
706 Index of child changed (you can use Item(childIndex) to get).
708 Value of the child property.
710 virtual void ChildChanged( wxVariant
& thisValue
, int childIndex
, wxVariant
& childValue
) const;
713 Returns pointer to an instance of used editor.
715 virtual const wxPGEditor
* DoGetEditorClass() const;
718 Returns pointer to the wxValidator that should be used
719 with the editor of this property (@NULL for no validator).
720 Setting validator explicitly via SetPropertyValidator
723 In most situations, code like this should work well
724 (macros are used to maintain one actual validator instance,
725 so on the second call the function exits within the first
730 wxValidator* wxMyPropertyClass::DoGetValidator () const
732 WX_PG_DOGETVALIDATOR_ENTRY()
734 wxMyValidator* validator = new wxMyValidator(...);
736 ... prepare validator...
738 WX_PG_DOGETVALIDATOR_EXIT(validator)
744 You can get common filename validator by returning
745 wxFileProperty::GetClassValidator(). wxDirProperty,
746 for example, uses it.
748 virtual wxValidator
* DoGetValidator () const;
751 Override to paint an image in front of the property value text or drop-down
752 list item (but only if wxPGProperty::OnMeasureImage is overridden as well).
754 If property's OnMeasureImage() returns size that has height != 0 but less than
755 row height ( < 0 has special meanings), wxPropertyGrid calls this method to
756 draw a custom image in a limited area in front of the editor control or
757 value text/graphics, and if control has drop-down list, then the image is
758 drawn there as well (even in the case OnMeasureImage() returned higher height
761 NOTE: Following applies when OnMeasureImage() returns a "flexible" height (
762 using wxPG_FLEXIBLE_SIZE(W,H) macro), which implies variable height items:
763 If rect.x is < 0, then this is a measure item call, which means that
764 dc is invalid and only thing that should be done is to set paintdata.m_drawnHeight
765 to the height of the image of item at index paintdata.m_choiceItem. This call
766 may be done even as often as once every drop-down popup show.
771 Box reserved for custom graphics. Includes surrounding rectangle, if any.
772 If x is < 0, then this is a measure item call (see above).
774 wxPGPaintData structure with much useful data about painted item.
779 const wxPropertyGrid* m_parent;
781 // Normally -1, otherwise index to drop-down list item that has to be drawn.
784 // Set to drawn width in OnCustomPaint (optional).
787 // In a measure item call, set this to the height of item at m_choiceItem index
793 - You can actually exceed rect width, but if you do so then paintdata.m_drawnWidth
794 must be set to the full width drawn in pixels.
795 - Due to technical reasons, rect's height will be default even if custom height
796 was reported during measure call.
797 - Brush is guaranteed to be default background colour. It has been already used to
798 clear the background of area being painted. It can be modified.
799 - Pen is guaranteed to be 1-wide 'black' (or whatever is the proper colour) pen for
800 drawing framing rectangle. It can be changed as well.
804 virtual void OnCustomPaint( wxDC
& dc
, const wxRect
& rect
, wxPGPaintData
& paintdata
);
807 Returns used wxPGCellRenderer instance for given property column (label=0, value=1).
809 Default implementation returns editor's renderer for all columns.
811 virtual wxPGCellRenderer
* GetCellRenderer( int column
) const;
814 Returns which choice is currently selected. Only applies to properties
817 Needs to reimplemented in derived class if property value does not
818 map directly to a choice. Integer as index, bool, and string usually do.
820 virtual int GetChoiceSelection() const;
823 Refresh values of child properties. Automatically called after value is set.
825 virtual void RefreshChildren();
828 Special handling for attributes of this property.
830 If returns @false, then the attribute will be automatically stored in
833 Default implementation simply returns @false.
835 virtual bool DoSetAttribute( const wxString
& name
, wxVariant
& value
);
838 Returns value of an attribute.
840 Override if custom handling of attributes is needed.
842 Default implementation simply return @NULL variant.
844 virtual wxVariant
DoGetAttribute( const wxString
& name
) const;
847 Returns instance of a new wxPGEditorDialogAdapter instance, which is
848 used when user presses the (optional) button next to the editor control;
850 Default implementation returns @NULL (ie. no action is generated when
853 virtual wxPGEditorDialogAdapter
* GetEditorDialog() const;
856 Append a new choice to property's list of choices.
859 Label for added choice.
862 Value for new choice. Do not specify if you wish this
863 to equal choice index.
866 Index to added choice.
868 int AddChoice( const wxString
& label
, int value
= wxPG_INVALID_VALUE
);
871 Adds a child property. If you use this instead of
872 wxPropertyGridInterface::Insert() or
873 wxPropertyGridInterface::AppendIn(), then you must set up
874 property's parental type before making the call. To do this,
875 call property's SetParentalType() function with either
876 wxPG_PROP_MISC_PARENT (normal, public children) or with
877 wxPG_PROP_AGGREGATE (private children for subclassed property).
881 wxPGProperty* prop = new wxStringProperty(wxS("Property"));
882 prop->SetParentalType(wxPG_PROP_MISC_PARENT);
883 wxPGProperty* prop2 = new wxStringProperty(wxS("Property2"));
884 prop->AddChild(prop2);
887 void AddChild( wxPGProperty
* property
);
890 Adapts list variant into proper value using consecutive
891 ChildChanged() calls.
893 void AdaptListToValue( wxVariant
& list
, wxVariant
* value
) const;
896 Determines, recursively, if all children are not unspecified.
899 Assumes members in this wxVariant list as pending
902 bool AreAllChildrenSpecified( wxVariant
* pendingList
= NULL
) const;
905 Returns @true if children of this property are component values (for instance,
906 points size, face name, and is_underlined are component values of a font).
908 bool AreChildrenComponents() const;
911 Deletes children of the property.
913 void DeleteChildren();
916 Removes entry from property's wxPGChoices and editor control (if it is active).
918 If selected item is deleted, then the value is set to unspecified.
920 void DeleteChoice( int index
);
922 /** Deletes all child properties. */
926 Composes text from values of child properties.
928 wxString
GenerateComposedValue() const;
931 Returns property attribute value, null variant if not found.
933 wxVariant
GetAttribute( const wxString
& name
) const;
935 /** Returns named attribute, as string, if found. Otherwise defVal is returned.
937 wxString
GetAttribute( const wxString
& name
, const wxString
& defVal
) const;
939 /** Returns named attribute, as long, if found. Otherwise defVal is returned.
941 long GetAttributeAsLong( const wxString
& name
, long defVal
) const;
943 /** Returns named attribute, as double, if found. Otherwise defVal is returned.
945 double GetAttributeAsDouble( const wxString
& name
, double defVal
) const;
948 Returns attributes as list wxVariant.
950 wxVariant
GetAttributesAsList() const;
953 Returns editor used for given column. @NULL for no editor.
955 const wxPGEditor
* GetColumnEditor( int column
) const;
957 /** Returns property's base name (ie. parent's name is not added in any case) */
958 const wxString
& GetBaseName() const;
961 Returns wxPGCell of given column.
963 const wxPGCell
& GetCell( unsigned int column
) const;
966 Returns number of child properties.
968 unsigned int GetChildCount() const;
971 Returns height of children, recursively, and
972 by taking expanded/collapsed status into account.
975 Line height. Pass result of GetGrid()->GetRowHeight() here.
978 Only used (internally) when finding property y-positions.
980 int GetChildrenHeight( int lh
, int iMax
= -1 ) const;
983 Returns read-only reference to property's list of choices.
985 const wxPGChoices
& GetChoices() const;
988 Returns client data (void*) of a property.
990 void* GetClientData() const;
992 /** Sets managed client object of a property.
994 wxClientData
*GetClientObject() const;
997 Returns property's default value. If property's value type is not
998 a built-in one, and "DefaultValue" attribute is not defined, then
999 this function usually returns Null variant.
1001 wxVariant
GetDefaultValue() const;
1003 /** Returns property's displayed text.
1005 wxString
GetDisplayedString() const;
1008 Returns wxPGEditor that will be used and created when
1009 property becomes selected. Returns more accurate value
1010 than DoGetEditorClass().
1012 const wxPGEditor
* GetEditorClass() const;
1014 /** Returns property grid where property lies. */
1015 wxPropertyGrid
* GetGrid() const;
1018 Returns owner wxPropertyGrid, but only if one is currently on a page
1019 displaying this property.
1021 wxPropertyGrid
* GetGridIfDisplayed() const;
1024 Returns property's help or description text.
1026 @see SetHelpString()
1028 const wxString
& GetHelpString() const;
1031 Returns position in parent's array.
1033 unsigned int GetIndexInParent() const;
1035 /** Returns property's label. */
1036 const wxString
& GetLabel() const;
1039 Returns last visible child property, recursively.
1041 const wxPGProperty
* GetLastVisibleSubItem() const;
1044 Returns highest level non-category, non-root parent. Useful when you
1045 have nested properties with children.
1047 @remarks If immediate parent is root or category, this will return the
1050 wxPGProperty
* GetMainParent() const;
1052 /** Returns maximum allowed length of property's text value.
1054 int GetMaxLength() const;
1056 /** Returns property's name with all (non-category, non-root) parents. */
1057 wxString
GetName() const;
1059 /** Return parent of property */
1060 wxPGProperty
* GetParent() const;
1063 Returns (direct) child property with given name (or @NULL if not found).
1065 wxPGProperty
* GetPropertyByName( const wxString
& name
) const;
1067 /** Gets assignable version of property's validator. */
1068 wxValidator
* GetValidator() const;
1071 Returns property's value.
1073 wxVariant
GetValue() const;
1076 Returns bitmap that appears next to value text. Only returns non-@NULL
1077 bitmap if one was set with SetValueImage().
1079 wxBitmap
* GetValueImage() const;
1081 /** Returns text representation of property's value.
1084 If 0 (default value), then displayed string is returned.
1085 If wxPG_FULL_VALUE is set, returns complete, storable string value
1086 instead of displayable. If wxPG_EDITABLE_VALUE is set, returns
1087 string value that must be editable in textctrl. If
1088 wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to
1089 display as a part of string property's composite text
1092 @remarks In older versions, this function used to be overridden to convert
1093 property's value into a string representation. This function is
1094 now handled by ValueToString(), and overriding this function now
1095 will result in run-time assertion failure.
1097 virtual wxString
GetValueAsString( int argFlags
= 0 ) const;
1099 /** Synonymous to GetValueAsString().
1101 @deprecated Use GetValueAsString() instead.
1103 @see GetValueAsString()
1105 wxDEPRECATED( wxString
GetValueString( int argFlags
= 0 ) const );
1108 Returns value type used by this property.
1110 wxString
GetValueType() const;
1113 Returns coordinate to the top y of the property. Note that the
1114 position of scrollbars is not taken into account.
1119 Returns @true if property has even one visible child.
1121 bool HasVisibleChildren() const;
1124 Hides or reveals the property.
1127 @true for hide, @false for reveal.
1130 By default changes are applied recursively. Set this parameter wxPG_DONT_RECURSE to prevent this.
1132 bool Hide( bool hide
, int flags
= wxPG_RECURSE
);
1135 Returns index of given child property. wxNOT_FOUND if
1136 given property is not child of this.
1138 int Index( const wxPGProperty
* p
) const;
1141 Inserts a new choice to property's list of choices.
1147 Insertion position. Use wxNOT_FOUND to append.
1150 Value for new choice. Do not specify if you wish this
1151 to equal choice index.
1153 int InsertChoice( const wxString
& label
, int index
, int value
= wxPG_INVALID_VALUE
);
1156 Returns @true if this property is actually a wxPropertyCategory.
1158 bool IsCategory() const;
1161 Returns @true if property is enabled.
1163 bool IsEnabled() const;
1166 Returns @true if property has visible children.
1168 bool IsExpanded() const;
1171 Returns @true if this property is actually a wxRootProperty.
1173 bool IsRoot() const;
1176 Returns @true if candidateParent is some parent of this property.
1178 bool IsSomeParent( wxPGProperty
* candidateParent
) const;
1181 Returns true if property has editable wxTextCtrl when selected.
1183 @remarks Altough disabled properties do not displayed editor, they still
1184 return @true here as being disabled is considered a temporary
1185 condition (unlike being read-only or having limited editing enabled).
1187 bool IsTextEditable() const;
1190 Returns @true if property's value is considered unspecified. This
1191 usually means that value is Null variant.
1193 bool IsValueUnspecified() const;
1196 Returns true if all parents expanded.
1198 bool IsVisible() const;
1201 Returns child property at index i.
1203 wxPGProperty
* Item( unsigned int i
) const;
1206 If property's editor is active, then update it's value.
1208 void RefreshEditor();
1211 Sets an attribute for this property.
1214 Text identifier of attribute. See @ref propgrid_property_attributes.
1219 @remarks Setting attribute's value to Null variant will simply remove it
1220 from property's set of attributes.
1222 void SetAttribute( const wxString
& name
, wxVariant value
);
1225 Sets property's background colour.
1228 Background colour to use.
1231 If @true, children are affected recursively, and any categories
1234 void SetBackgroundColour( const wxColour
& colour
,
1235 bool recursively
= false );
1238 Sets editor for a property.
1241 For builtin editors, use wxPGEditor_X, where X is builtin editor's
1242 name (TextCtrl, Choice, etc. see wxPGEditor documentation for full list).
1244 For custom editors, use pointer you received from wxPropertyGrid::RegisterEditorClass().
1246 void SetEditor( const wxPGEditor
* editor
);
1249 Sets editor for a property, by editor name.
1251 void SetEditor( const wxString
& editorName
);
1254 Sets cell information for given column.
1256 void SetCell( int column
, const wxPGCell
& cell
);
1259 Sets new set of choices for property.
1261 @remarks This operation clears the property value.
1263 bool SetChoices( wxPGChoices
& choices
);
1266 If property has choices and they are not yet exclusive, new such copy
1267 of them will be created.
1269 void SetChoicesExclusive();
1272 Sets client data (void*) of a property.
1274 @remarks This untyped client data has to be deleted manually.
1276 void SetClientData( void* clientData
);
1278 /** Returns client object of a property.
1280 void SetClientObject(wxClientData
* clientObject
);
1283 Sets selected choice and changes property value.
1285 Tries to retain value type, although currently if it is not string,
1286 then it is forced to integer.
1288 void SetChoiceSelection( int newValue
);
1291 Sets property's help string, which is shown, for example, in
1292 wxPropertyGridManager's description text box.
1294 void SetHelpString( const wxString
& helpString
);
1297 Sets property's label.
1299 @remarks Properties under same parent may have same labels. However,
1300 property names must still remain unique.
1302 void SetLabel( const wxString
& label
);
1305 Set max length of text in text editor.
1307 bool SetMaxLength( int maxLen
);
1310 Sets property's "is it modified?" flag. Affects children recursively.
1312 void SetModifiedStatus( bool modified
);
1315 Sets new (base) name for property.
1317 void SetName( const wxString
& newName
);
1320 Changes what sort of parent this property is for its children.
1323 Use one of the following values: wxPG_PROP_MISC_PARENT (for generic
1324 parents), wxPG_PROP_CATEGORY (for categories), or
1325 wxPG_PROP_AGGREGATE (for derived property classes with private
1328 @remarks You only need to call this if you use AddChild() to add
1329 child properties. Adding properties with
1330 wxPropertyGridInterface::Insert() or
1331 wxPropertyGridInterface::AppendIn() will automatically set
1332 property to use wxPG_PROP_MISC_PARENT style.
1334 void SetParentalType( int flag
);
1337 Sets property's text colour.
1343 If @true, children are affected recursively, and any categories
1346 void SetTextColour( const wxColour
& colour
,
1347 bool recursively
= false );
1349 /** Sets wxValidator for a property */
1350 void SetValidator( const wxValidator
& validator
);
1353 Call this to set value of the property. Unlike methods in wxPropertyGrid,
1354 this does not automatically update the display.
1357 Use wxPropertyGrid::ChangePropertyValue() instead if you need to run through
1358 validation process and send property change event.
1360 If you need to change property value in event, based on user input, use
1361 SetValueInEvent() instead.
1366 Pointer to list variant that contains child values. Used to indicate
1367 which children should be marked as modified. Usually you just use @NULL.
1369 Use wxPG_SETVAL_REFRESH_EDITOR to update editor control, if it
1372 void SetValue( wxVariant value
, wxVariant
* pList
= NULL
, int flags
= 0 );
1375 Set wxBitmap in front of the value. This bitmap may be ignored
1376 by custom cell renderers.
1378 void SetValueImage( wxBitmap
& bmp
);
1381 Call this function in OnEvent(), OnButtonClick() etc. to change the
1382 property value based on user input.
1384 @remarks This method is const since it doesn't actually modify value, but posts
1385 given variant as pending value, stored in wxPropertyGrid.
1387 void SetValueInEvent( wxVariant value
) const;
1390 Sets property's value to unspecified (ie. Null variant).
1392 void SetValueToUnspecified();
1395 Call with @false in OnSetValue() to cancel value changes after all
1396 (ie. cancel @true returned by StringToValue() or IntToValue()).
1398 void SetWasModified( bool set
= true );
1401 Updates composed values of parent non-category properties, recursively.
1402 Returns topmost property updated.
1404 wxPGProperty
* UpdateParentValues();
1407 Returns @true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES.
1409 bool UsesAutoUnspecified() const;
1416 Helper class for managing choices of wxPropertyGrid properties.
1417 Each entry can have label, value, bitmap, text colour, and background colour.
1419 @library{wxpropgrid}
1422 class WXDLLIMPEXP_PROPGRID wxPGChoices
1425 typedef long ValArrItem
;
1428 Default constructor.
1432 /** Copy constructor. */
1433 wxPGChoices( const wxPGChoices
& a
);
1436 wxPGChoices( const wxChar
** labels
, const long* values
= NULL
);
1439 wxPGChoices( const wxArrayString
& labels
, const wxArrayInt
& values
= wxArrayInt() );
1442 wxPGChoices( wxPGChoicesData
* data
);
1448 Adds to current. If did not have own copies, creates them now. If was empty,
1449 identical to set except that creates copies.
1451 void Add( const wxChar
** labels
, const ValArrItem
* values
= NULL
);
1453 /** Version that works with wxArrayString. */
1454 void Add( const wxArrayString
& arr
, const ValArrItem
* values
= NULL
);
1456 /** Version that works with wxArrayString and wxArrayInt. */
1457 void Add( const wxArrayString
& arr
, const wxArrayInt
& arrint
);
1459 /** Adds single item. */
1460 wxPGChoiceEntry
& Add( const wxString
& label
, int value
= wxPG_INVALID_VALUE
);
1462 /** Adds a single item, with bitmap. */
1463 wxPGChoiceEntry
& Add( const wxString
& label
, const wxBitmap
& bitmap
,
1464 int value
= wxPG_INVALID_VALUE
);
1466 /** Adds a single item with full entry information. */
1467 wxPGChoiceEntry
& Add( const wxPGChoiceEntry
& entry
);
1469 /** Adds single item, sorted. */
1470 wxPGChoiceEntry
& AddAsSorted( const wxString
& label
, int value
= wxPG_INVALID_VALUE
);
1473 Assigns data from another set of choices.
1475 void Assign( const wxPGChoices
& a
);
1478 Assigns data from another set of choices.
1480 void AssignData( wxPGChoicesData
* data
);
1488 Returns labe of item.
1490 const wxString
& GetLabel( unsigned int ind
) const;
1493 Returns number of items.
1495 unsigned int GetCount() const;
1498 Returns value of item;
1500 int GetValue( unsigned int ind
) const;
1503 Returns array of values matching the given strings. Unmatching strings
1504 result in wxPG_INVALID_VALUE entry in array.
1506 wxArrayInt
GetValuesForStrings( const wxArrayString
& strings
) const;
1509 Returns array of indices matching given strings. Unmatching strings
1510 are added to 'unmatched', if not @NULL.
1512 wxArrayInt
GetIndicesForStrings( const wxArrayString
& strings
,
1513 wxArrayString
* unmatched
= NULL
) const;
1516 Returns @true if item at given index has a valid value;
1518 bool HasValue( unsigned int i
) const;
1521 Returns index of item with given label.
1523 int Index( const wxString
& label
) const;
1526 Returns index of item with given value.
1528 int Index( int val
) const;
1531 Inserts single item.
1533 wxPGChoiceEntry
& Insert( const wxString
& label
, int index
, int value
= wxPG_INVALID_VALUE
);
1536 Inserts a single item with full entry information.
1538 wxPGChoiceEntry
& Insert( const wxPGChoiceEntry
& entry
, int index
);
1541 Returns @false if this is a constant empty set of choices,
1542 which should not be modified.
1547 Returns item at given index.
1549 const wxPGChoiceEntry
& Item( unsigned int i
) const;
1552 Returns item at given index.
1554 wxPGChoiceEntry
& Item( unsigned int i
);
1557 Removes count items starting at position nIndex.
1559 void RemoveAt(size_t nIndex
, size_t count
= 1);
1562 Sets contents from lists of strings and values.
1564 void Set( const wxChar
** labels
, const long* values
= NULL
);
1567 Sets contents from lists of strings and values.
1569 void Set( const wxArrayString
& labels
, const wxArrayInt
& values
= wxArrayInt() );
1572 Creates exclusive copy of current choices.
1574 void SetExclusive();
1577 Returns array of choice labels.
1579 wxArrayString
GetLabels() const;
1581 void operator= (const wxPGChoices
& a
);
1583 wxPGChoiceEntry
& operator[](unsigned int i
);
1584 const wxPGChoiceEntry
& operator[](unsigned int i
) const;
1587 // -----------------------------------------------------------------------