#include <wx/propgrid/property.h>
wxPGProperty is base class for all wxPropertyGrid properties and as such it is not intended to be instantiated directly.
In sections below we cover few related topics.
Here is a list and short description of supplied fully-functional property classes. They are located in either props.h or advprops.h.
Not an actual property per se, but a header for a group of properties. Regardless inherits from wxPGProperty, and supports displaying 'labels' for columns other than the first one. Easiest way to set category's label for second column is to call wxPGProperty::SetValue() with string argument.
Simple string property.
Supported special attributes:
It derives from wxNumericProperty and displays value as a signed long integer. wxIntProperty seamlessly supports 64-bit integers (i.e. wxLongLong) on overflow. To safely convert variant to integer, use code like this:
Getting 64-bit value:
Setting 64-bit value:
Supported special attributes:
Like wxIntProperty, but displays value as unsigned int. To set the prefix used globally, manipulate wxPG_UINT_PREFIX string attribute. To set the globally used base, manipulate wxPG_UINT_BASE int attribute. Regardless of current prefix, understands (hex) values starting with both "0x" and "$" (apart from edit mode). Like wxIntProperty, wxUIntProperty seamlessly supports 64-bit unsigned integers (i.e. wxULongLong). Same wxVariant safety rules apply.
Supported special attributes:
Like wxStringProperty, but converts text to a double-precision floating point. Default float-to-text precision is 6 decimals, but this can be changed by modifying wxPG_FLOAT_PRECISION attribute.
Note that when displaying the value, sign is omitted if the resulting textual representation is effectively zero (for example, -0.0001 with precision of 3 will become 0.0 instead of -0.0). This behaviour is unlike what C standard library does, but should result in better end-user experience in almost all cases.
Supported special attributes:
Represents a boolean value. wxChoice is used as editor control, by the default. wxPG_BOOL_USE_CHECKBOX attribute can be set to true in order to use check box instead.
Supported special attributes:
Like wxStringProperty, but has a button that triggers a small text editor dialog. Note that in long string values, some control characters are escaped: tab is represented by "\t", line break by "\n", carriage return by "\r" and backslash character by "\\". If another character is preceded by backslash, the backslash is skipped. Note also that depending on the system (port), some sequences of special characters, like e.g. "\r\n", can be interpreted and presented in a different way in the editor and therefore such sequences may not be the same before and after the edition.
To display a custom dialog on button press, you can subclass wxLongStringProperty and override DisplayEditorDialog, like this:
Also, if you wish not to have line breaks and tabs translated to escape sequences, then do following in constructor of your subclass:
Supported special attributes:
Like wxLongStringProperty, but the button triggers dir selector instead.
Supported special attributes:
Like wxLongStringProperty, but the button triggers file selector instead. Default wildcard is "All files..." but this can be changed by setting wxPG_FILE_WILDCARD attribute.
Supported special attributes:
Represents a single selection from a list of choices - wxOwnerDrawnComboBox is used to edit the value.
Represents a bit set that fits in a long integer. wxBoolProperty sub- properties are created for editing individual bits. Textctrl is created to manually edit the flags as a text; a continuous sequence of spaces, commas and semicolons are considered as a flag id separator.
Note: When changing "choices" (i.e. flag labels) of wxFlagsProperty, you will need to use wxPGProperty::SetChoices() - otherwise they will not get updated properly.
wxFlagsProperty supports the same attributes as wxBoolProperty.
Property that manages a list of strings. Allows editing of a list of strings in wxTextCtrl and in a separate dialog.
Supported special attributes:
Property representing wxDateTime. Default editor is DatePickerCtrl, although TextCtrl should work as well.
Supported special attributes:
Represents a string that can be freely edited or selected from list of choices - custom combobox control is used to edit the value.
Allows editing a multiple selection from a list of strings. This is property is pretty much built around concept of wxMultiChoiceDialog. It uses wxArrayString value.
Supported special attributes:
Property representing image file(name). Like wxFileProperty, but has thumbnail of the image in front of the filename and autogenerates wildcard from available image handlers.
Supported special attributes:
Useful alternate editor: Choice.
Represents wxColour. wxButton is used to trigger a colour picker dialog. There are various sub-classing opportunities with this class. See below in wxSystemColourProperty section for details.
Supported special attributes:
Represents wxFont. Various sub-properties are used to edit individual subvalues.
Supported special attributes:
Represents wxColour and a system colour index. wxChoice is used to edit the value. Drop-down list has color images. Note that value type is wxColourPropertyValue instead of wxColour (which wxColourProperty uses).
In wxSystemColourProperty, and its derived class wxColourProperty, there are various sub-classing features. To set a basic list of colour names, call wxPGProperty::SetChoices().
Represents a wxCursor. wxChoice is used to edit the value. Drop-down list has cursor images under some (wxMSW) platforms.
New properties can be created by subclassing wxPGProperty or one of the provided property classes, and (re)implementing necessary member functions. Below, each virtual member function has ample documentation about its purpose and any odd details which to keep in mind.
Here is a very simple 'template' code:
Since wxPGProperty derives from wxObject, you can use standard wxDECLARE_DYNAMIC_CLASS and wxIMPLEMENT_DYNAMIC_CLASS macros. From the above example they were omitted for sake of simplicity, and besides, they are only really needed if you need to use wxRTTI with your property class.
You can change the 'value type' of a property by simply assigning different type of variant with SetValue. It is mandatory to implement wxVariantData class for all data types used as property values. You can use macros declared in wxPropertyGrid headers. For instance:
Public Types | |
typedef wxUint32 | FlagType |
Public Member Functions | |
virtual | ~wxPGProperty () |
Virtual destructor. More... | |
virtual void | OnSetValue () |
This virtual function is called after m_value has been set. More... | |
virtual wxVariant | DoGetValue () const |
Override this to return something else than m_value as the value. More... | |
virtual bool | ValidateValue (wxVariant &value, wxPGValidationInfo &validationInfo) const |
Implement this function in derived class to check the value. More... | |
virtual bool | StringToValue (wxVariant &variant, const wxString &text, int argFlags=0) const |
Converts text into wxVariant value appropriate for this property. More... | |
virtual bool | IntToValue (wxVariant &variant, int number, int argFlags=0) const |
Converts integer (possibly a choice selection) into wxVariant value appropriate for this property. More... | |
virtual wxString | ValueToString (wxVariant &value, int argFlags=0) const |
Converts property value into a text representation. More... | |
bool | SetValueFromString (const wxString &text, int flags=wxPG_PROGRAMMATIC_VALUE) |
Converts string to a value, and if successful, calls SetValue() on it. More... | |
bool | SetValueFromInt (long value, int flags=0) |
Converts integer to a value, and if successful, calls SetValue() on it. More... | |
virtual wxSize | OnMeasureImage (int item=-1) const |
Returns size of the custom painted image in front of property. More... | |
virtual bool | OnEvent (wxPropertyGrid *propgrid, wxWindow *wnd_primary, wxEvent &event) |
Events received by editor widgets are processed here. More... | |
virtual wxVariant | ChildChanged (wxVariant &thisValue, int childIndex, wxVariant &childValue) const |
Called after value of a child property has been altered. More... | |
virtual const wxPGEditor * | DoGetEditorClass () const |
Returns pointer to an instance of used editor. More... | |
virtual wxValidator * | DoGetValidator () const |
Returns pointer to the wxValidator that should be used with the editor of this property (NULL for no validator). More... | |
virtual void | OnCustomPaint (wxDC &dc, const wxRect &rect, wxPGPaintData &paintdata) |
Override to paint an image in front of the property value text or drop-down list item (but only if wxPGProperty::OnMeasureImage is overridden as well). More... | |
virtual wxPGCellRenderer * | GetCellRenderer (int column) const |
Returns used wxPGCellRenderer instance for given property column (label=0, value=1). More... | |
virtual int | GetChoiceSelection () const |
Returns which choice is currently selected. More... | |
virtual void | RefreshChildren () |
Refresh values of child properties. More... | |
virtual bool | DoSetAttribute (const wxString &name, wxVariant &value) |
Reimplement this member function to add special handling for attributes of this property. More... | |
virtual wxVariant | DoGetAttribute (const wxString &name) const |
Returns value of an attribute. More... | |
virtual wxPGEditorDialogAdapter * | GetEditorDialog () const |
Returns instance of a new wxPGEditorDialogAdapter instance, which is used when user presses the (optional) button next to the editor control;. More... | |
virtual void | OnValidationFailure (wxVariant &pendingValue) |
Called whenever validation has failed with given pending value. More... | |
int | AddChoice (const wxString &label, int value=wxPG_INVALID_VALUE) |
Append a new choice to property's list of choices. More... | |
void | AddChild (wxPGProperty *prop) |
Adds a private child property. More... | |
void | AddPrivateChild (wxPGProperty *prop) |
Adds a private child property. More... | |
void | AdaptListToValue (wxVariant &list, wxVariant *value) const |
Adapts list variant into proper value using consecutive ChildChanged() calls. More... | |
wxPGProperty * | AppendChild (wxPGProperty *childProperty) |
Use this member function to add independent (i.e. More... | |
bool | AreAllChildrenSpecified (const wxVariant *pendingList=NULL) const |
Determines, recursively, if all children are not unspecified. More... | |
bool | AreChildrenComponents () const |
Returns true if children of this property are component values (for instance, points size, face name, and is_underlined are component values of a font). More... | |
void | ChangeFlag (wxPGPropertyFlags flag, bool set) |
Sets or clears given property flag. More... | |
void | DeleteChildren () |
Deletes children of the property. More... | |
void | DeleteChoice (int index) |
Removes entry from property's wxPGChoices and editor control (if it is active). More... | |
void | Enable (bool enable=true) |
Enables or disables the property. More... | |
void | EnableCommonValue (bool enable=true) |
Call to enable or disable usage of common value (integer value that can be selected for properties instead of their normal values) for this property. More... | |
wxString | GenerateComposedValue () const |
Composes text from values of child properties. More... | |
const wxString & | GetLabel () const |
Returns property's label. More... | |
wxVariant | GetAttribute (const wxString &name) const |
Returns property attribute value, null variant if not found. More... | |
wxString | GetAttribute (const wxString &name, const wxString &defVal) const |
Returns named attribute, as string, if found. More... | |
long | GetAttributeAsLong (const wxString &name, long defVal) const |
Returns named attribute, as long, if found. More... | |
double | GetAttributeAsDouble (const wxString &name, double defVal) const |
Returns named attribute, as double, if found. More... | |
const wxPGAttributeStorage & | GetAttributes () const |
Returns map-like storage of property's attributes. More... | |
wxVariant | GetAttributesAsList () const |
Returns attributes as list wxVariant. More... | |
const wxPGEditor * | GetColumnEditor (int column) const |
Returns editor used for given column. More... | |
const wxString & | GetBaseName () const |
Returns property's base name (i.e. More... | |
const wxPGCell & | GetCell (unsigned int column) const |
Returns wxPGCell of given column. More... | |
wxPGCell & | GetCell (unsigned int column) |
Returns wxPGCell of given column, creating one if necessary. More... | |
wxPGCell & | GetOrCreateCell (unsigned int column) |
Returns wxPGCell of given column, creating one if necessary. More... | |
unsigned int | GetChildCount () const |
Returns number of child properties. More... | |
int | GetChildrenHeight (int lh, int iMax=-1) const |
Returns height of children, recursively, and by taking expanded/collapsed status into account. More... | |
const wxPGChoices & | GetChoices () const |
Returns read-only reference to property's list of choices. More... | |
void * | GetClientData () const |
Returns client data (void*) of a property. More... | |
wxClientData * | GetClientObject () const |
Gets managed client object of a property. More... | |
wxVariant | GetDefaultValue () const |
Returns property's default value. More... | |
int | GetCommonValue () const |
Returns common value selected for this property. More... | |
unsigned int | GetDepth () const |
int | GetDisplayedCommonValueCount () const |
Return number of displayed common values for this property. More... | |
wxString | GetDisplayedString () const |
Returns property's displayed text. More... | |
const wxPGEditor * | GetEditorClass () const |
Returns wxPGEditor that will be used and created when property becomes selected. More... | |
wxString | GetHintText () const |
Returns property's hint text (shown in empty value cell). More... | |
wxPropertyGrid * | GetGrid () const |
Returns property grid where property lies. More... | |
wxPropertyGrid * | GetGridIfDisplayed () const |
Returns owner wxPropertyGrid, but only if one is currently on a page displaying this property. More... | |
const wxString & | GetHelpString () const |
Returns property's help or description text. More... | |
wxString | GetFlagsAsString (FlagType flagsMask) const |
Gets flags as a'|' delimited string. More... | |
unsigned int | GetIndexInParent () const |
Returns position in parent's array. More... | |
const wxPGProperty * | GetLastVisibleSubItem () const |
Returns last visible child property, recursively. More... | |
wxPGProperty * | GetMainParent () const |
Returns highest level non-category, non-root parent. More... | |
int | GetMaxLength () const |
Returns maximum allowed length of the text the user can enter in the property text editor. More... | |
wxString | GetName () const |
Returns property's name with all (non-category, non-root) parents. More... | |
wxPGProperty * | GetParent () const |
Return parent of property. More... | |
wxPGProperty * | GetPropertyByName (const wxString &name) const |
Returns (direct) child property with given name (or NULL if not found). More... | |
wxValidator * | GetValidator () const |
Gets assignable version of property's validator. More... | |
wxVariant | GetValue () const |
Returns property's value. More... | |
wxBitmap * | GetValueImage () const |
Returns bitmap that appears next to value text. More... | |
virtual wxString | GetValueAsString (int argFlags=0) const |
Returns text representation of property's value. More... | |
wxString | GetValueString (int argFlags=0) const |
Synonymous to GetValueAsString(). More... | |
wxString | GetValueType () const |
Returns value type used by this property. More... | |
int | GetY () const |
Returns coordinate to the top y of the property. More... | |
int | GetImageOffset (int imageWidth) const |
Converts image width into full image offset, with margins. More... | |
wxPGProperty * | GetItemAtY (unsigned int y) const |
Returns property at given virtual y coordinate. More... | |
bool | HasFlag (wxPGPropertyFlags flag) const |
Returns true if property has given flag set. More... | |
bool | HasFlag (FlagType flag) const |
Returns true if property has given flag set. More... | |
bool | HasFlagsExact (FlagType flags) const |
Returns true if property has all given flags set. More... | |
bool | HasVisibleChildren () const |
Returns true if property has even one visible child. More... | |
bool | Hide (bool hide, int flags=wxPG_RECURSE) |
Hides or reveals the property. More... | |
int | Index (const wxPGProperty *p) const |
Returns index of given child property. More... | |
wxPGProperty * | InsertChild (int index, wxPGProperty *childProperty) |
Use this member function to add independent (i.e. More... | |
int | InsertChoice (const wxString &label, int index, int value=wxPG_INVALID_VALUE) |
Inserts a new choice to property's list of choices. More... | |
bool | IsCategory () const |
Returns true if this property is actually a wxPropertyCategory. More... | |
bool | IsEnabled () const |
Returns true if property is enabled. More... | |
bool | IsExpanded () const |
Returns true if property has visible children. More... | |
bool | IsRoot () const |
Returns true if this property is actually a wxRootProperty. More... | |
bool | IsSubProperty () const |
Returns true if this is a sub-property. More... | |
bool | IsSomeParent (wxPGProperty *candidateParent) const |
Returns true if candidateParent is some parent of this property. More... | |
bool | IsTextEditable () const |
Returns true if property has editable wxTextCtrl when selected. More... | |
bool | IsValueUnspecified () const |
Returns true if property's value is considered unspecified. More... | |
bool | IsVisible () const |
Returns true if all parents expanded. More... | |
wxPGProperty * | Item (unsigned int i) const |
Returns child property at index i. More... | |
wxPGProperty * | Last () const |
Returns last sub-property. More... | |
bool | RecreateEditor () |
If property's editor is created this forces its recreation. More... | |
void | RefreshEditor () |
If property's editor is active, then update it's value. More... | |
void | SetAttribute (const wxString &name, wxVariant value) |
Sets an attribute for this property. More... | |
void | SetAttributes (const wxPGAttributeStorage &attributes) |
void | SetAutoUnspecified (bool enable=true) |
Set if user can change the property's value to unspecified by modifying the value of the editor control (usually by clearing it). More... | |
void | SetBackgroundColour (const wxColour &colour, int flags=wxPG_RECURSE) |
Sets property's background colour. More... | |
void | SetEditor (const wxPGEditor *editor) |
Sets editor for a property. More... | |
void | SetEditor (const wxString &editorName) |
Sets editor for a property, by editor name. More... | |
void | SetCell (int column, const wxPGCell &cell) |
Sets cell information for given column. More... | |
void | SetCommonValue (int commonValue) |
Sets common value selected for this property. More... | |
bool | SetChoices (wxPGChoices &choices) |
Sets new set of choices for the property. More... | |
void | SetClientData (void *clientData) |
Sets client data (void*) of a property. More... | |
void | SetClientObject (wxClientData *clientObject) |
Sets client object of a property. More... | |
void | SetChoiceSelection (int newValue) |
Sets selected choice and changes property value. More... | |
void | SetDefaultValue (wxVariant &value) |
Set default value of a property. More... | |
void | SetExpanded (bool expanded) |
void | SetFlagsFromString (const wxString &str) |
Sets flags from a '|' delimited string. More... | |
void | SetFlagRecursively (wxPGPropertyFlags flag, bool set) |
Sets or clears given property flag, recursively. More... | |
void | SetHelpString (const wxString &helpString) |
Sets property's help string, which is shown, for example, in wxPropertyGridManager's description text box. More... | |
void | SetLabel (const wxString &label) |
Sets property's label. More... | |
bool | SetMaxLength (int maxLen) |
Set maximum length of the text the user can enter in the text editor. More... | |
void | SetModifiedStatus (bool modified) |
Sets property's "is it modified?" flag. More... | |
void | SetName (const wxString &newName) |
Sets new (base) name for property. More... | |
void | SetParentalType (int flag) |
Changes what sort of parent this property is for its children. More... | |
void | SetTextColour (const wxColour &colour, int flags=wxPG_RECURSE) |
Sets property's text colour. More... | |
void | SetDefaultColours (int flags=wxPG_RECURSE) |
Sets property's default text and background colours. More... | |
void | SetValidator (const wxValidator &validator) |
Sets wxValidator for a property. More... | |
void | SetValue (wxVariant value, wxVariant *pList=NULL, int flags=wxPG_SETVAL_REFRESH_EDITOR) |
Call this to set value of the property. More... | |
void | SetValueImage (wxBitmapBundle &bmp) |
Set wxBitmap taken from wxBitmapBundle in front of the value. More... | |
void | SetValueInEvent (const wxVariant &value) const |
Call this function in OnEvent(), OnButtonClick() etc. More... | |
void | SetValueToUnspecified () |
Sets property's value to unspecified (i.e. More... | |
void | SetWasModified (bool set=true) |
Call with false in OnSetValue() to cancel value changes after all (i.e. More... | |
wxPGProperty * | UpdateParentValues () |
Updates composed values of parent non-category properties, recursively. More... | |
bool | UsesAutoUnspecified () const |
Returns true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES. More... | |
Public Member Functions inherited from wxObject | |
wxObject () | |
Default ctor; initializes to NULL the internal reference data. More... | |
wxObject (const wxObject &other) | |
Copy ctor. More... | |
virtual | ~wxObject () |
Destructor. More... | |
virtual wxClassInfo * | GetClassInfo () const |
This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar). More... | |
wxObjectRefData * | GetRefData () const |
Returns the wxObject::m_refData pointer, i.e. the data referenced by this object. More... | |
bool | IsKindOf (const wxClassInfo *info) const |
Determines whether this class is a subclass of (or the same class as) the given class. More... | |
bool | IsSameAs (const wxObject &obj) const |
Returns true if this object has the same data pointer as obj. More... | |
void | Ref (const wxObject &clone) |
Makes this object refer to the data in clone. More... | |
void | SetRefData (wxObjectRefData *data) |
Sets the wxObject::m_refData pointer. More... | |
void | UnRef () |
Decrements the reference count in the associated data, and if it is zero, deletes the data. More... | |
void | UnShare () |
This is the same of AllocExclusive() but this method is public. More... | |
void | operator delete (void *buf) |
The delete operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More... | |
void * | operator new (size_t size, const wxString &filename=NULL, int lineNum=0) |
The new operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More... | |
Public Attributes | |
void * | m_clientData |
This member is public so scripting language bindings wrapper code can access it freely. More... | |
Protected Member Functions | |
wxPGProperty () | |
Default constructor. More... | |
wxPGProperty (const wxString &label, const wxString &name) | |
Constructor. More... | |
void | AdaptiveSetCell (unsigned int firstCol, unsigned int lastCol, const wxPGCell &preparedCell, const wxPGCell &srcData, wxPGCellData *unmodCellData, FlagType ignoreWithFlags, bool recursively) |
Sets property cell in fashion that reduces number of exclusive copies of cell data. More... | |
void | ClearCells (FlagType ignoreWithFlags, bool recursively) |
Clear cells associated with property. More... | |
void | EnsureCells (unsigned int column) |
Makes sure m_cells has size of column+1 (or more). More... | |
wxPGProperty * | GetPropertyByNameWH (const wxString &name, unsigned int hintIndex) const |
Returns (direct) child property with given name (or NULL if not found), with hint index. More... | |
void | DoAddChild (wxPGProperty *prop, int index=-1, bool correct_mode=true) |
This is used by Insert etc. More... | |
void | Empty () |
Deletes all child properties. More... | |
bool | IsChildSelected (bool recursive=false) const |
Returns true if child property is selected. More... | |
Protected Member Functions inherited from wxObject | |
void | AllocExclusive () |
Ensure that this object's data is not shared with any other object. More... | |
virtual wxObjectRefData * | CreateRefData () const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. More... | |
virtual wxObjectRefData * | CloneRefData (const wxObjectRefData *data) const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying data. More... | |
Additional Inherited Members | |
Protected Attributes inherited from wxObject | |
wxObjectRefData * | m_refData |
Pointer to an object which is the object's reference-counted data. More... | |
typedef wxUint32 wxPGProperty::FlagType |
|
virtual |
Virtual destructor.
It is customary for derived properties to implement this.
|
protected |
Default constructor.
It is protected because wxPGProperty is only a base class for other property classes.
Constructor.
It is protected because wxPGProperty is only a base class for other property classes. Non-abstract property classes should have constructor of this style:
|
protected |
Sets property cell in fashion that reduces number of exclusive copies of cell data.
Used when setting, for instance, same background colour for a number of properties.
firstCol | First column to affect. |
lastCol | Last column to affect. |
preparedCell | Pre-prepared cell that is used for those which cell data before this matched unmodCellData. |
srcData | If unmodCellData did not match, valid cell data from this is merged into cell (usually generating new exclusive copy of cell's data). |
unmodCellData | If cell's cell data matches this, its cell is now set to preparedCell. |
ignoreWithFlags | Properties with any one of these flags are skipped. |
recursively | If true, apply this operation recursively in child properties. |
Adapts list variant into proper value using consecutive ChildChanged() calls.
void wxPGProperty::AddChild | ( | wxPGProperty * | prop | ) |
int wxPGProperty::AddChoice | ( | const wxString & | label, |
int | value = wxPG_INVALID_VALUE |
||
) |
Append a new choice to property's list of choices.
label | Label for added choice. |
value | Value for new choice. Do not specify if you wish this to equal choice index. |
void wxPGProperty::AddPrivateChild | ( | wxPGProperty * | prop | ) |
Adds a private child property.
If you use this instead of wxPropertyGridInterface::Insert() or wxPropertyGridInterface::AppendIn(), then property's parental type will automatically be set up to wxPG_PROP_AGGREGATE. In other words, all properties of this property will become private.
wxPGProperty* wxPGProperty::AppendChild | ( | wxPGProperty * | childProperty | ) |
Use this member function to add independent (i.e.
regular) children to a property.
bool wxPGProperty::AreAllChildrenSpecified | ( | const wxVariant * | pendingList = NULL | ) | const |
Determines, recursively, if all children are not unspecified.
pendingList | Assumes members in this wxVariant list as pending replacement values. |
bool wxPGProperty::AreChildrenComponents | ( | ) | const |
Returns true if children of this property are component values (for instance, points size, face name, and is_underlined are component values of a font).
void wxPGProperty::ChangeFlag | ( | wxPGPropertyFlags | flag, |
bool | set | ||
) |
Sets or clears given property flag.
Mainly for internal use.
|
virtual |
Called after value of a child property has been altered.
Must return new value of the whole property (after any alterations warranted by child's new value).
Note that this function is usually called at the time that value of this property, or given child property, is still pending for change, and as such, result of GetValue() or m_value should not be relied on.
Sample pseudo-code implementation:
thisValue | Value of this property. Changed value should be returned (in previous versions of wxPropertyGrid it was only necessary to write value back to this argument). |
childIndex | Index of child changed (you can use Item(childIndex) to get child property). |
childValue | (Pending) value of the child property. |
Reimplemented in wxFlagsProperty, and wxFontProperty.
|
protected |
Clear cells associated with property.
ignoreWithFlags | Cells will not be cleared for properties having these flags set. |
recursively | If true, apply this operation recursively in child properties. |
void wxPGProperty::DeleteChildren | ( | ) |
Deletes children of the property.
void wxPGProperty::DeleteChoice | ( | int | index | ) |
Removes entry from property's wxPGChoices and editor control (if it is active).
If selected item is deleted, then the value is set to unspecified.
|
protected |
This is used by Insert etc.
Returns value of an attribute.
Override if custom handling of attributes is needed.
Default implementation simply return NULL variant.
|
virtual |
Returns pointer to an instance of used editor.
|
virtual |
Returns pointer to the wxValidator that should be used with the editor of this property (NULL for no validator).
Setting validator explicitly via SetPropertyValidator will override this.
In most situations, code like this should work well (macros are used to maintain one actual validator instance, so on the second call the function exits within the first macro):
Reimplemented in wxDirProperty, wxFileProperty, wxFloatProperty, wxUIntProperty, and wxIntProperty.
|
virtual |
Override this to return something else than m_value as the value.
Reimplement this member function to add special handling for attributes of this property.
Reimplemented in wxArrayStringProperty, wxFileProperty, wxEditorDialogProperty, wxFlagsProperty, wxBoolProperty, wxFloatProperty, wxUIntProperty, wxNumericProperty, wxStringProperty, wxDateProperty, and wxSystemColourProperty.
|
protected |
Deletes all child properties.
void wxPGProperty::Enable | ( | bool | enable = true | ) |
Enables or disables the property.
Disabled property usually appears as having grey text.
enable | If false, property is disabled instead. |
void wxPGProperty::EnableCommonValue | ( | bool | enable = true | ) |
Call to enable or disable usage of common value (integer value that can be selected for properties instead of their normal values) for this property.
Common values are disabled by the default for all properties.
|
protected |
Makes sure m_cells has size of column+1 (or more).
wxString wxPGProperty::GenerateComposedValue | ( | ) | const |
Composes text from values of child properties.
Returns property attribute value, null variant if not found.
Returns named attribute, as string, if found.
Otherwise defVal is returned.
double wxPGProperty::GetAttributeAsDouble | ( | const wxString & | name, |
double | defVal | ||
) | const |
Returns named attribute, as double, if found.
Otherwise defVal is returned.
long wxPGProperty::GetAttributeAsLong | ( | const wxString & | name, |
long | defVal | ||
) | const |
Returns named attribute, as long, if found.
Otherwise defVal is returned.
const wxPGAttributeStorage& wxPGProperty::GetAttributes | ( | ) | const |
Returns map-like storage of property's attributes.
wxVariant wxPGProperty::GetAttributesAsList | ( | ) | const |
Returns attributes as list wxVariant.
const wxString& wxPGProperty::GetBaseName | ( | ) | const |
Returns property's base name (i.e.
parent's name is not added in any case).
wxPGCell& wxPGProperty::GetCell | ( | unsigned int | column | ) |
Returns wxPGCell of given column, creating one if necessary.
const wxPGCell& wxPGProperty::GetCell | ( | unsigned int | column | ) | const |
|
virtual |
Returns used wxPGCellRenderer instance for given property column (label=0, value=1).
Default implementation returns editor's renderer for all columns.
unsigned int wxPGProperty::GetChildCount | ( | ) | const |
Returns number of child properties.
int wxPGProperty::GetChildrenHeight | ( | int | lh, |
int | iMax = -1 |
||
) | const |
Returns height of children, recursively, and by taking expanded/collapsed status into account.
lh | Line height. Pass result of GetGrid()->GetRowHeight() here. |
iMax | Only used (internally) when finding property y-positions. |
const wxPGChoices& wxPGProperty::GetChoices | ( | ) | const |
Returns read-only reference to property's list of choices.
|
virtual |
Returns which choice is currently selected.
Only applies to properties which have choices.
Needs to reimplemented in derived class if property value does not map directly to a choice. Integer as index, bool, and string usually do.
Reimplemented in wxFlagsProperty, and wxEnumProperty.
void* wxPGProperty::GetClientData | ( | ) | const |
Returns client data (void*) of a property.
wxClientData* wxPGProperty::GetClientObject | ( | ) | const |
Gets managed client object of a property.
const wxPGEditor* wxPGProperty::GetColumnEditor | ( | int | column | ) | const |
Returns editor used for given column.
NULL for no editor.
int wxPGProperty::GetCommonValue | ( | ) | const |
Returns common value selected for this property.
-1 for none.
wxVariant wxPGProperty::GetDefaultValue | ( | ) | const |
Returns property's default value.
If property's value type is not a built-in one, and "DefaultValue" attribute is not defined, then this function usually returns Null variant.
unsigned int wxPGProperty::GetDepth | ( | ) | const |
int wxPGProperty::GetDisplayedCommonValueCount | ( | ) | const |
Return number of displayed common values for this property.
wxString wxPGProperty::GetDisplayedString | ( | ) | const |
Returns property's displayed text.
const wxPGEditor* wxPGProperty::GetEditorClass | ( | ) | const |
Returns wxPGEditor that will be used and created when property becomes selected.
Returns more accurate value than DoGetEditorClass().
|
virtual |
Returns instance of a new wxPGEditorDialogAdapter instance, which is used when user presses the (optional) button next to the editor control;.
Default implementation returns NULL (i.e. no action is generated when button is pressed).
Reimplemented in wxEditorDialogProperty.
Gets flags as a'|' delimited string.
Note that flag names are not prepended with 'wxPG_PROP_'.
flagsMask | String will only be made to include flags combined by this parameter. |
wxPropertyGrid* wxPGProperty::GetGrid | ( | ) | const |
Returns property grid where property lies.
wxPropertyGrid* wxPGProperty::GetGridIfDisplayed | ( | ) | const |
Returns owner wxPropertyGrid, but only if one is currently on a page displaying this property.
const wxString& wxPGProperty::GetHelpString | ( | ) | const |
Returns property's help or description text.
|
inline |
Returns property's hint text (shown in empty value cell).
int wxPGProperty::GetImageOffset | ( | int | imageWidth | ) | const |
Converts image width into full image offset, with margins.
unsigned int wxPGProperty::GetIndexInParent | ( | ) | const |
Returns position in parent's array.
wxPGProperty* wxPGProperty::GetItemAtY | ( | unsigned int | y | ) | const |
Returns property at given virtual y coordinate.
const wxString& wxPGProperty::GetLabel | ( | ) | const |
Returns property's label.
const wxPGProperty* wxPGProperty::GetLastVisibleSubItem | ( | ) | const |
Returns last visible child property, recursively.
wxPGProperty* wxPGProperty::GetMainParent | ( | ) | const |
Returns highest level non-category, non-root parent.
Useful when you have nested properties with children.
int wxPGProperty::GetMaxLength | ( | ) | const |
Returns maximum allowed length of the text the user can enter in the property text editor.
wxString wxPGProperty::GetName | ( | ) | const |
Returns property's name with all (non-category, non-root) parents.
wxPGCell& wxPGProperty::GetOrCreateCell | ( | unsigned int | column | ) |
Returns wxPGCell of given column, creating one if necessary.
wxPGProperty* wxPGProperty::GetParent | ( | ) | const |
Return parent of property.
wxPGProperty* wxPGProperty::GetPropertyByName | ( | const wxString & | name | ) | const |
Returns (direct) child property with given name (or NULL if not found).
name | Name of the child property to look for. |
|
protected |
Returns (direct) child property with given name (or NULL if not found), with hint index.
name | Name of the child property to look for. |
hintIndex | Start looking for the child at this index. |
wxValidator* wxPGProperty::GetValidator | ( | ) | const |
Gets assignable version of property's validator.
wxVariant wxPGProperty::GetValue | ( | ) | const |
Returns property's value.
|
virtual |
Returns text representation of property's value.
argFlags | If 0 (default value), then displayed string is returned. If wxPG_FULL_VALUE is set, returns complete, storable string value instead of displayable. If wxPG_EDITABLE_VALUE is set, returns string value that must be editable in textctrl. If wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to display as a part of string property's composite text representation. |
Reimplemented in wxPropertyCategory.
wxBitmap* wxPGProperty::GetValueImage | ( | ) | const |
Returns bitmap that appears next to value text.
Only returns non-NULL bitmap if one was set with SetValueImage().
wxString wxPGProperty::GetValueString | ( | int | argFlags = 0 | ) | const |
Synonymous to GetValueAsString().
wxString wxPGProperty::GetValueType | ( | ) | const |
Returns value type used by this property.
int wxPGProperty::GetY | ( | ) | const |
Returns coordinate to the top y of the property.
Note that the position of scrollbars is not taken into account.
bool wxPGProperty::HasFlag | ( | FlagType | flag | ) | const |
Returns true if property has given flag set.
bool wxPGProperty::HasFlag | ( | wxPGPropertyFlags | flag | ) | const |
Returns true if property has given flag set.
bool wxPGProperty::HasFlagsExact | ( | FlagType | flags | ) | const |
Returns true if property has all given flags set.
bool wxPGProperty::HasVisibleChildren | ( | ) | const |
Returns true if property has even one visible child.
bool wxPGProperty::Hide | ( | bool | hide, |
int | flags = wxPG_RECURSE |
||
) |
Hides or reveals the property.
hide | true for hide, false for reveal. |
flags | By default changes are applied recursively. Set this parameter to wxPG_DONT_RECURSE to prevent this. |
int wxPGProperty::Index | ( | const wxPGProperty * | p | ) | const |
Returns index of given child property.
wxNOT_FOUND if given property is not child of this.
wxPGProperty* wxPGProperty::InsertChild | ( | int | index, |
wxPGProperty * | childProperty | ||
) |
Use this member function to add independent (i.e.
regular) children to a property.
int wxPGProperty::InsertChoice | ( | const wxString & | label, |
int | index, | ||
int | value = wxPG_INVALID_VALUE |
||
) |
Inserts a new choice to property's list of choices.
label | Text for new choice |
index | Insertion position. Use wxNOT_FOUND to append. |
value | Value for new choice. Do not specify if you wish this to equal choice index. |
|
virtual |
Converts integer (possibly a choice selection) into wxVariant value appropriate for this property.
variant | On function entry this is the old value (should not be wxNullVariant in normal cases). Translated value must be assigned back to it. |
number | Integer to be translated into variant. |
argFlags | If wxPG_FULL_VALUE is set, returns complete, storable value instead of displayable one. |
Reimplemented in wxEnumProperty, wxBoolProperty, wxUIntProperty, wxIntProperty, and wxSystemColourProperty.
bool wxPGProperty::IsCategory | ( | ) | const |
Returns true if this property is actually a wxPropertyCategory.
|
protected |
Returns true if child property is selected.
bool wxPGProperty::IsEnabled | ( | ) | const |
Returns true if property is enabled.
bool wxPGProperty::IsExpanded | ( | ) | const |
Returns true if property has visible children.
bool wxPGProperty::IsRoot | ( | ) | const |
Returns true if this property is actually a wxRootProperty.
bool wxPGProperty::IsSomeParent | ( | wxPGProperty * | candidateParent | ) | const |
Returns true if candidateParent is some parent of this property.
Use, for example, to detect if item is inside collapsed section.
bool wxPGProperty::IsSubProperty | ( | ) | const |
Returns true if this is a sub-property.
bool wxPGProperty::IsTextEditable | ( | ) | const |
Returns true if property has editable wxTextCtrl when selected.
bool wxPGProperty::IsValueUnspecified | ( | ) | const |
Returns true if property's value is considered unspecified.
This usually means that value is Null variant.
bool wxPGProperty::IsVisible | ( | ) | const |
Returns true if all parents expanded.
wxPGProperty* wxPGProperty::Item | ( | unsigned int | i | ) | const |
Returns child property at index i.
wxPGProperty* wxPGProperty::Last | ( | ) | const |
Returns last sub-property.
|
virtual |
Override to paint an image in front of the property value text or drop-down list item (but only if wxPGProperty::OnMeasureImage is overridden as well).
If property's OnMeasureImage() returns size that has height != 0 but less than row height ( < 0 has special meanings), wxPropertyGrid calls this method to draw a custom image in a limited area in front of the editor control or value text/graphics, and if control has drop-down list, then the image is drawn there as well (even in the case OnMeasureImage() returned higher height than row height).
NOTE: Following applies when OnMeasureImage() returns a "flexible" height ( using wxPG_FLEXIBLE_SIZE(W,H)
macro), which implies variable height items: If (rect.x+rect.width) is < 0, then this is a measure item call, which means that dc is invalid and only thing that should be done is to set paintdata.m_drawnHeight to the height of the image of item at index paintdata.m_choiceItem. This call may be done even as often as once every drop-down popup show.
dc | wxDC to paint on. |
rect | Box reserved for custom graphics. Includes surrounding rectangle, if any. If x+width is < 0, then this is a measure item call (see above). |
paintdata | wxPGPaintData structure with much useful data about painted item. struct wxPGPaintData
{
// wxPropertyGrid.
const wxPropertyGrid* m_parent;
// Normally -1, otherwise index to drop-down list item that has to be drawn.
int m_choiceItem;
// Set to drawn width in OnCustomPaint (optional).
int m_drawnWidth;
// In a measure item call, set this to the height of item at m_choiceItem index
int m_drawnHeight;
};
|
Reimplemented in wxImageFileProperty, wxCursorProperty, and wxSystemColourProperty.
|
virtual |
Events received by editor widgets are processed here.
Note that editor class usually processes most events. Some, such as button press events of TextCtrlAndButton class, can be handled here. Also, if custom handling for regular events is desired, then that can also be done (for example, wxSystemColourProperty custom handles wxEVT_CHOICE
to display colour picker dialog when 'custom' selection is made).
If the event causes value to be changed, SetValueInEvent() should be called to set the new value.
The parameter event is the associated wxEvent.
Should | return true if any changes in value should be reported. |
Reimplemented in wxSystemColourProperty.
|
virtual |
Returns size of the custom painted image in front of property.
This method must be overridden to return non-default value if OnCustomPaint is to be called.
item | Normally -1, but can be an index to the property's list of items. |
Reimplemented in wxImageFileProperty, wxCursorProperty, and wxSystemColourProperty.
|
virtual |
This virtual function is called after m_value has been set.
Reimplemented in wxArrayStringProperty, wxFileProperty, wxFlagsProperty, wxEnumProperty, wxStringProperty, wxDateProperty, wxMultiChoiceProperty, wxImageFileProperty, wxSystemColourProperty, and wxFontProperty.
|
virtual |
Called whenever validation has failed with given pending value.
bool wxPGProperty::RecreateEditor | ( | ) |
If property's editor is created this forces its recreation.
Useful in SetAttribute etc. Returns true if actually did anything.
|
virtual |
Refresh values of child properties.
Automatically called after value is set.
Reimplemented in wxFlagsProperty, and wxFontProperty.
void wxPGProperty::RefreshEditor | ( | ) |
If property's editor is active, then update it's value.
Sets an attribute for this property.
name | Text identifier of attribute. See wxPropertyGrid Property Attribute Identifiers. |
value | Value of attribute. |
void wxPGProperty::SetAttributes | ( | const wxPGAttributeStorage & | attributes | ) |
void wxPGProperty::SetAutoUnspecified | ( | bool | enable = true | ) |
Set if user can change the property's value to unspecified by modifying the value of the editor control (usually by clearing it).
Currently, this can work with following properties: wxIntProperty, wxUIntProperty, wxFloatProperty, wxEditEnumProperty.
enable | Whether to enable or disable this behaviour (it is disabled by default). |
void wxPGProperty::SetBackgroundColour | ( | const wxColour & | colour, |
int | flags = wxPG_RECURSE |
||
) |
Sets property's background colour.
colour | Background colour to use. |
flags | Default is wxPG_RECURSE which causes colour to be set recursively. Omit this flag to only set colour for the property in question and not any of its children. |
void wxPGProperty::SetCell | ( | int | column, |
const wxPGCell & | cell | ||
) |
Sets cell information for given column.
bool wxPGProperty::SetChoices | ( | wxPGChoices & | choices | ) |
Sets new set of choices for the property.
void wxPGProperty::SetChoiceSelection | ( | int | newValue | ) |
Sets selected choice and changes property value.
Tries to retain value type, although currently if it is not string, then it is forced to integer.
If newValue is wxNOT_FOUND (-1
), then the property's value is reset to unspecified, as if SetValueToUnspecified() was called.
void wxPGProperty::SetClientData | ( | void * | clientData | ) |
Sets client data (void*) of a property.
void wxPGProperty::SetClientObject | ( | wxClientData * | clientObject | ) |
Sets client object of a property.
void wxPGProperty::SetCommonValue | ( | int | commonValue | ) |
Sets common value selected for this property.
-1 for none.
void wxPGProperty::SetDefaultColours | ( | int | flags = wxPG_RECURSE | ) |
Sets property's default text and background colours.
flags | Default is wxPG_RECURSE which causes colours to be set recursively. Omit this flag to only set colours for the property in question and not any of its children. |
void wxPGProperty::SetDefaultValue | ( | wxVariant & | value | ) |
Set default value of a property.
Synonymous to
void wxPGProperty::SetEditor | ( | const wxPGEditor * | editor | ) |
Sets editor for a property.
editor | For builtin editors, use wxPGEditor_X, where X is builtin editor's name (TextCtrl, Choice, etc. see wxPGEditor documentation for full list). |
For custom editors, use pointer you received from wxPropertyGrid::RegisterEditorClass().
void wxPGProperty::SetEditor | ( | const wxString & | editorName | ) |
Sets editor for a property, by editor name.
void wxPGProperty::SetExpanded | ( | bool | expanded | ) |
void wxPGProperty::SetFlagRecursively | ( | wxPGPropertyFlags | flag, |
bool | set | ||
) |
Sets or clears given property flag, recursively.
This function is primarily intended for internal use.
void wxPGProperty::SetFlagsFromString | ( | const wxString & | str | ) |
Sets flags from a '|' delimited string.
Note that flag names are not prepended with 'wxPG_PROP_'.
void wxPGProperty::SetHelpString | ( | const wxString & | helpString | ) |
Sets property's help string, which is shown, for example, in wxPropertyGridManager's description text box.
void wxPGProperty::SetLabel | ( | const wxString & | label | ) |
Sets property's label.
bool wxPGProperty::SetMaxLength | ( | int | maxLen | ) |
Set maximum length of the text the user can enter in the text editor.
If it is 0, the length is not limited and the text can be as long as it is supported by the underlying native text control widget.
void wxPGProperty::SetModifiedStatus | ( | bool | modified | ) |
Sets property's "is it modified?" flag.
Affects children recursively.
void wxPGProperty::SetName | ( | const wxString & | newName | ) |
Sets new (base) name for property.
void wxPGProperty::SetParentalType | ( | int | flag | ) |
Changes what sort of parent this property is for its children.
flag | Use one of the following values: wxPG_PROP_MISC_PARENT (for generic parents), wxPG_PROP_CATEGORY (for categories), or wxPG_PROP_AGGREGATE (for derived property classes with private children). |
void wxPGProperty::SetTextColour | ( | const wxColour & | colour, |
int | flags = wxPG_RECURSE |
||
) |
Sets property's text colour.
colour | Text colour to use. |
flags | Default is wxPG_RECURSE which causes colour to be set recursively. Omit this flag to only set colour for the property in question and not any of its children. |
void wxPGProperty::SetValidator | ( | const wxValidator & | validator | ) |
Sets wxValidator for a property.
void wxPGProperty::SetValue | ( | wxVariant | value, |
wxVariant * | pList = NULL , |
||
int | flags = wxPG_SETVAL_REFRESH_EDITOR |
||
) |
Call this to set value of the property.
Unlike methods in wxPropertyGrid, this does not automatically update the display.
If you need to change property value in event, based on user input, use SetValueInEvent() instead.
value | The value to set. |
pList | Pointer to list variant that contains child values. Used to indicate which children should be marked as modified. Usually you just use NULL. |
flags | wxPG_SETVAL_REFRESH_EDITOR is set by default, to refresh editor and redraw properties. |
bool wxPGProperty::SetValueFromInt | ( | long | value, |
int | flags = 0 |
||
) |
Converts integer to a value, and if successful, calls SetValue() on it.
Default behaviour is to do nothing.
value | Int to get the value from. |
flags | If has wxPG_FULL_VALUE, then the value given is an actual value and not an index. |
bool wxPGProperty::SetValueFromString | ( | const wxString & | text, |
int | flags = wxPG_PROGRAMMATIC_VALUE |
||
) |
Converts string to a value, and if successful, calls SetValue() on it.
Default behaviour is to do nothing.
text | String to get the value from. |
flags | If wxPG_FULL_VALUE is set, the function sets complete, storable value instead of displayable one (they may be different). wxPG_PROGRAMMATIC_VALUE flag is used to indicate that value is being set programmatically (i.e. operation is not caused by user input). If wxPG_REPORT_ERROR is set, a special action should be performed if string couldn't have been successfully converted to the valid value (e.g. a special value can be set in this case). |
void wxPGProperty::SetValueImage | ( | wxBitmapBundle & | bmp | ) |
Set wxBitmap taken from wxBitmapBundle in front of the value.
This bitmap may be ignored by custom cell renderers.
void wxPGProperty::SetValueInEvent | ( | const wxVariant & | value | ) | const |
Call this function in OnEvent(), OnButtonClick() etc.
to change the property value based on user input.
void wxPGProperty::SetValueToUnspecified | ( | ) |
Sets property's value to unspecified (i.e.
Null variant).
void wxPGProperty::SetWasModified | ( | bool | set = true | ) |
Call with false in OnSetValue() to cancel value changes after all (i.e.
cancel true returned by StringToValue() or IntToValue()).
|
virtual |
Converts text into wxVariant value appropriate for this property.
variant | On function entry this is the old value (should not be wxNullVariant in normal cases). Translated value must be assigned back to it. |
text | Text to be translated into variant. |
argFlags | If wxPG_FULL_VALUE is set, returns complete, storable value instead of displayable one (they may be different). If wxPG_COMPOSITE_FRAGMENT is set, text is interpreted as a part of composite property string value (as generated by ValueToString() called with this same flag). |
You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
Reimplemented in wxFlagsProperty, wxArrayStringProperty, wxDirProperty, wxLongStringProperty, wxFileProperty, wxEnumProperty, wxBoolProperty, wxFloatProperty, wxUIntProperty, wxIntProperty, wxStringProperty, wxDateProperty, wxMultiChoiceProperty, wxSystemColourProperty, and wxPGRootProperty.
wxPGProperty* wxPGProperty::UpdateParentValues | ( | ) |
Updates composed values of parent non-category properties, recursively.
Returns topmost property updated.
bool wxPGProperty::UsesAutoUnspecified | ( | ) | const |
Returns true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES.
|
virtual |
Implement this function in derived class to check the value.
Return true if it is ok. Returning false prevents property change events from occurring.
Reimplemented in wxEnumProperty, wxFloatProperty, wxUIntProperty, and wxIntProperty.
Converts property value into a text representation.
value | Value to be converted. |
argFlags | If 0 (default value), then displayed string is returned. If wxPG_FULL_VALUE is set, returns complete, storable string value instead of displayable. If wxPG_EDITABLE_VALUE is set, returns string value that must be editable in textctrl. If wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to display as a part of string property's composite text representation. |
Reimplemented in wxArrayStringProperty, wxDirProperty, wxLongStringProperty, wxFileProperty, wxFlagsProperty, wxEnumProperty, wxBoolProperty, wxFloatProperty, wxUIntProperty, wxIntProperty, wxStringProperty, wxDateProperty, wxMultiChoiceProperty, wxColourProperty, wxSystemColourProperty, wxFontProperty, and wxPropertyCategory.
void* wxPGProperty::m_clientData |
This member is public so scripting language bindings wrapper code can access it freely.