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
{
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.

View File

@ -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.

View File

@ -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.

View File

@ -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().

View File

@ -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.

View File

@ -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()

View File

@ -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().