#include <wx/propgrid/property.h>
In sections below we cover few related topics.
wxLongLong ll; ll << property->GetValue(); // or wxLongLong ll = propertyGrid->GetPropertyValueAsLong(property);
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;
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.
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 basic list 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;
Here is a very simple 'template' code:
class MyProperty : public wxPGProperty { public: // All arguments of 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 ) { // 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 DECLARE_DYNAMIC_CLASS and IMPLEMENT_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 succesful, 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 void | 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) |
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 | DeleteChildren () |
Deletes children of the property. | |
void | DeleteChoice (int index) |
Removes entry from property's wxPGChoices and editor control (if it is active). | |
void | Empty () |
Deletes all child properties. | |
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. | |
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. | |
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. | |
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 | SetBackgroundColour (const wxColour &colour, bool recursively=false) |
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 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 | 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, bool recursively=false) |
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. |
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() { // 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).
virtual void wxPGProperty::ChildChanged | ( | wxVariant & | thisValue, | |
int | childIndex, | |||
wxVariant & | childValue | |||
) | const [virtual] |
Called after value of a child property has been altered.
Note that this function is usually called at the time that value of this property, or given child property, is still pending for change.
Sample pseudo-code implementation:
void 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; ... } }
thisValue | Value of this property, that should be altered. | |
childIndex | Index of child changed (you can use Item(childIndex) to get). | |
childValue | 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.
Special handling for attributes of this property.
If returns false, then the attribute will be automatically stored in m_attributes.
Default implementation simply returns false.
void wxPGProperty::Empty | ( | ) |
Deletes all child properties.
wxString wxPGProperty::GenerateComposedValue | ( | ) | const |
Composes text from values of child properties.
Returns named attribute, as string, if found.
Otherwise defVal is returned.
Returns property attribute value, null variant if not found.
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 |
Returns wxPGCell of given column.
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).
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 |
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.
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.
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::SetBackgroundColour | ( | const wxColour & | colour, | |
bool | recursively = false | |||
) |
Sets property's background colour.
colour | Background colour to use. | |
recursively | If true, children are affected recursively, and any categories are not. |
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 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::SetEditor | ( | const wxString & | editorName | ) |
Sets editor for a property, by editor name.
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). |
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, | |
bool | recursively = false | |||
) |
Sets property's text colour.
colour | Text colour to use. | |
recursively | If true, children are affected recursively, and any categories are not. |
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.
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 succesful, calls SetValue() on it.
Default behavior 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 behavior 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). |
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 | ( | wxString GetValueString(int argFlags=0) | const | ) |
Synonymous to GetValueAsString().
wxPGProperty::wxDEPRECATED | ( | void | AddChildwxPGProperty *prop | ) |
![]() |
[ top ] |