git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55407
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class wxToggleButton : public wxControl
{
public:
class wxToggleButton : public wxControl
{
public:
+ /**
+ Default constructor.
+ */
+ wxToggleButton();
+
/**
Constructor, creating and showing a toggle button.
/**
Constructor, creating and showing a toggle button.
@see Create(), wxValidator
*/
@see Create(), wxValidator
*/
wxToggleButton(wxWindow* parent, wxWindowID id,
const wxString& label,
const wxPoint& pos = wxDefaultPosition,
wxToggleButton(wxWindow* parent, wxWindowID id,
const wxString& label,
const wxPoint& pos = wxDefaultPosition,
long style = 0,
const wxValidator& val = wxDefaultValidator,
const wxString& name = "checkBox");
long style = 0,
const wxValidator& val = wxDefaultValidator,
const wxString& name = "checkBox");
/**
Destructor, destroying the toggle button.
/**
Destructor, destroying the toggle button.
class wxBitmapToggleButton : public wxControl
{
public:
class wxBitmapToggleButton : public wxControl
{
public:
+ /**
+ Default constructor.
+ */
+ wxBitmapToggleButton();
+
/**
Constructor, creating and showing a toggle button with the bitmap @e label.
Internally calls Create().
*/
/**
Constructor, creating and showing a toggle button with the bitmap @e label.
Internally calls Create().
*/
- wxBitmapToggleButton();
wxBitmapToggleButton(wxWindow* parent, wxWindowID id,
const wxBitmap& label,
const wxPoint& pos = wxDefaultPosition,
wxBitmapToggleButton(wxWindow* parent, wxWindowID id,
const wxBitmap& label,
const wxPoint& pos = wxDefaultPosition,
long style = 0,
const wxValidator& val = wxDefaultValidator,
const wxString& name = "checkBox");
long style = 0,
const wxValidator& val = wxDefaultValidator,
const wxString& name = "checkBox");
/**
Create method for two-step construction.
/**
Create method for two-step construction.