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:
Robert Roebling
2008-05-29 14:10:52 +00:00
parent b0fa01cca2
commit 671600d808
7 changed files with 35 additions and 21 deletions

View File

@@ -31,7 +31,11 @@
class wxScrollBar : public wxControl class wxScrollBar : public wxControl
{ {
public: public:
//@{ /**
Default constructor
*/
wxScrollBar();
/** /**
Constructor, creating and showing a scrollbar. Constructor, creating and showing a scrollbar.
@@ -54,14 +58,12 @@ public:
@see Create(), wxValidator @see Create(), wxValidator
*/ */
wxScrollBar();
wxScrollBar(wxWindow* parent, wxWindowID id, wxScrollBar(wxWindow* parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = wxSB_HORIZONTAL, long style = wxSB_HORIZONTAL,
const wxValidator& validator = wxDefaultValidator, const wxValidator& validator = wxDefaultValidator,
const wxString& name = "scrollBar"); const wxString& name = "scrollBar");
//@}
/** /**
Destructor, destroying the scrollbar. Destructor, destroying the scrollbar.

View File

@@ -46,7 +46,11 @@
class wxSplitterWindow : public wxWindow class wxSplitterWindow : public wxWindow
{ {
public: public:
//@{ /**
Default constructor
*/
wxSplitterWindow();
/** /**
Constructor for creating the window. Constructor for creating the window.
@@ -73,13 +77,11 @@ public:
@see Initialize(), SplitVertically(), @see Initialize(), SplitVertically(),
SplitHorizontally(), Create() SplitHorizontally(), Create()
*/ */
wxSplitterWindow();
wxSplitterWindow(wxWindow* parent, wxWindowID id, wxSplitterWindow(wxWindow* parent, wxWindowID id,
const wxPoint& point = wxDefaultPosition, const wxPoint& point = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = wxSP_3D, long style = wxSP_3D,
const wxString& name = "splitterWindow"); const wxString& name = "splitterWindow");
//@}
/** /**
Destroys the wxSplitterWindow and its children. Destroys the wxSplitterWindow and its children.

View File

@@ -48,7 +48,11 @@
class wxSearchCtrl : public wxTextCtrl class wxSearchCtrl : public wxTextCtrl
{ {
public: public:
//@{ /**
Default constructor
*/
wxSearchCtrl();
/** /**
Constructor, creating and showing a text control. Constructor, creating and showing a text control.
@@ -71,7 +75,6 @@ public:
@see wxTextCtrl::Create, wxValidator @see wxTextCtrl::Create, wxValidator
*/ */
wxSearchCtrl();
wxSearchCtrl(wxWindow* parent, wxWindowID id, wxSearchCtrl(wxWindow* parent, wxWindowID id,
const wxString& value = "", const wxString& value = "",
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
@@ -79,7 +82,6 @@ public:
long style = 0, long style = 0,
const wxValidator& validator = wxDefaultValidator, const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSearchCtrlNameStr); const wxString& name = wxSearchCtrlNameStr);
//@}
/** /**
Destructor, destroying the search control. Destructor, destroying the search control.

View File

@@ -25,7 +25,11 @@
class wxStaticBitmap : public wxControl class wxStaticBitmap : public wxControl
{ {
public: public:
//@{ /**
Default constructor
*/
wxStaticBitmap();
/** /**
Constructor, creating and showing a static bitmap control. Constructor, creating and showing a static bitmap control.
@@ -46,14 +50,12 @@ public:
@see Create() @see Create()
*/ */
wxStaticBitmap();
wxStaticBitmap(wxWindow* parent, wxWindowID id, wxStaticBitmap(wxWindow* parent, wxWindowID id,
const wxBitmap& label, const wxBitmap& label,
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = 0, long style = 0,
const wxString& name = "staticBitmap"); const wxString& name = "staticBitmap");
//@}
/** /**
Creation function, for two-step construction. For details see wxStaticBitmap(). Creation function, for two-step construction. For details see wxStaticBitmap().

View File

@@ -32,7 +32,11 @@
class wxStaticBox : public wxControl class wxStaticBox : public wxControl
{ {
public: public:
//@{ /**
Default constructor
*/
wxStaticBox();
/** /**
Constructor, creating and showing a static box. Constructor, creating and showing a static box.
@@ -55,14 +59,12 @@ public:
@see Create() @see Create()
*/ */
wxStaticBox();
wxStaticBox(wxWindow* parent, wxWindowID id, wxStaticBox(wxWindow* parent, wxWindowID id,
const wxString& label, const wxString& label,
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = 0, long style = 0,
const wxString& name = "staticBox"); const wxString& name = "staticBox");
//@}
/** /**
Destructor, destroying the group box. Destructor, destroying the group box.

View File

@@ -28,7 +28,11 @@
class wxStaticLine : public wxControl class wxStaticLine : public wxControl
{ {
public: public:
//@{ /**
Default constructor
*/
wxStaticLine();
/** /**
Constructor, creating and showing a static line. Constructor, creating and showing a static line.
@@ -49,13 +53,11 @@ public:
@see Create() @see Create()
*/ */
wxStaticLine();
wxStaticLine(wxWindow* parent, wxWindowID id = wxID_ANY, wxStaticLine(wxWindow* parent, wxWindowID id = wxID_ANY,
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = wxLI_HORIZONTAL, long style = wxLI_HORIZONTAL,
const wxString& name = "staticLine"); const wxString& name = "staticLine");
//@}
/** /**
Creates the static line for two-step construction. See wxStaticLine() Creates the static line for two-step construction. See wxStaticLine()

View File

@@ -47,7 +47,11 @@
class wxStaticText : public wxControl class wxStaticText : public wxControl
{ {
public: public:
//@{ /**
Default constructor.
*/
wxStaticText();
/** /**
Constructor, creating and showing a text control. Constructor, creating and showing a text control.
@@ -68,14 +72,12 @@ public:
@see Create() @see Create()
*/ */
wxStaticText();
wxStaticText(wxWindow* parent, wxWindowID id, wxStaticText(wxWindow* parent, wxWindowID id,
const wxString& label, const wxString& label,
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
long style = 0, long style = 0,
const wxString& name = "staticText"); const wxString& name = "staticText");
//@}
/** /**
Creation function, for two-step construction. For details see wxStaticText(). Creation function, for two-step construction. For details see wxStaticText().