class wxScrollBar : public wxControl
{
public:
- //@{
+ /**
+ Default constructor
+ */
+ wxScrollBar();
+
/**
Constructor, creating and showing a scrollbar.
@see Create(), wxValidator
*/
- wxScrollBar();
wxScrollBar(wxWindow* parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxSB_HORIZONTAL,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = "scrollBar");
- //@}
/**
Destructor, destroying the scrollbar.
class wxSplitterWindow : public wxWindow
{
public:
- //@{
+ /**
+ Default constructor
+ */
+ wxSplitterWindow();
+
/**
Constructor for creating the window.
@see Initialize(), SplitVertically(),
SplitHorizontally(), Create()
*/
- wxSplitterWindow();
wxSplitterWindow(wxWindow* parent, wxWindowID id,
const wxPoint& point = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxSP_3D,
const wxString& name = "splitterWindow");
- //@}
/**
Destroys the wxSplitterWindow and its children.
class wxSearchCtrl : public wxTextCtrl
{
public:
- //@{
+ /**
+ Default constructor
+ */
+ wxSearchCtrl();
+
/**
Constructor, creating and showing a text control.
@see wxTextCtrl::Create, wxValidator
*/
- wxSearchCtrl();
wxSearchCtrl(wxWindow* parent, wxWindowID id,
const wxString& value = "",
const wxPoint& pos = wxDefaultPosition,
long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSearchCtrlNameStr);
- //@}
/**
Destructor, destroying the search control.
class wxStaticBitmap : public wxControl
{
public:
- //@{
+ /**
+ Default constructor
+ */
+ wxStaticBitmap();
+
/**
Constructor, creating and showing a static bitmap control.
@see Create()
*/
- wxStaticBitmap();
wxStaticBitmap(wxWindow* parent, wxWindowID id,
const wxBitmap& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxString& name = "staticBitmap");
- //@}
/**
Creation function, for two-step construction. For details see wxStaticBitmap().
class wxStaticBox : public wxControl
{
public:
- //@{
+ /**
+ Default constructor
+ */
+ wxStaticBox();
+
/**
Constructor, creating and showing a static box.
@see Create()
*/
- wxStaticBox();
wxStaticBox(wxWindow* parent, wxWindowID id,
const wxString& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxString& name = "staticBox");
- //@}
/**
Destructor, destroying the group box.
class wxStaticLine : public wxControl
{
public:
- //@{
+ /**
+ Default constructor
+ */
+ wxStaticLine();
+
/**
Constructor, creating and showing a static line.
@see Create()
*/
- wxStaticLine();
wxStaticLine(wxWindow* parent, wxWindowID id = wxID_ANY,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxLI_HORIZONTAL,
const wxString& name = "staticLine");
- //@}
/**
Creates the static line for two-step construction. See wxStaticLine()
class wxStaticText : public wxControl
{
public:
- //@{
+ /**
+ Default constructor.
+ */
+ wxStaticText();
+
/**
Constructor, creating and showing a text control.
@see Create()
*/
- wxStaticText();
wxStaticText(wxWindow* parent, wxWindowID id,
const wxString& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxString& name = "staticText");
- //@}
/**
Creation function, for two-step construction. For details see wxStaticText().