Public Member Functions | |
wxItemContainer_updater (wxBitmapComboBox *combo, const wxString &field) | |
Constructor. | |
wxItemContainer_updater (wxChoice *list, const wxString &field) | |
Constructor. | |
wxItemContainer_updater (wxComboBox *combo, const wxString &field) | |
Constructor. | |
wxItemContainer_updater (wxSimpleHtmlListBox *list, const wxString &field) | |
Constructor. | |
wxItemContainer_updater (wxListBox *list, const wxString &field) | |
Constructor. | |
wxItemContainer_updater (wxOwnerDrawnComboBox *list, const wxString &field) | |
Constructor. | |
wxItemContainer_updater (wxRadioBox *radio_box, const wxString &field) | |
Constructor. | |
virtual void | operator() (Data_row_provider *data) |
Update control. | |
virtual void | operator() (Updatable_row *row) |
Store value to field. |
wxPg::wxItemContainer_updater::wxItemContainer_updater | ( | wxBitmapComboBox * | combo, | |
const wxString & | field | |||
) |
Constructor.
combo | - wxBitmapComboBox to be updated. | |
field | - database field name. |
wxPg::wxItemContainer_updater::wxItemContainer_updater | ( | wxChoice * | list, | |
const wxString & | field | |||
) |
Constructor.
list | - wxChoice to be updated. | |
field | - database field name. |
wxPg::wxItemContainer_updater::wxItemContainer_updater | ( | wxComboBox * | combo, | |
const wxString & | field | |||
) |
Constructor.
combo | - wxComboBox to be updated. | |
field | - database field name. |
wxPg::wxItemContainer_updater::wxItemContainer_updater | ( | wxSimpleHtmlListBox * | list, | |
const wxString & | field | |||
) |
Constructor.
list | - wxSimpleHtmlListBox to be updated. | |
field | - database field name. |
wxPg::wxItemContainer_updater::wxItemContainer_updater | ( | wxListBox * | list, | |
const wxString & | field | |||
) |
Constructor.
list | - wxListBox to be updated. | |
field | - database field name. |
wxPg::wxItemContainer_updater::wxItemContainer_updater | ( | wxOwnerDrawnComboBox * | list, | |
const wxString & | field | |||
) |
Constructor.
list | - wxOwnerDrawnComboBox to be updated. | |
field | - database field name. |
wxPg::wxItemContainer_updater::wxItemContainer_updater | ( | wxRadioBox * | radio_box, | |
const wxString & | field | |||
) |
Constructor.
radio_box | - wxRadioBox to be updated. | |
field | - database field name. |
virtual void wxPg::wxItemContainer_updater::operator() | ( | Updatable_row * | row | ) | [virtual] |
Store value to field.
Override this method in derived class to provide update functionality.
row | - updatable row, containing field to update. |
Reimplemented from wxPg::wxWindow_updater.
virtual void wxPg::wxItemContainer_updater::operator() | ( | Data_row_provider * | data | ) | [virtual] |
Update control.
This method should be overrided in derived class.
win | - wxWindow to be updated. | |
data | - row to obtain value from. |
Implements wxPg::wxWindow_updater.