]> git.saurik.com Git - wxWidgets.git/commitdiff
Turn off the RefDoc for constructors of the classes that have a
authorRobin Dunn <robin@alldunn.com>
Fri, 26 Mar 2004 22:15:23 +0000 (22:15 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 26 Mar 2004 22:15:23 +0000 (22:15 +0000)
RefDoc.  This prevents the doc from being duplicated in the metadata.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26384 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_button.i
wxPython/src/_checkbox.i
wxPython/src/_choice.i
wxPython/src/_cmndlgs.i
wxPython/src/_combobox.i
wxPython/src/_cursor.i
wxPython/src/_splitter.i
wxPython/src/_window.i
wxPython/src/calendar.i

index 3c24b73ae84947bad6f20f55c59f276d5e991b17..320f480990712ac145949ebff74912a1c1366135 100644 (file)
@@ -104,7 +104,7 @@ the application needs more control, additional bitmaps for the selected state,
 unpressed focused state, and greyed-out state may be supplied.
 ");
 
-RefDoc(wxButton,  "
+RefDoc(wxBitmapButton,  "
  Styles
     wx.BU_AUTODRAW: If this is specified, the button will be drawn
                     automatically using the label bitmap only, providing a
@@ -129,6 +129,8 @@ public:
     %pythonAppend wxBitmapButton()       ""
 
     DocStr(wxBitmapButton, "Create and show a button with a bitmap for the label.")
+    RefDoc(wxBitmapButton, ""); // turn it off for the ctors
+    
     wxBitmapButton(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap,
                    const wxPoint& pos = wxDefaultPosition,
                    const wxSize& size = wxDefaultSize,
index 39fd4105e71bbea98789e498ca79bb339e63f1db..74b6bbc3e42b80d9d2b4fd404df53f2b2517b063 100644 (file)
@@ -73,6 +73,8 @@ public:
     %pythonAppend wxCheckBox         "self._setOORInfo(self)"
     %pythonAppend wxCheckBox()       ""
 
+    RefDoc(wxCheckBox, ""); // turn it off for the ctors
+    
     DocCtorStr(
         wxCheckBox(wxWindow* parent, wxWindowID id, const wxString& label,
                    const wxPoint& pos = wxDefaultPosition,
index 65069848f3917009bf34594ae75a30b998b1cc00..d746c04245e1d6bd29fea77e59049c9351a628ea 100644 (file)
@@ -37,6 +37,8 @@ public:
     %pythonAppend wxChoice         "self._setOORInfo(self)"
     %pythonAppend wxChoice()       ""
 
+    RefDoc(wxChoice, ""); // turn it off for the ctors
+    
     DocCtorAStr(
         wxChoice(wxWindow *parent, wxWindowID id,
                  const wxPoint& pos = wxDefaultPosition,
index 13cd13edd6c9a952d2e25911e19bb37ca8ab2305..967fb587d17319cceb9a4bb5cdc5a9f44a7fc568 100644 (file)
@@ -106,6 +106,8 @@ class wxDirDialog : public wxDialog {
 public:
     %pythonAppend wxDirDialog   "self._setOORInfo(self)"
     
+    RefDoc(wxDirDialog, ""); // turn it off for the ctors
+    
     DocCtorStr(
         wxDirDialog(wxWindow* parent,
                     const wxString& message = wxPyDirSelectorPromptStr,
@@ -185,6 +187,8 @@ class wxFileDialog : public wxDialog {
 public:
     %pythonAppend wxFileDialog   "self._setOORInfo(self)"
 
+    RefDoc(wxFileDialog, ""); // turn it off for the ctors
+    
     DocCtorStr(
         wxFileDialog(wxWindow* parent,
                      const wxString& message = wxPyFileSelectorPromptStr,
@@ -553,6 +557,8 @@ class wxMessageDialog : public wxDialog {
 public:
     %pythonAppend wxMessageDialog   "self._setOORInfo(self)"
     
+    RefDoc(wxMessageDialog, ""); // turn it off for the ctors
+    
     wxMessageDialog(wxWindow* parent,
                     const wxString& message,
                     const wxString& caption = wxPyMessageBoxCaptionStr,
@@ -600,6 +606,8 @@ class wxProgressDialog : public wxFrame {
 public:
     %pythonAppend wxProgressDialog   "self._setOORInfo(self)"
 
+    RefDoc(wxProgressDialog, ""); // turn it off for the ctors
+    
     DocCtorStr(
         wxProgressDialog(const wxString& title,
                          const wxString& message,
@@ -806,6 +814,8 @@ public:
     %pythonAppend wxFindReplaceDialog     "self._setOORInfo(self)"
     %pythonAppend wxFindReplaceDialog()   ""
 
+    RefDoc(wxFindReplaceDialog, ""); // turn it off for the ctors
+    
     DocCtorStr(
         wxFindReplaceDialog(wxWindow *parent,
                             wxFindReplaceData *data,
index d4b4bfa966b1fb3f21c8ee14a318f9d5dfa492c1..b5522f3ecbf5d0678d3822b32e1c23c3bf5f1cbb 100644 (file)
@@ -58,6 +58,8 @@ public:
     %pythonAppend wxComboBox         "self._setOORInfo(self)"
     %pythonAppend wxComboBox()       ""
 
+    RefDoc(wxComboBox, ""); // turn it off for the ctors
+    
     DocCtorAStr(
         wxComboBox(wxWindow* parent, wxWindowID id,
                    const wxString& value = wxPyEmptyString,
index 6ce76d4cf1811707337692ddfcb18ee6cd87e462..b1e103f2aaec91e57316233745f7109c50d4d06f 100644 (file)
@@ -66,6 +66,8 @@ class wxCursor : public wxGDIObject
 {
 public:
     
+    RefDoc(wxCursor, ""); // turn it off for the ctors
+    
     %extend {
         DocStr(wxCursor,
                "Construct a Cursor from a file.  Specify the type of file using\n"
index ff47fadf5092e342d7e58def25f958037cf5b19d..2603d3398ac20dd3efdb3e87666807924d0d925c 100644 (file)
@@ -111,6 +111,8 @@ public:
     %pythonAppend  wxSplitterWindow         "self._setOORInfo(self)"
     %pythonAppend  wxSplitterWindow()       ""
 
+    RefDoc(wxSplitterWindow, ""); // turn it off for the ctors
+    
     DocCtorStr(
         wxSplitterWindow(wxWindow* parent, wxWindowID id,
                          const wxPoint& pos = wxDefaultPosition,
index 792de7385a57720a4f9831364cd1273bbf67941a..cce8a97a991330c5f0cca37cae6e8bd404b664fc 100644 (file)
@@ -167,6 +167,8 @@ public:
     %pythonAppend wxWindow         "self._setOORInfo(self)"
     %pythonAppend wxWindow()       ""
 
+    RefDoc(wxWindow, ""); // turn it off for the ctors
+    
     DocCtorStr(
         wxWindow(wxWindow* parent, const wxWindowID id,
                  const wxPoint& pos = wxDefaultPosition,
index 3a91233610fa75aa6258a22471da7f9458f091ec..f81b86d7664378bef02d5e5616cfe506455cd5f9 100644 (file)
@@ -200,6 +200,8 @@ public:
     %pythonAppend wxCalendarCtrl()    ""
 
     DocStr(wxCalendarCtrl, "Create and show a calendar control.");
+    RefDoc(wxCalendarCtrl, ""); // turn it off for the ctors
+    
     wxCalendarCtrl(wxWindow *parent,
                    wxWindowID id,
                    const wxDateTime& date = wxDefaultDateTime,