#include <OptionCustom.h>


Public Member Functions | |
| serialPortComboBoxOption (const wxString &configValueName, const wxString &description, const wxString &defaultValue) | |
| void | DoDisplay (wxOptionSizer *sizer, wxWindow *parent) |
| you should override the following functions: | |
Definition at line 60 of file OptionCustom.h.
| serialPortComboBoxOption::serialPortComboBoxOption | ( | const wxString & | configValueName, | |
| const wxString & | description, | |||
| const wxString & | defaultValue | |||
| ) | [inline] |
Definition at line 62 of file OptionCustom.h.
| void serialPortComboBoxOption::DoDisplay | ( | wxOptionSizer * | sizer, | |
| wxWindow * | parent | |||
| ) | [virtual] |
you should override the following functions:
This is called when the option is going to be displayed. You should add your controls to a sizer, and then wait for OnWindowDestroy() to be called. If you need to get the value of a control (ie, a textbox), then you should keep pointers to them around. However, do not delete the controls, since they are owned by the parent dialog and will be automatically deleted.
| sizer | is a wxOptionSizer that has two columns that your controls should be added to | |
| parent | is a reference to the parent window that you should pass to your child controls. |
Reimplemented from wxComboBoxOption.
Definition at line 36 of file OptionCustom.cpp.
1.5.5