1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxNotebook class (a.k.a. property sheet, tabbed dialog)
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_NOTEBOOK_H_
12 #define _WX_NOTEBOOK_H_
15 #pragma interface "notebook.h"
18 // ----------------------------------------------------------------------------
20 // ----------------------------------------------------------------------------
21 #include "wx/dynarray.h"
23 #include "wx/control.h"
24 #include "wx/generic/tabg.h"
26 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
31 class WXDLLEXPORT wxImageList
;
32 class WXDLLEXPORT wxWindow
;
34 // array of notebook pages
35 typedef wxWindow wxNotebookPage
; // so far, any window can be a page
36 WX_DEFINE_ARRAY(wxNotebookPage
*, wxArrayPages
);
38 // ----------------------------------------------------------------------------
40 // ----------------------------------------------------------------------------
41 class WXDLLEXPORT wxNotebookEvent
: public wxCommandEvent
44 wxNotebookEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0,
45 int nSel
= -1, int nOldSel
= -1)
46 : wxCommandEvent(commandType
, id
) { m_nSel
= nSel
; m_nOldSel
= nOldSel
; }
49 int GetSelection() const { return m_nSel
; }
50 int GetOldSelection() const { return m_nOldSel
; }
52 void SetSelection(int sel
) { m_nSel
= sel
; }
53 void SetOldSelection(int oldSel
) { m_nOldSel
= oldSel
; }
56 int m_nSel
, // currently selected page
57 m_nOldSel
; // previously selected page
59 DECLARE_DYNAMIC_CLASS(wxNotebookEvent
)
62 // ----------------------------------------------------------------------------
64 // ----------------------------------------------------------------------------
66 class WXDLLEXPORT wxNotebook
;
68 // This reuses wxTabView to draw the tabs.
69 class WXDLLEXPORT wxNotebookTabView
: public wxTabView
71 DECLARE_DYNAMIC_CLASS(wxNotebookTabView
)
73 wxNotebookTabView(wxNotebook
* notebook
, long style
= wxTAB_STYLE_DRAW_BOX
| wxTAB_STYLE_COLOUR_INTERIOR
);
74 ~wxNotebookTabView(void);
76 // Called when a tab is activated
77 virtual void OnTabActivate(int activateId
, int deactivateId
);
80 wxNotebook
* m_notebook
;
83 class wxNotebook
: public wxControl
88 // default for dynamic class
90 // the same arguments as for wxControl (@@@ any special styles?)
91 wxNotebook(wxWindow
*parent
,
93 const wxPoint
& pos
= wxDefaultPosition
,
94 const wxSize
& size
= wxDefaultSize
,
96 const wxString
& name
= "notebook");
98 bool Create(wxWindow
*parent
,
100 const wxPoint
& pos
= wxDefaultPosition
,
101 const wxSize
& size
= wxDefaultSize
,
103 const wxString
& name
= "notebook");
109 // get number of pages in the dialog
110 int GetPageCount() const;
112 // set the currently selected page, return the index of the previously
113 // selected one (or -1 on error)
114 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
115 int SetSelection(int nPage
);
116 // cycle thru the tabs
117 void AdvanceSelection(bool bForward
= TRUE
);
118 // get the currently selected page
119 int GetSelection() const { return m_nSelection
; }
121 // set/get the title of a page
122 bool SetPageText(int nPage
, const wxString
& strText
);
123 wxString
GetPageText(int nPage
) const;
125 // image list stuff: each page may have an image associated with it. All
126 // the images belong to an image list, so you have to
127 // 1) create an image list
128 // 2) associate it with the notebook
129 // 3) set for each page it's image
130 // associate image list with a control
131 void SetImageList(wxImageList
* imageList
);
132 // get pointer (may be NULL) to the associated image list
133 wxImageList
* GetImageList() const { return m_pImageList
; }
135 // sets/returns item's image index in the current image list
136 int GetPageImage(int nPage
) const;
137 bool SetPageImage(int nPage
, int nImage
);
139 // currently it's always 1 because wxGTK doesn't support multi-row
141 int GetRowCount() const;
143 // control the appearance of the notebook pages
144 // set the size (the same for all pages)
145 void SetPageSize(const wxSize
& size
);
146 // set the padding between tabs (in pixels)
147 void SetPadding(const wxSize
& padding
);
151 // remove one page from the notebook
152 bool DeletePage(int nPage
);
154 bool DeleteAllPages();
155 // adds a new page to the notebook (it will be deleted ny the notebook,
156 // don't delete it yourself). If bSelect, this page becomes active.
157 bool AddPage(wxNotebookPage
*pPage
,
158 const wxString
& strText
,
159 bool bSelect
= FALSE
,
161 // the same as AddPage(), but adds it at the specified position
162 bool InsertPage(int nPage
,
163 wxNotebookPage
*pPage
,
164 const wxString
& strText
,
165 bool bSelect
= FALSE
,
167 // get the panel which represents the given page
168 wxNotebookPage
*GetPage(int nPage
) { return m_aPages
[nPage
]; }
172 void OnSize(wxSizeEvent
& event
);
173 void OnSelChange(wxNotebookEvent
& event
);
174 void OnSetFocus(wxFocusEvent
& event
);
175 void OnNavigationKey(wxNavigationKeyEvent
& event
);
177 // base class virtuals
178 // -------------------
179 virtual void Command(wxCommandEvent
& event
);
180 virtual void SetConstraintSizes(bool recurse
= TRUE
);
181 virtual bool DoPhase(int nPhase
);
185 // wxNotebook on Motif uses a generic wxTabView to implement itself.
186 inline wxTabView
*GetTabView() const { return m_tabView
; }
187 inline void SetTabView(wxTabView
*v
) { m_tabView
= v
; }
189 void OnMouseEvent(wxMouseEvent
& event
);
190 void OnPaint(wxPaintEvent
& event
);
192 virtual void ChangeFont(bool keepOriginalSize
= TRUE
);
193 virtual void ChangeBackgroundColour();
194 virtual void ChangeForegroundColour();
195 virtual wxRect
GetAvailableClientSize();
198 // common part of all ctors
202 void ChangePage(int nOldSel
, int nSel
); // change pages
204 wxImageList
*m_pImageList
; // we can have an associated image list
205 wxArrayPages m_aPages
; // array of pages
207 int m_nSelection
; // the current selection (-1 if none)
209 wxTabView
* m_tabView
;
211 DECLARE_DYNAMIC_CLASS(wxNotebook
)
212 DECLARE_EVENT_TABLE()
215 // ----------------------------------------------------------------------------
217 // ----------------------------------------------------------------------------
218 typedef void (wxEvtHandler::*wxNotebookEventFunction
)(wxNotebookEvent
&);
220 #define EVT_NOTEBOOK_PAGE_CHANGED(id, fn) \
222 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, \
225 (wxObjectEventFunction)(wxEventFunction)(wxNotebookEventFunction) &fn, \
229 #define EVT_NOTEBOOK_PAGE_CHANGING(id, fn) \
231 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, \ \
234 (wxObjectEventFunction)(wxEventFunction)(wxNotebookEventFunction) &fn, \
238 #endif // _WX_NOTEBOOK_H_