More null virtuals in wxRadioBoxBase (see: 'Developers_Notebook-Incomplete-API' in wxWiki)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38350 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -72,15 +72,29 @@ public:
|
||||
const wxValidator& val = wxDefaultValidator,
|
||||
const wxString& name = wxRadioBoxNameStr);
|
||||
|
||||
// Enabling
|
||||
virtual bool Enable(bool enable = true);
|
||||
virtual bool Enable(unsigned int item, bool enable = true);
|
||||
virtual bool IsItemEnabled(unsigned int WXUNUSED(n)) const
|
||||
{
|
||||
/* TODO */
|
||||
return true;
|
||||
}
|
||||
|
||||
// Showing
|
||||
virtual bool Show(bool show = true);
|
||||
virtual bool Show(unsigned int item, bool show = true);
|
||||
virtual bool IsItemShown(unsigned int WXUNUSED(n)) const
|
||||
{
|
||||
/* TODO */
|
||||
return true;
|
||||
}
|
||||
|
||||
virtual void SetSelection(int n);
|
||||
int GetSelection() const;
|
||||
|
||||
virtual void SetString(unsigned int item, const wxString& label);
|
||||
virtual wxString GetString(unsigned int item) const;
|
||||
virtual bool Enable(bool enable = true);
|
||||
virtual bool Enable(unsigned int item, bool enable = true);
|
||||
virtual bool Show(unsigned int item, bool show = true);
|
||||
virtual bool Show(bool show = true);
|
||||
|
||||
virtual wxString GetStringSelection() const;
|
||||
virtual bool SetStringSelection(const wxString& s);
|
||||
|
Reference in New Issue
Block a user