Create own entry for default constructors
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b0fa01cca2
commit
671600d808
@ -31,7 +31,11 @@
|
||||
class wxScrollBar : public wxControl
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Default constructor
|
||||
*/
|
||||
wxScrollBar();
|
||||
|
||||
/**
|
||||
Constructor, creating and showing a scrollbar.
|
||||
|
||||
@ -54,14 +58,12 @@ public:
|
||||
|
||||
@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.
|
||||
|
@ -46,7 +46,11 @@
|
||||
class wxSplitterWindow : public wxWindow
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Default constructor
|
||||
*/
|
||||
wxSplitterWindow();
|
||||
|
||||
/**
|
||||
Constructor for creating the window.
|
||||
|
||||
@ -73,13 +77,11 @@ public:
|
||||
@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.
|
||||
|
@ -48,7 +48,11 @@
|
||||
class wxSearchCtrl : public wxTextCtrl
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Default constructor
|
||||
*/
|
||||
wxSearchCtrl();
|
||||
|
||||
/**
|
||||
Constructor, creating and showing a text control.
|
||||
|
||||
@ -71,7 +75,6 @@ public:
|
||||
|
||||
@see wxTextCtrl::Create, wxValidator
|
||||
*/
|
||||
wxSearchCtrl();
|
||||
wxSearchCtrl(wxWindow* parent, wxWindowID id,
|
||||
const wxString& value = "",
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
@ -79,7 +82,6 @@ public:
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxSearchCtrlNameStr);
|
||||
//@}
|
||||
|
||||
/**
|
||||
Destructor, destroying the search control.
|
||||
|
@ -25,7 +25,11 @@
|
||||
class wxStaticBitmap : public wxControl
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Default constructor
|
||||
*/
|
||||
wxStaticBitmap();
|
||||
|
||||
/**
|
||||
Constructor, creating and showing a static bitmap control.
|
||||
|
||||
@ -46,14 +50,12 @@ public:
|
||||
|
||||
@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().
|
||||
|
@ -32,7 +32,11 @@
|
||||
class wxStaticBox : public wxControl
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Default constructor
|
||||
*/
|
||||
wxStaticBox();
|
||||
|
||||
/**
|
||||
Constructor, creating and showing a static box.
|
||||
|
||||
@ -55,14 +59,12 @@ public:
|
||||
|
||||
@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.
|
||||
|
@ -28,7 +28,11 @@
|
||||
class wxStaticLine : public wxControl
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Default constructor
|
||||
*/
|
||||
wxStaticLine();
|
||||
|
||||
/**
|
||||
Constructor, creating and showing a static line.
|
||||
|
||||
@ -49,13 +53,11 @@ public:
|
||||
|
||||
@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()
|
||||
|
@ -47,7 +47,11 @@
|
||||
class wxStaticText : public wxControl
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Default constructor.
|
||||
*/
|
||||
wxStaticText();
|
||||
|
||||
/**
|
||||
Constructor, creating and showing a text control.
|
||||
|
||||
@ -68,14 +72,12 @@ public:
|
||||
|
||||
@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().
|
||||
|
Loading…
Reference in New Issue
Block a user