|
| wxDirProperty (const wxString &name=wxPG_LABEL, const wxString &label=wxPG_LABEL, const wxString &value=wxEmptyString) |
|
virtual | ~wxDirProperty () |
|
virtual bool | DoSetAttribute (const wxString &name, wxVariant &value) |
| Reimplement this member function to add special handling for attributes of this property.
|
|
virtual wxValidator * | DoGetValidator () const |
| Returns pointer to the wxValidator that should be used with the editor of this property (NULL for no validator).
|
|
virtual bool | OnButtonClick (wxPropertyGrid *propGrid, wxString &value) |
|
| wxLongStringProperty (const wxString &label=wxPG_LABEL, const wxString &name=wxPG_LABEL, const wxString &value=wxEmptyString) |
|
virtual | ~wxLongStringProperty () |
|
virtual wxString | ValueToString (wxVariant &value, int argFlags=0) const |
| Converts property value into a text representation.
|
|
virtual bool | StringToValue (wxVariant &variant, const wxString &text, int argFlags=0) const |
| Converts text into wxVariant value appropriate for this property.
|
|
virtual bool | OnEvent (wxPropertyGrid *propgrid, wxWindow *primary, wxEvent &event) |
| Events received by editor widgets are processed here.
|
|
virtual bool | OnButtonClick (wxPropertyGrid *propgrid, wxString &value) |
|
| 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.
|
|
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.
|
|
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.
|
|
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 wxPGAttributeStorage & | GetAttributes () const |
| Return attributes storage map.
|
|
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.
|
|
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 | IsSubProperty () const |
| Returns true if this is a sub-property.
|
|
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 | 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).
|
|
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.
|
|
void | SetValuePlain (wxVariant value) |
| Helper for language bindings.
|
|
| wxObject () |
| Default ctor; initializes to NULL the internal reference data.
|
|
| wxObject (const wxObject &other) |
| Copy ctor.
|
|
virtual | ~wxObject () |
| Destructor.
|
|
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).
|
|
wxObjectRefData * | GetRefData () const |
| Returns the wxObject::m_refData pointer, i.e. the data referenced by this object.
|
|
bool | IsKindOf (const wxClassInfo *info) const |
| Determines whether this class is a subclass of (or the same class as) the given class.
|
|
bool | IsSameAs (const wxObject &obj) const |
| Returns true if this object has the same data pointer as obj.
|
|
void | Ref (const wxObject &clone) |
| Makes this object refer to the data in clone.
|
|
void | SetRefData (wxObjectRefData *data) |
| Sets the wxObject::m_refData pointer.
|
|
void | UnRef () |
| Decrements the reference count in the associated data, and if it is zero, deletes the data.
|
|
void | UnShare () |
| This is the same of AllocExclusive() but this method is public.
|
|
void | operator delete (void *buf) |
| The delete operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined.
|
|
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.
|
|