virtual int GetColumnCount() const;
virtual int GetRowCount() const;
- bool Show(bool show);
+ virtual bool Show(bool show = TRUE);
void SetFocus();
- bool Enable(bool enable);
+ virtual bool Enable(bool enable = TRUE);
void SetLabelFont(const wxFont& WXUNUSED(font)) {};
void SetButtonFont(const wxFont& font) { SetFont(font); }
int GetNumVer() const;
int GetNumHor() const;
- // compatibility ctor
-#if WXWIN_COMPATIBILITY
- wxRadioBox(wxWindow *parent, wxFunction func, const char *title,
- int x = -1, int y = -1, int width = -1, int height = -1,
- int n = 0, char **choices = NULL,
- int majorDim = 0, long style = wxRA_HORIZONTAL, const char *name = wxRadioBoxNameStr);
-#endif // WXWIN_COMPATIBILITY
-
protected:
// subclass one radio button
void SubclassRadioButton(WXHWND hWndBtn);
private:
DECLARE_DYNAMIC_CLASS(wxRadioBox)
+ DECLARE_NO_COPY_CLASS(wxRadioBox)
};
#endif