|
wxPropertyGrid
|
Public Member Functions | |
| virtual wxPGWindowList | CreateControls (wxPropertyGrid *propgrid, wxPGProperty *property, const wxPoint &pos, const wxSize &sz) const |
| Instantiates editor controls. | |
| virtual bool | GetValueFromControl (wxVariant &variant, wxPGProperty *property, wxWindow *ctrl) const |
| Returns value from control, via parameter 'variant'. | |
| virtual bool | OnEvent (wxPropertyGrid *propgrid, wxPGProperty *property, wxWindow *ctrl, wxEvent &event) const |
| Handles events. | |
| virtual void | OnFocus (wxPGProperty *property, wxWindow *wnd) const |
| Extra processing when control gains focus. | |
| virtual void | UpdateControl (wxPGProperty *property, wxWindow *ctrl) const |
| Loads value from property to the control. | |
| virtual wxPGWindowList wxPGComboBoxEditor::CreateControls | ( | wxPropertyGrid * | propgrid, |
| wxPGProperty * | property, | ||
| const wxPoint & | pos, | ||
| const wxSize & | size | ||
| ) | const [virtual] |
Instantiates editor controls.
| propgrid | wxPropertyGrid to which the property belongs (use as parent for control). |
| property | Property for which this method is called. |
| pos | Position, inside wxPropertyGrid, to create control(s) to. |
| size | Initial size for control(s). |
Reimplemented from wxPGChoiceEditor.
| virtual bool wxPGComboBoxEditor::GetValueFromControl | ( | wxVariant & | variant, |
| wxPGProperty * | property, | ||
| wxWindow * | ctrl | ||
| ) | const [virtual] |
Returns value from control, via parameter 'variant'.
Usually ends up calling property's StringToValue or IntToValue. Returns true if value was different.
Reimplemented from wxPGChoiceEditor.
| virtual bool wxPGComboBoxEditor::OnEvent | ( | wxPropertyGrid * | propgrid, |
| wxPGProperty * | property, | ||
| wxWindow * | wnd_primary, | ||
| wxEvent & | event | ||
| ) | const [virtual] |
Handles events.
Returns true if value in control was modified (see wxPGProperty::OnEvent for more information).
Reimplemented from wxPGChoiceEditor.
| virtual void wxPGComboBoxEditor::OnFocus | ( | wxPGProperty * | property, |
| wxWindow * | wnd | ||
| ) | const [virtual] |
Extra processing when control gains focus.
For example, wxTextCtrl based controls should select all text.
Reimplemented from wxPGEditor.
| virtual void wxPGComboBoxEditor::UpdateControl | ( | wxPGProperty * | property, |
| wxWindow * | ctrl | ||
| ) | const [virtual] |
Loads value from property to the control.
Reimplemented from wxPGChoiceEditor.
1.7.6.1