1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxNotebook class
4 // Author: Robert Roebling
7 // Copyright: (c) Julian Smart and Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKNOTEBOOKH__
12 #define __GTKNOTEBOOKH__
14 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 class wxGtkNotebookPage
;
25 WX_DECLARE_LIST(wxGtkNotebookPage
, wxGtkNotebookPagesList
);
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 class wxNotebook
: public wxNotebookBase
34 // default for dynamic class
36 // the same arguments as for wxControl
37 wxNotebook(wxWindow
*parent
,
39 const wxPoint
& pos
= wxDefaultPosition
,
40 const wxSize
& size
= wxDefaultSize
,
42 const wxString
& name
= wxT("notebook"));
44 bool Create(wxWindow
*parent
,
46 const wxPoint
& pos
= wxDefaultPosition
,
47 const wxSize
& size
= wxDefaultSize
,
49 const wxString
& name
= wxT("notebook"));
51 virtual ~wxNotebook();
56 // set the currently selected page, return the index of the previously
57 // selected one (or -1 on error)
58 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
59 int SetSelection(size_t nPage
);
60 // get the currently selected page
61 int GetSelection() const;
63 // set/get the title of a page
64 bool SetPageText(size_t nPage
, const wxString
& strText
);
65 wxString
GetPageText(size_t nPage
) const;
67 // sets/returns item's image index in the current image list
68 int GetPageImage(size_t nPage
) const;
69 bool SetPageImage(size_t nPage
, int nImage
);
71 // control the appearance of the notebook pages
72 // set the size (the same for all pages)
73 void SetPageSize(const wxSize
& size
);
74 // set the padding between tabs (in pixels)
75 void SetPadding(const wxSize
& padding
);
76 // sets the size of the tabs (assumes all tabs are the same size)
77 void SetTabSize(const wxSize
& sz
);
79 virtual int HitTest(const wxPoint
& pt
, long *flags
= NULL
) const;
83 // remove one page from the notebook
84 bool DeletePage(size_t nPage
);
86 bool DeleteAllPages();
88 // adds a new page to the notebook (it will be deleted ny the notebook,
89 // don't delete it yourself). If bSelect, this page becomes active.
90 // the same as AddPage(), but adds it at the specified position
91 bool InsertPage( size_t position
,
93 const wxString
& strText
,
97 // handler for tab navigation
98 // --------------------------
99 void OnNavigationKey(wxNavigationKeyEvent
& event
);
102 static wxVisualAttributes
103 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
108 #if wxUSE_CONSTRAINTS
109 void SetConstraintSizes(bool recurse
);
110 bool DoPhase(int phase
);
113 // set all page's font
114 bool SetFont(const wxFont
& font
);
116 void ApplyWidgetStyle();
118 // report if window belongs to notebook
119 bool IsOwnGtkWindow( GdkWindow
*window
);
121 // common part of all ctors
125 wxGtkNotebookPage
* GetNotebookPage(int page
) const;
127 // the additional page data (the pages themselves are in m_pages array)
128 wxGtkNotebookPagesList m_pagesData
;
130 // for reasons explained in gtk/notebook.cpp we store the current
131 // selection internally instead of querying the notebook for it
134 // flag set to TRUE while we're inside "switch_page" callback
138 // remove one page from the notebook but do not destroy it
139 virtual wxNotebookPage
*DoRemovePage(size_t nPage
);
142 // the padding set by SetPadding()
145 DECLARE_DYNAMIC_CLASS(wxNotebook
)
146 DECLARE_EVENT_TABLE()