#include </home/zeitlin/src/wx/github/interface/wx/propgrid/property.h>
wxPGProperty is base class for all wxPropertyGrid properties.
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. wxPG_STRING_PASSWORD attribute may be used to echo value as asterisks and use wxTE_PASSWORD for wxTextCtrl. wxPG_ATTR_AUTOCOMPLETE attribute may be used to enable auto-completion (use a wxArrayString value), and is also supported by any property that happens to use a wxTextCtrl-based editor.
Like wxStringProperty, but converts text to a signed long integer. wxIntProperty seamlessly supports 64-bit integers (ie. wxLongLong). To safely convert variant to integer, use code like this:
wxLongLong ll; ll << property->GetValue(); // or wxLongLong ll = propertyGrid->GetPropertyValueAsLong(property);
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 "$". Like wxIntProperty, wxUIntProperty seamlessly supports 64-bit unsigned integers (ie. wxULongLong). Same wxVariant safety rules apply.
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.
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.
Like wxStringProperty, but has a button that triggers a small text editor dialog. Note that in long string values, tabs are represented by "\t" and line break by "\n".
To display custom dialog on button press, you can subclass wxLongStringProperty and implement OnButtonClick, like this:
virtual bool OnButtonClick( wxPropertyGrid* propGrid, wxString& value ) { wxSize dialogSize(...size of your dialog...); wxPoint dlgPos = propGrid->GetGoodEditorDialogPosition(this, dialogSize) // Create dialog dlg at dlgPos. Use value as initial string // value. ... if ( dlg.ShowModal() == wxID_OK ) { value = dlg.GetStringValue); return true; } return false; }
Also, if you wish not to have line breaks and tabs translated to escape sequences, then do following in constructor of your subclass:
m_flags |= wxPG_PROP_NO_ESCAPE;
Like wxLongStringProperty, but the button triggers dir selector instead. Supported properties (all with string value): wxPG_DIR_DIALOG_MESSAGE.
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 (see wxFileDialog for format details). Attribute wxPG_FILE_SHOW_FULL_PATH can be set to false in order to show only the filename, not the entire path.
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" (ie. 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.
Allows editing of a list of strings in wxTextCtrl and in a separate dialog. Supports "Delimiter" attribute, which defaults to comma (',').
wxDateTime property. Default editor is DatePickerCtrl, although TextCtrl should work as well. wxPG_DATE_FORMAT attribute can be used to change string wxDateTime::Format uses (although default is recommended as it is locale-dependent), and wxPG_DATE_PICKER_STYLE allows changing window style given to DatePickerCtrl (default is wxDP_DEFAULT|wxDP_SHOWCENTURY). Using wxDP_ALLOWNONE will enable better unspecified value support.
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.
Like wxFileProperty, but has thumbnail of the image in front of the filename and autogenerates wildcard from available image handlers.
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.
Setting "HasAlpha" attribute to true for this property allows user to edit the alpha colour component.
Represents wxFont. Various sub-properties are used to edit individual subvalues.
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).
class wxColourPropertyValue : public wxObject { public: // An integer value relating to the colour, and which exact // meaning depends on the property with which it is used. // // For wxSystemColourProperty: // Any of wxSYS_COLOUR_XXX, or any web-colour ( use wxPG_TO_WEB_COLOUR // macro - (currently unsupported) ), or wxPG_COLOUR_CUSTOM. wxUint32 m_type; // Resulting colour. Should be correct regardless of type. wxColour m_colour; };
in wxSystemColourProperty, and its derived class wxColourProperty, there are various sub-classing features. To set a basic list of colour names, call wxPGProperty::SetChoices().
// Override in derived class to customize how colours are translated // to strings. virtual wxString ColourToString( const wxColour& col, int index ) const; // Returns index of entry that triggers colour picker dialog // (default is last). virtual int GetCustomColourIndex() const; // Helper function to show the colour dialog bool QueryColourFromUser( wxVariant& variant ) const; // Returns colour for given choice. // Default function returns wxSystemSettings::GetColour(index). virtual wxColour GetColour( int index ) const;
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:
class MyProperty : public wxPGProperty { public: // Default constructor MyProperty() { } // All arguments of this ctor must have a default value - // use wxPG_LABEL for label and name MyProperty( const wxString& label = wxPG_LABEL, const wxString& name = wxPG_LABEL, const wxString& value = wxEmptyString ) : wxPGProperty(label, name) { // m_value is wxVariant m_value = value; } virtual ~MyProperty() { } const wxPGEditor* DoGetEditorClass() const { // Determines editor used by property. // You can replace 'TextCtrl' below with any of these // builtin-in property editor identifiers: Choice, ComboBox, // TextCtrlAndButton, ChoiceAndButton, CheckBox, SpinCtrl, // DatePickerCtrl. return wxPGEditor_TextCtrl; } virtual wxString ValueToString( wxVariant& value, int argFlags ) const { // TODO: Convert given property value to a string } virtual bool StringToValue( wxVariant& variant, const wxString& text, int argFlags ) { // TODO: Adapt string to property value. } protected: };
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:
// In header file: // (If you need to have export declaration, use version of macros // with _EXPORTED postfix) WX_PG_DECLARE_VARIANT_DATA(MyDataClass) // In sources file: WX_PG_IMPLEMENT_VARIANT_DATA(MyDataClass) // Or, if you don't have valid == operator: WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(MyDataClass)
Public Types | |
typedef wxUint32 | FlagType |
Public Member Functions | |
wxPGProperty () | |
Default constructor. | |
wxPGProperty (const wxString &label, const wxString &name) | |
Constructor. | |
virtual | ~wxPGProperty () |
Virtual destructor. | |
virtual void | OnSetValue () |
This virtual function is called after m_value has been set. | |
virtual wxVariant | DoGetValue () const |
Override this to return something else than m_value as the value. | |
virtual bool | ValidateValue (wxVariant &value, wxPGValidationInfo &validationInfo) const |
Implement this function in derived class to check the value. | |
virtual bool | StringToValue (wxVariant &variant, const wxString &text, int argFlags=0) const |
Converts text into wxVariant value appropriate for this property. | |
virtual bool | IntToValue (wxVariant &variant, int number, int argFlags=0) const |
Converts integer (possibly a choice selection) into wxVariant value appropriate for this property. | |
virtual wxString | ValueToString (wxVariant &value, int argFlags=0) const |
Converts property value into a text representation. | |
bool | SetValueFromString (const wxString &text, int flags=0) |
Converts string to a value, and if successful, calls SetValue() on it. | |
bool | SetValueFromInt (long value, int flags=0) |
Converts integer to a value, and if successful, calls SetValue() on it. | |
virtual wxSize | OnMeasureImage (int item=-1) const |
Returns size of the custom painted image in front of property. | |
virtual bool | OnEvent (wxPropertyGrid *propgrid, wxWindow *wnd_primary, wxEvent &event) |
Events received by editor widgets are processed here. | |
virtual wxVariant | ChildChanged (wxVariant &thisValue, int childIndex, wxVariant &childValue) const |
Called after value of a child property has been altered. | |
virtual const wxPGEditor * | DoGetEditorClass () const |
Returns pointer to an instance of used editor. | |
virtual wxValidator * | DoGetValidator () const |
Returns pointer to the wxValidator that should be used with the editor of this property (NULL for no validator). | |
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). | |
virtual wxPGCellRenderer * | GetCellRenderer (int column) const |
Returns used wxPGCellRenderer instance for given property column (label=0, value=1). | |
virtual int | GetChoiceSelection () const |
Returns which choice is currently selected. | |
virtual void | RefreshChildren () |
Refresh values of child properties. | |
virtual bool | DoSetAttribute (const wxString &name, wxVariant &value) |
Reimplement this member function to add special handling for attributes of this property. | |
virtual wxVariant | DoGetAttribute (const wxString &name) const |
Returns value of an attribute. | |
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;. | |
virtual void | OnValidationFailure (wxVariant &pendingValue) |
Called whenever validation has failed with given pending value. | |
int | AddChoice (const wxString &label, int value=wxPG_INVALID_VALUE) |
Append a new choice to property's list of choices. | |
wxDEPRECATED (void AddChild(wxPGProperty *prop)) | |
Adds a private child property. | |
void | AddPrivateChild (wxPGProperty *prop) |
Adds a private child property. | |
void | AdaptListToValue (wxVariant &list, wxVariant *value) const |
Adapts list variant into proper value using consecutive ChildChanged() calls. | |
wxPGProperty * | AppendChild (wxPGProperty *childProperty) |
Use this member function to add independent (ie. | |
bool | AreAllChildrenSpecified (wxVariant *pendingList=NULL) const |
Determines, recursively, if all children are not unspecified. | |
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). | |
void | ChangeFlag (wxPGPropertyFlags flag, bool set) |
Sets or clears given property flag. | |
void | DeleteChildren () |
Deletes children of the property. | |
void | DeleteChoice (int index) |
Removes entry from property's wxPGChoices and editor control (if it is active). | |
void | Enable (bool enable=true) |
Enables or disables the property. | |
wxString | GenerateComposedValue () const |
Composes text from values of child properties. | |
wxVariant | GetAttribute (const wxString &name) const |
Returns property attribute value, null variant if not found. | |
wxString | GetAttribute (const wxString &name, const wxString &defVal) const |
Returns named attribute, as string, if found. | |
long | GetAttributeAsLong (const wxString &name, long defVal) const |
Returns named attribute, as long, if found. | |
double | GetAttributeAsDouble (const wxString &name, double defVal) const |
Returns named attribute, as double, if found. | |
wxVariant | GetAttributesAsList () const |
Returns attributes as list wxVariant. | |
const wxPGEditor * | GetColumnEditor (int column) const |
Returns editor used for given column. | |
const wxString & | GetBaseName () const |
Returns property's base name (ie. | |
const wxPGCell & | GetCell (unsigned int column) const |
Returns wxPGCell of given column. | |
wxPGCell & | GetCell (unsigned int column) |
Returns wxPGCell of given column, creating one if necessary. | |
wxPGCell & | GetOrCreateCell (unsigned int column) |
Returns wxPGCell of given column, creating one if necessary. | |
unsigned int | GetChildCount () const |
Returns number of child properties. | |
int | GetChildrenHeight (int lh, int iMax=-1) const |
Returns height of children, recursively, and by taking expanded/collapsed status into account. | |
const wxPGChoices & | GetChoices () const |
Returns read-only reference to property's list of choices. | |
void * | GetClientData () const |
Returns client data (void*) of a property. | |
wxClientData * | GetClientObject () const |
Sets managed client object of a property. | |
wxVariant | GetDefaultValue () const |
Returns property's default value. | |
wxString | GetDisplayedString () const |
Returns property's displayed text. | |
const wxPGEditor * | GetEditorClass () const |
Returns wxPGEditor that will be used and created when property becomes selected. | |
FlagType | GetFlags () const |
Returns property flags. | |
wxPropertyGrid * | GetGrid () const |
Returns property grid where property lies. | |
wxPropertyGrid * | GetGridIfDisplayed () const |
Returns owner wxPropertyGrid, but only if one is currently on a page displaying this property. | |
const wxString & | GetHelpString () const |
Returns property's help or description text. | |
unsigned int | GetIndexInParent () const |
Returns position in parent's array. | |
const wxString & | GetLabel () const |
Returns property's label. | |
const wxPGProperty * | GetLastVisibleSubItem () const |
Returns last visible child property, recursively. | |
wxPGProperty * | GetMainParent () const |
Returns highest level non-category, non-root parent. | |
int | GetMaxLength () const |
Returns maximum allowed length of property's text value. | |
wxString | GetName () const |
Returns property's name with all (non-category, non-root) parents. | |
wxPGProperty * | GetParent () const |
Return parent of property. | |
wxPGProperty * | GetPropertyByName (const wxString &name) const |
Returns (direct) child property with given name (or NULL if not found). | |
wxValidator * | GetValidator () const |
Gets assignable version of property's validator. | |
wxVariant | GetValue () const |
Returns property's value. | |
wxBitmap * | GetValueImage () const |
Returns bitmap that appears next to value text. | |
virtual wxString | GetValueAsString (int argFlags=0) const |
Returns text representation of property's value. | |
wxDEPRECATED (wxString GetValueString(int argFlags=0) const ) | |
Synonymous to GetValueAsString(). | |
wxString | GetValueType () const |
Returns value type used by this property. | |
int | GetY () const |
Returns coordinate to the top y of the property. | |
FlagType | HasFlag (wxPGPropertyFlags flag) const |
Returns non-zero if property has given flag set. | |
bool | HasVisibleChildren () const |
Returns true if property has even one visible child. | |
bool | Hide (bool hide, int flags=wxPG_RECURSE) |
Hides or reveals the property. | |
int | Index (const wxPGProperty *p) const |
Returns index of given child property. | |
wxPGProperty * | InsertChild (int index, wxPGProperty *childProperty) |
Use this member function to add independent (ie. | |
int | InsertChoice (const wxString &label, int index, int value=wxPG_INVALID_VALUE) |
Inserts a new choice to property's list of choices. | |
bool | IsCategory () const |
Returns true if this property is actually a wxPropertyCategory. | |
bool | IsEnabled () const |
Returns true if property is enabled. | |
bool | IsExpanded () const |
Returns true if property has visible children. | |
bool | IsRoot () const |
Returns true if this property is actually a wxRootProperty. | |
bool | IsSomeParent (wxPGProperty *candidateParent) const |
Returns true if candidateParent is some parent of this property. | |
bool | IsTextEditable () const |
Returns true if property has editable wxTextCtrl when selected. | |
bool | IsValueUnspecified () const |
Returns true if property's value is considered unspecified. | |
bool | IsVisible () const |
Returns true if all parents expanded. | |
wxPGProperty * | Item (unsigned int i) const |
Returns child property at index i. | |
void | RefreshEditor () |
If property's editor is active, then update it's value. | |
void | SetAttribute (const wxString &name, wxVariant value) |
Sets an attribute for this property. | |
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). | |
void | SetBackgroundColour (const wxColour &colour, int flags=wxPG_RECURSE) |
Sets property's background colour. | |
void | SetEditor (const wxPGEditor *editor) |
Sets editor for a property. | |
void | SetEditor (const wxString &editorName) |
Sets editor for a property, by editor name. | |
void | SetCell (int column, const wxPGCell &cell) |
Sets cell information for given column. | |
bool | SetChoices (wxPGChoices &choices) |
Sets new set of choices for the property. | |
void | SetClientData (void *clientData) |
Sets client data (void*) of a property. | |
void | SetClientObject (wxClientData *clientObject) |
Returns client object of a property. | |
void | SetChoiceSelection (int newValue) |
Sets selected choice and changes property value. | |
void | SetDefaultValue (wxVariant &value) |
Set default value of a property. | |
void | SetFlagRecursively (wxPGPropertyFlags flag, bool set) |
Sets or clears given property flag, recursively. | |
void | SetHelpString (const wxString &helpString) |
Sets property's help string, which is shown, for example, in wxPropertyGridManager's description text box. | |
void | SetLabel (const wxString &label) |
Sets property's label. | |
bool | SetMaxLength (int maxLen) |
Set max length of text in text editor. | |
void | SetModifiedStatus (bool modified) |
Sets property's "is it modified?" flag. | |
void | SetName (const wxString &newName) |
Sets new (base) name for property. | |
void | SetParentalType (int flag) |
Changes what sort of parent this property is for its children. | |
void | SetTextColour (const wxColour &colour, int flags=wxPG_RECURSE) |
Sets property's text colour. | |
void | SetValidator (const wxValidator &validator) |
Sets wxValidator for a property. | |
void | SetValue (wxVariant value, wxVariant *pList=NULL, int flags=wxPG_SETVAL_REFRESH_EDITOR) |
Call this to set value of the property. | |
void | SetValueImage (wxBitmap &bmp) |
Set wxBitmap in front of the value. | |
void | SetValueInEvent (wxVariant value) const |
Call this function in OnEvent(), OnButtonClick() etc. | |
void | SetValueToUnspecified () |
Sets property's value to unspecified (ie. | |
void | SetWasModified (bool set=true) |
Call with false in OnSetValue() to cancel value changes after all (ie. | |
wxPGProperty * | UpdateParentValues () |
Updates composed values of parent non-category properties, recursively. | |
bool | UsesAutoUnspecified () const |
Returns true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES. | |
Protected Member Functions | |
void | Empty () |
Deletes all child properties. |
typedef wxUint32 wxPGProperty::FlagType |
wxPGProperty::wxPGProperty | ( | ) |
Default constructor.
Constructor.
Non-abstract property classes should have constructor of this style:
MyProperty( const wxString& label, const wxString& name, const T& value ) : wxPGProperty(label, name) { // Generally recommended way to set the initial value // (as it should work in pretty much 100% of cases). wxVariant variant; variant << value; SetValue(variant); // If has private child properties then create them here. // For example: // AddPrivateChild( new wxStringProperty("Subprop 1", // wxPG_LABEL, // value.GetSubProp1())); }
virtual wxPGProperty::~wxPGProperty | ( | ) | [virtual] |
Virtual destructor.
It is customary for derived properties to implement this.
Adapts list variant into proper value using consecutive ChildChanged() calls.
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 (ie.
regular) children to a property.
bool wxPGProperty::AreAllChildrenSpecified | ( | 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 wxVariant wxPGProperty::ChildChanged | ( | wxVariant & | thisValue, |
int | childIndex, | ||
wxVariant & | childValue | ||
) | const [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:
wxVariant MyProperty::ChildChanged( wxVariant& thisValue, int childIndex, wxVariant& childValue ) const { // Acquire reference to actual type of data stored in variant // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros // were used to create the variant class). T& data = TFromVariant(thisValue); // Copy childValue into data. switch ( childIndex ) { case 0: data.SetSubProp1( childvalue.GetLong() ); break; case 1: data.SetSubProp2( childvalue.GetString() ); break; ... } // Return altered data return data; }
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. |
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.
Returns value of an attribute.
Override if custom handling of attributes is needed.
Default implementation simply return NULL variant.
virtual const wxPGEditor* wxPGProperty::DoGetEditorClass | ( | ) | const [virtual] |
Returns pointer to an instance of used editor.
virtual wxValidator* wxPGProperty::DoGetValidator | ( | ) | const [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):
wxValidator* wxMyPropertyClass::DoGetValidator () const { WX_PG_DOGETVALIDATOR_ENTRY() wxMyValidator* validator = new wxMyValidator(...); ... prepare validator... WX_PG_DOGETVALIDATOR_EXIT(validator) }
virtual wxVariant wxPGProperty::DoGetValue | ( | ) | const [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.
void wxPGProperty::Empty | ( | ) | [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. |
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 wxString& wxPGProperty::GetBaseName | ( | ) | const |
Returns property's base name (ie.
parent's name is not added in any case)
const wxPGCell& wxPGProperty::GetCell | ( | unsigned int | column | ) | const |
wxPGCell& wxPGProperty::GetCell | ( | unsigned int | column | ) |
Returns wxPGCell of given column, creating one if necessary.
virtual wxPGCellRenderer* wxPGProperty::GetCellRenderer | ( | 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 int wxPGProperty::GetChoiceSelection | ( | ) | const [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.
void* wxPGProperty::GetClientData | ( | ) | const |
Returns client data (void*) of a property.
wxClientData* wxPGProperty::GetClientObject | ( | ) | const |
Sets managed client object of a property.
const wxPGEditor* wxPGProperty::GetColumnEditor | ( | int | column | ) | const |
Returns editor used for given column.
NULL for no editor.
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.
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 wxPGEditorDialogAdapter* wxPGProperty::GetEditorDialog | ( | ) | const [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 (ie. no action is generated when button is pressed).
FlagType wxPGProperty::GetFlags | ( | ) | const |
Returns property flags.
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.
unsigned int wxPGProperty::GetIndexInParent | ( | ) | const |
Returns position in parent's array.
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 property's text value.
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).
wxValidator* wxPGProperty::GetValidator | ( | ) | const |
Gets assignable version of property's validator.
wxVariant wxPGProperty::GetValue | ( | ) | const |
Returns property's value.
virtual wxString wxPGProperty::GetValueAsString | ( | int | argFlags = 0 | ) | const [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. |
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::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.
FlagType wxPGProperty::HasFlag | ( | wxPGPropertyFlags | flag | ) | const |
Returns non-zero if property has given flag 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 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 (ie.
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 bool wxPGProperty::IntToValue | ( | wxVariant & | variant, |
int | number, | ||
int | argFlags = 0 |
||
) | const [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. |
bool wxPGProperty::IsCategory | ( | ) | const |
Returns true if this property is actually a wxPropertyCategory.
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.
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.
virtual void wxPGProperty::OnCustomPaint | ( | wxDC & | dc, |
const wxRect & | rect, | ||
wxPGPaintData & | paintdata | ||
) | [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 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 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; }; |
virtual bool wxPGProperty::OnEvent | ( | wxPropertyGrid * | propgrid, |
wxWindow * | wnd_primary, | ||
wxEvent & | event | ||
) | [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_COMMAND_CHOICE_SELECTED
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. |
virtual wxSize wxPGProperty::OnMeasureImage | ( | int | item = -1 | ) | const [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. |
virtual void wxPGProperty::OnSetValue | ( | ) | [virtual] |
This virtual function is called after m_value has been set.
virtual void wxPGProperty::OnValidationFailure | ( | wxVariant & | pendingValue | ) | [virtual] |
Called whenever validation has failed with given pending value.
virtual void wxPGProperty::RefreshChildren | ( | ) | [virtual] |
Refresh values of child properties.
Automatically called after value is set.
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::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.
void wxPGProperty::SetClientData | ( | void * | clientData | ) |
Sets client data (void*) of a property.
void wxPGProperty::SetClientObject | ( | wxClientData * | clientObject | ) |
Returns client object of a property.
void wxPGProperty::SetDefaultValue | ( | wxVariant & | value | ) |
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::SetFlagRecursively | ( | wxPGPropertyFlags | flag, |
bool | set | ||
) |
Sets or clears given property flag, recursively.
This function is primarily intended for internal use.
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 max length of text in text editor.
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 a actual value and not an index. |
bool wxPGProperty::SetValueFromString | ( | const wxString & | text, |
int | flags = 0 |
||
) |
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 |
void wxPGProperty::SetValueImage | ( | wxBitmap & | bmp | ) |
Set wxBitmap in front of the value.
This bitmap may be ignored by custom cell renderers.
void wxPGProperty::SetValueInEvent | ( | 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 (ie.
Null variant).
void wxPGProperty::SetWasModified | ( | bool | set = true | ) |
Call with false in OnSetValue() to cancel value changes after all (ie.
cancel true returned by StringToValue() or IntToValue()).
virtual bool wxPGProperty::StringToValue | ( | wxVariant & | variant, |
const wxString & | text, | ||
int | argFlags = 0 |
||
) | const [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).
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 bool wxPGProperty::ValidateValue | ( | wxVariant & | value, |
wxPGValidationInfo & | validationInfo | ||
) | const [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.
virtual wxString wxPGProperty::ValueToString | ( | wxVariant & | value, |
int | argFlags = 0 |
||
) | const [virtual] |
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. |
wxPGProperty::wxDEPRECATED | ( | void | AddChildwxPGProperty *prop | ) |
wxPGProperty::wxDEPRECATED | ( | wxString GetValueString(int argFlags=0) | const | ) |