]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/notebook.h
Give spin button the same height as the associated text control
[wxWidgets.git] / interface / notebook.h
index a83726c0c034043c1a3ea10667b73b4e32b0d2d6..807e42c1db849b4ad55628abeb0a51bad6b82ee4 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        notebook.h
 /////////////////////////////////////////////////////////////////////////////
 // Name:        notebook.h
-// Purpose:     documentation for wxNotebookEvent class
+// Purpose:     interface of wxNotebookEvent
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -29,8 +29,7 @@
     @library{wxcore}
     @category{events}
 
     @library{wxcore}
     @category{events}
 
-    @seealso
-    wxNotebook
+    @see wxNotebook
 */
 class wxNotebookEvent : public wxNotifyEvent
 {
 */
 class wxNotebookEvent : public wxNotifyEvent
 {
@@ -38,19 +37,18 @@ public:
     /**
         Constructor (used internally by wxWidgets only).
     */
     /**
         Constructor (used internally by wxWidgets only).
     */
-    wxNotebookEvent(wxEventType eventType = wxEVT_@NULL, int id = 0,
+    wxNotebookEvent(wxEventType eventType = wxEVT_NULL, int id = 0,
                     int sel = -1,
                     int oldSel = -1);
 
     /**
         Returns the page that was selected before the change, -1 if none was selected.
     */
                     int sel = -1,
                     int oldSel = -1);
 
     /**
         Returns the page that was selected before the change, -1 if none was selected.
     */
-    int GetOldSelection();
+    int GetOldSelection() const;
 
     /**
         Returns the currently selected page, or -1 if none was selected.
 
     /**
         Returns the currently selected page, or -1 if none was selected.
-        
-        @b NB: under Windows, GetSelection() will return the same value as
+        @note under Windows, GetSelection() will return the same value as
         GetOldSelection() when called from
         @c EVT_NOTEBOOK_PAGE_CHANGING handler and not the page which is going to
         be selected. Also note that the values of selection and old selection returned
         GetOldSelection() when called from
         @c EVT_NOTEBOOK_PAGE_CHANGING handler and not the page which is going to
         be selected. Also note that the values of selection and old selection returned
@@ -60,7 +58,7 @@ public:
         you presumably don't need them anyhow as you already have the corresponding
         information).
     */
         you presumably don't need them anyhow as you already have the corresponding
         information).
     */
-    int GetSelection();
+    int GetSelection() const;
 
     /**
         Sets the id of the page selected before the change.
 
     /**
         Sets the id of the page selected before the change.
@@ -74,6 +72,7 @@ public:
 };
 
 
 };
 
 
+
 /**
     @class wxNotebook
     @wxheader{notebook.h}
 /**
     @class wxNotebook
     @wxheader{notebook.h}
@@ -90,30 +89,29 @@ public:
     @b wxNotebookPage is a typedef for wxWindow.
 
     @beginStyleTable
     @b wxNotebookPage is a typedef for wxWindow.
 
     @beginStyleTable
-    @style{wxNB_TOP}:
+    @style{wxNB_TOP}
            Place tabs on the top side.
            Place tabs on the top side.
-    @style{wxNB_LEFT}:
+    @style{wxNB_LEFT}
            Place tabs on the left side.
            Place tabs on the left side.
-    @style{wxNB_RIGHT}:
+    @style{wxNB_RIGHT}
            Place tabs on the right side.
            Place tabs on the right side.
-    @style{wxNB_BOTTOM}:
+    @style{wxNB_BOTTOM}
            Place tabs under instead of above the notebook pages.
            Place tabs under instead of above the notebook pages.
-    @style{wxNB_FIXEDWIDTH}:
+    @style{wxNB_FIXEDWIDTH}
            (Windows only) All tabs will have same width.
            (Windows only) All tabs will have same width.
-    @style{wxNB_MULTILINE}:
+    @style{wxNB_MULTILINE}
            (Windows only) There can be several rows of tabs.
            (Windows only) There can be several rows of tabs.
-    @style{wxNB_NOPAGETHEME}:
+    @style{wxNB_NOPAGETHEME}
            (Windows only) Display a solid colour on notebook pages, and not a
            gradient, which can reduce performance.
            (Windows only) Display a solid colour on notebook pages, and not a
            gradient, which can reduce performance.
-    @style{wxNB_FLAT}:
+    @style{wxNB_FLAT}
            (Windows CE only) Show tabs in a flat style.
     @endStyleTable
 
     @library{wxcore}
     @category{miscwnd}
 
            (Windows CE only) Show tabs in a flat style.
     @endStyleTable
 
     @library{wxcore}
     @category{miscwnd}
 
-    @seealso
-    wxBookCtrl, wxNotebookEvent, wxImageList, @ref overview_samplenotebook
+    @see wxBookCtrl(), wxNotebookEvent, wxImageList, @ref overview_samplenotebook
     "notebook sample"
 */
 class wxNotebook : public wxBookCtrl overview
     "notebook sample"
 */
 class wxNotebook : public wxBookCtrl overview
@@ -122,27 +120,21 @@ public:
     //@{
     /**
         Constructs a notebook control.
     //@{
     /**
         Constructs a notebook control.
-        
         Note that sometimes you can reduce flicker by passing the wxCLIP_CHILDREN
         window style.
         Note that sometimes you can reduce flicker by passing the wxCLIP_CHILDREN
         window style.
-        
+
         @param parent
         @param parent
-        The parent window. Must be non-@NULL.
-        
+            The parent window. Must be non-@NULL.
         @param id
         @param id
-        The window identifier.
-        
+            The window identifier.
         @param pos
         @param pos
-        The window position.
-        
+            The window position.
         @param size
         @param size
-        The window size.
-        
+            The window size.
         @param style
         @param style
-        The window style. See wxNotebook.
-        
+            The window style. See wxNotebook.
         @param name
         @param name
-        The name of the control (used only under Motif).
+            The name of the control (used only under Motif).
     */
     wxNotebook();
     wxNotebook(wxWindow* parent, wxWindowID id,
     */
     wxNotebook();
     wxNotebook(wxWindow* parent, wxWindowID id,
@@ -155,58 +147,52 @@ public:
     /**
         Destroys the wxNotebook object.
     */
     /**
         Destroys the wxNotebook object.
     */
-    ~wxNotebook();
+    virtual ~wxNotebook();
 
     /**
         Adds a new page.
 
     /**
         Adds a new page.
-        
         The call to this function may generate the page changing events.
         The call to this function may generate the page changing events.
-        
+
         @param page
         @param page
-        Specifies the new page.
-        
+            Specifies the new page.
         @param text
         @param text
-        Specifies the text for the new page.
-        
+            Specifies the text for the new page.
         @param select
         @param select
-        Specifies whether the page should be selected.
-        
+            Specifies whether the page should be selected.
         @param imageId
         @param imageId
-        Specifies the optional image index for the new page.
-        
-        @returns @true if successful, @false otherwise.
-        
+            Specifies the optional image index for the new page.
+
+        @return @true if successful, @false otherwise.
+
         @remarks Do not delete the page, it will be deleted by the notebook.
         @remarks Do not delete the page, it will be deleted by the notebook.
-        
-        @sa InsertPage()
+
+        @see InsertPage()
     */
     bool AddPage(wxNotebookPage* page, const wxString& text,
     */
     bool AddPage(wxNotebookPage* page, const wxString& text,
-                 bool select = @false,
+                 bool select = false,
                  int imageId = -1);
 
     /**
         Cycles through the tabs.
                  int imageId = -1);
 
     /**
         Cycles through the tabs.
-        
         The call to this function generates the page changing events.
     */
         The call to this function generates the page changing events.
     */
-    void AdvanceSelection(bool forward = @true);
+    void AdvanceSelection(bool forward = true);
 
     /**
         Sets the image list for the page control and takes ownership of
         the list.
 
     /**
         Sets the image list for the page control and takes ownership of
         the list.
-        
-        @sa wxImageList, SetImageList()
+
+        @see wxImageList, SetImageList()
     */
     void AssignImageList(wxImageList* imageList);
 
     /**
         Changes the selection for the given page, returning the previous selection.
     */
     void AssignImageList(wxImageList* imageList);
 
     /**
         Changes the selection for the given page, returning the previous selection.
-        
         The call to this function does not generate the page changing events.
         This is the only difference with SetSelection().
         See @ref overview_progevent "this topic" for more info.
     */
         The call to this function does not generate the page changing events.
         This is the only difference with SetSelection().
         See @ref overview_progevent "this topic" for more info.
     */
-    int ChangeSelection(size_t page);
+    virtual int ChangeSelection(size_t page);
 
     /**
         Creates a notebook control. See wxNotebook() for a description
 
     /**
         Creates a notebook control. See wxNotebook() for a description
@@ -214,17 +200,17 @@ public:
     */
     bool Create(wxWindow* parent, wxWindowID id,
                 const wxPoint& pos = wxDefaultPosition,
     */
     bool Create(wxWindow* parent, wxWindowID id,
                 const wxPoint& pos = wxDefaultPosition,
-                const wxSize& size, long style = 0,
+                const wxSize& size = wxDefaultSize,
+                long style = 0,
                 const wxString& name = wxNotebookNameStr);
 
     /**
         Deletes all pages.
     */
                 const wxString& name = wxNotebookNameStr);
 
     /**
         Deletes all pages.
     */
-    bool DeleteAllPages();
+    virtual bool DeleteAllPages();
 
     /**
         Deletes the specified page, and the associated window.
 
     /**
         Deletes the specified page, and the associated window.
-        
         The call to this function generates the page changing events.
     */
     bool DeletePage(size_t page);
         The call to this function generates the page changing events.
     */
     bool DeletePage(size_t page);
@@ -232,14 +218,14 @@ public:
     /**
         Returns the currently selected notebook page or @NULL.
     */
     /**
         Returns the currently selected notebook page or @NULL.
     */
-    wxWindow * GetCurrentPage();
+    wxWindow* GetCurrentPage() const;
 
     /**
         Returns the associated image list.
 
     /**
         Returns the associated image list.
-        
-        @sa wxImageList, SetImageList()
+
+        @see wxImageList, SetImageList()
     */
     */
-    wxImageList* GetImageList();
+    wxImageList* GetImageList() const;
 
     /**
         Returns the window at the given page position.
 
     /**
         Returns the window at the given page position.
@@ -249,33 +235,32 @@ public:
     /**
         Returns the number of pages in the notebook control.
     */
     /**
         Returns the number of pages in the notebook control.
     */
-    size_t GetPageCount();
+    size_t GetPageCount() const;
 
     /**
         Returns the image index for the given page.
     */
 
     /**
         Returns the image index for the given page.
     */
-    int GetPageImage(size_t nPage);
+    virtual int GetPageImage(size_t nPage) const;
 
     /**
         Returns the string for the given page.
     */
 
     /**
         Returns the string for the given page.
     */
-    wxString GetPageText(size_t nPage);
+    virtual wxString GetPageText(size_t nPage) const;
 
     /**
         Returns the number of rows in the notebook control.
     */
 
     /**
         Returns the number of rows in the notebook control.
     */
-    int GetRowCount();
+    virtual int GetRowCount() const;
 
     /**
         Returns the currently selected page, or -1 if none was selected.
 
     /**
         Returns the currently selected page, or -1 if none was selected.
-        
         Note that this method may return either the previously or newly selected page
         when called from the @c EVT_NOTEBOOK_PAGE_CHANGED handler depending on
         the platform and so
         wxNotebookEvent::GetSelection should be
         used instead in this case.
     */
         Note that this method may return either the previously or newly selected page
         when called from the @c EVT_NOTEBOOK_PAGE_CHANGED handler depending on
         the platform and so
         wxNotebookEvent::GetSelection should be
         used instead in this case.
     */
-    int GetSelection();
+    virtual int GetSelection() const;
 
     /**
         If running under Windows and themes are enabled for the application, this
 
     /**
         If running under Windows and themes are enabled for the application, this
@@ -284,83 +269,110 @@ public:
         can be passed
         to @c SetBackgroundColour. Otherwise, an uninitialised colour will be returned.
     */
         can be passed
         to @c SetBackgroundColour. Otherwise, an uninitialised colour will be returned.
     */
-    wxColour GetThemeBackgroundColour();
+    virtual wxColour GetThemeBackgroundColour() const;
 
     /**
         Returns the index of the tab at the specified position or @c wxNOT_FOUND
 
     /**
         Returns the index of the tab at the specified position or @c wxNOT_FOUND
-        if none. If @e flags parameter is non-@NULL, the position of the point
+        if none. If @a flags parameter is non-@NULL, the position of the point
         inside the tab is returned as well.
         inside the tab is returned as well.
-        
+
         @param pt
         @param pt
-        Specifies the point for the hit test.
-        
+            Specifies the point for the hit test.
         @param flags
         @param flags
-        Return value for detailed information. One of the following values:
-        
-        wxBK_HITTEST_NOWHERE
-        
-        
-        There was no tab under this point.
-        
-        wxBK_HITTEST_ONICON
-        
-        
-        The point was over an icon (currently wxMSW only).
-        
-        wxBK_HITTEST_ONLABEL
-        
-        
-        The point was over a label (currently wxMSW only).
-        
-        wxBK_HITTEST_ONITEM
-        
-        
-        The point was over an item, but not on the label or icon.
-        
-        wxBK_HITTEST_ONPAGE
-        
-        
-        The point was over a currently selected page, not over any tab. Note that this
-        flag is present only if wxNOT_FOUND is returned.
-        
-        @returns Returns the zero-based tab index or wxNOT_FOUND if there is no
-                   tab is at the specified position.
-    */
-    int HitTest(const wxPoint& pt, long flags = @NULL);
+            Return value for detailed information. One of the following values:
+
+
+
+
+
+
+
+            wxBK_HITTEST_NOWHERE
+
+
+
+
+            There was no tab under this point.
+
+
+
+
+
+            wxBK_HITTEST_ONICON
+
+
+
+
+            The point was over an icon (currently wxMSW only).
+
+
+
+
+
+            wxBK_HITTEST_ONLABEL
+
+
+
+
+            The point was over a label (currently wxMSW only).
+
+
+
+
+
+            wxBK_HITTEST_ONITEM
+
+
+
+
+            The point was over an item, but not on the label or icon.
+
+
+
+
+
+            wxBK_HITTEST_ONPAGE
+
+
+
+
+            The point was over a currently selected page, not over any tab. Note that
+        this flag is present only if wxNOT_FOUND is returned.
+
+        @return Returns the zero-based tab index or wxNOT_FOUND if there is no
+                 tab is at the specified position.
+    */
+    virtual int HitTest(const wxPoint& pt, long* = NULL) const;
 
     /**
         Inserts a new page at the specified position.
 
     /**
         Inserts a new page at the specified position.
-        
+
         @param index
         @param index
-        Specifies the position for the new page.
-        
+            Specifies the position for the new page.
         @param page
         @param page
-        Specifies the new page.
-        
+            Specifies the new page.
         @param text
         @param text
-        Specifies the text for the new page.
-        
+            Specifies the text for the new page.
         @param select
         @param select
-        Specifies whether the page should be selected.
-        
+            Specifies whether the page should be selected.
         @param imageId
         @param imageId
-        Specifies the optional image index for the new page.
-        
-        @returns @true if successful, @false otherwise.
-        
+            Specifies the optional image index for the new page.
+
+        @return @true if successful, @false otherwise.
+
         @remarks Do not delete the page, it will be deleted by the notebook.
         @remarks Do not delete the page, it will be deleted by the notebook.
-        
-        @sa AddPage()
+
+        @see AddPage()
     */
     bool InsertPage(size_t index, wxNotebookPage* page,
                     const wxString& text,
     */
     bool InsertPage(size_t index, wxNotebookPage* page,
                     const wxString& text,
-                    bool select = @false,
+                    bool select = false,
                     int imageId = -1);
 
     /**
         An event handler function, called when the page selection is changed.
                     int imageId = -1);
 
     /**
         An event handler function, called when the page selection is changed.
-        
-        @sa wxNotebookEvent
+
+        @see wxNotebookEvent
     */
     void OnSelChange(wxNotebookEvent& event);
 
     */
     void OnSelChange(wxNotebookEvent& event);
 
@@ -372,45 +384,42 @@ public:
     /**
         Sets the image list for the page control. It does not take
         ownership of the image list, you must delete it yourself.
     /**
         Sets the image list for the page control. It does not take
         ownership of the image list, you must delete it yourself.
-        
-        @sa wxImageList, AssignImageList()
+
+        @see wxImageList, AssignImageList()
     */
     void SetImageList(wxImageList* imageList);
 
     /**
         Sets the amount of space around each page's icon and label, in pixels.
     */
     void SetImageList(wxImageList* imageList);
 
     /**
         Sets the amount of space around each page's icon and label, in pixels.
-        
-        @b NB: The vertical padding cannot be changed in wxGTK.
+        @note The vertical padding cannot be changed in wxGTK.
     */
     void SetPadding(const wxSize& padding);
 
     /**
     */
     void SetPadding(const wxSize& padding);
 
     /**
-        Sets the image index for the given page. @e image is an index into
+        Sets the image index for the given page. @a image is an index into
         the image list which was set with SetImageList().
     */
         the image list which was set with SetImageList().
     */
-    bool SetPageImage(size_t page, int image);
+    virtual bool SetPageImage(size_t page, int image);
 
     /**
         Sets the width and height of the pages.
 
     /**
         Sets the width and height of the pages.
-        
-        @b NB: This method is currently not implemented for wxGTK.
+        @note This method is currently not implemented for wxGTK.
     */
     */
-    void SetPageSize(const wxSize& size);
+    virtual void SetPageSize(const wxSize& size);
 
     /**
         Sets the text for the given page.
     */
 
     /**
         Sets the text for the given page.
     */
-    bool SetPageText(size_t page, const wxString& text);
+    virtual bool SetPageText(size_t page, const wxString& text);
 
     /**
         Sets the selection for the given page, returning the previous selection.
 
     /**
         Sets the selection for the given page, returning the previous selection.
-        
         The call to this function generates the page changing events.
         The call to this function generates the page changing events.
-        
         This function is deprecated and should not be used in new code. Please use the
         ChangeSelection() function instead.
         This function is deprecated and should not be used in new code. Please use the
         ChangeSelection() function instead.
-        
-        @sa GetSelection()
+
+        @see GetSelection()
     */
     */
-    int SetSelection(size_t page);
+    virtual int SetSelection(size_t page);
 };
 };
+