Base class for custom wxPropertyGrid editors.
|
| wxPGEditor () |
| Constructor. More...
|
|
virtual | ~wxPGEditor () |
| Destructor. More...
|
|
virtual wxString | GetName () const |
| Returns pointer to the name of the editor. More...
|
|
virtual wxPGWindowList | CreateControls (wxPropertyGrid *propgrid, wxPGProperty *property, const wxPoint &pos, const wxSize &size) const =0 |
| Instantiates editor controls. More...
|
|
virtual void | UpdateControl (wxPGProperty *property, wxWindow *ctrl) const =0 |
| Loads value from property to the control. More...
|
|
virtual void | DrawValue (wxDC &dc, const wxRect &rect, wxPGProperty *property, const wxString &text) const |
| Draws value for given property. More...
|
|
virtual bool | OnEvent (wxPropertyGrid *propgrid, wxPGProperty *property, wxWindow *wnd_primary, wxEvent &event) const =0 |
| Handles events. More...
|
|
virtual bool | GetValueFromControl (wxVariant &variant, wxPGProperty *property, wxWindow *ctrl) const |
| Returns value from control, via parameter 'variant'. More...
|
|
virtual void | SetValueToUnspecified (wxPGProperty *property, wxWindow *ctrl) const =0 |
| Sets value in control to unspecified. More...
|
|
virtual void | SetControlAppearance (wxPropertyGrid *pg, wxPGProperty *property, wxWindow *ctrl, const wxPGCell &appearance, const wxPGCell &oldAppearance, bool unspecified) const |
| Called by property grid to set new appearance for the control. More...
|
|
virtual void | SetControlStringValue (wxPGProperty *property, wxWindow *ctrl, const wxString &txt) const |
| Sets control's value specifically from string. More...
|
|
virtual void | SetControlIntValue (wxPGProperty *property, wxWindow *ctrl, int value) const |
| Sets control's value specifically from int (applies to choice etc.). More...
|
|
virtual int | InsertItem (wxWindow *ctrl, const wxString &label, int index) const |
| Inserts item to existing control. More...
|
|
virtual void | DeleteItem (wxWindow *ctrl, int index) const |
| Deletes item from existing control. More...
|
|
virtual void | OnFocus (wxPGProperty *property, wxWindow *wnd) const |
| Extra processing when control gains focus. More...
|
|
virtual bool | CanContainCustomImage () const |
| Returns true if control itself can contain the custom image. More...
|
|
| wxObject () |
| Default ctor; initializes to NULL the internal reference data. More...
|
|
| wxObject (const wxObject &other) |
| Copy ctor. More...
|
|
virtual | ~wxObject () |
| Destructor. More...
|
|
virtual wxClassInfo * | GetClassInfo () const |
| This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar). More...
|
|
wxObjectRefData * | GetRefData () const |
| Returns the wxObject::m_refData pointer, i.e. the data referenced by this object. More...
|
|
bool | IsKindOf (const wxClassInfo *info) const |
| Determines whether this class is a subclass of (or the same class as) the given class. More...
|
|
bool | IsSameAs (const wxObject &obj) const |
| Returns true if this object has the same data pointer as obj. More...
|
|
void | Ref (const wxObject &clone) |
| Makes this object refer to the data in clone. More...
|
|
void | SetRefData (wxObjectRefData *data) |
| Sets the wxObject::m_refData pointer. More...
|
|
void | UnRef () |
| Decrements the reference count in the associated data, and if it is zero, deletes the data. More...
|
|
void | UnShare () |
| This is the same of AllocExclusive() but this method is public. More...
|
|
void | operator delete (void *buf) |
| The delete operator is defined for debugging versions of the library only, when the identifier WXDEBUG is defined. More...
|
|
void * | operator new (size_t size, const wxString &filename=NULL, int lineNum=0) |
| The new operator is defined for debugging versions of the library only, when the identifier WXDEBUG is defined. More...
|
|
Called by property grid to set new appearance for the control.
Default implementation sets foreground colour, background colour, font, plus text for wxTextCtrl and wxComboCtrl.
The parameter appearance represents the new appearance to be applied.
The parameter oldAppearance is the previously applied appearance. Used to detect which control attributes need to be changed (e.g. so we only change background colour if really needed).
Finally, the parameter unspecified if true tells this function that the new appearance represents an unspecified property value.