]>
Commit | Line | Data |
---|---|---|
b5f2afe5 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: msw/notebook.h | |
3 | // Purpose: MSW/GTK compatible notebook (a.k.a. property sheet) | |
4 | // Author: Robert Roebling | |
5 | // Modified by: Vadim Zeitlin for Windows version | |
6 | // RCS-ID: $Id$ | |
371a5b4e | 7 | // Copyright: (c) Julian Smart |
65571936 | 8 | // Licence: wxWindows licence |
b5f2afe5 VZ |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | #ifndef _NOTEBOOK_H | |
12 | #define _NOTEBOOK_H | |
13 | ||
1e6feb95 VZ |
14 | #if wxUSE_NOTEBOOK |
15 | ||
b5f2afe5 VZ |
16 | // ---------------------------------------------------------------------------- |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
74b31181 | 19 | |
7c0ea335 | 20 | #include "wx/control.h" |
b5f2afe5 | 21 | |
b5f2afe5 VZ |
22 | // ---------------------------------------------------------------------------- |
23 | // wxNotebook | |
24 | // ---------------------------------------------------------------------------- | |
25 | ||
8acd402f SC |
26 | class WXDLLEXPORT wxNotebookPageInfo : public wxObject |
27 | { | |
28 | public : | |
3839f37e | 29 | wxNotebookPageInfo() { m_page = NULL; m_imageId = -1; m_selected = false; } |
8acd402f SC |
30 | virtual ~wxNotebookPageInfo() { } |
31 | ||
3839f37e VZ |
32 | void Create(wxNotebookPage *page, |
33 | const wxString& text, | |
34 | bool selected, | |
35 | int imageId) | |
36 | { | |
37 | m_page = page; | |
38 | m_text = text; | |
39 | m_selected = selected; | |
40 | m_imageId = imageId; | |
41 | } | |
42 | ||
43 | wxNotebookPage* GetPage() const { return m_page; } | |
44 | wxString GetText() const { return m_text; } | |
45 | bool GetSelected() const { return m_selected; } | |
8acd402f | 46 | int GetImageId() const { return m_imageId; } |
8acd402f | 47 | |
3839f37e VZ |
48 | private: |
49 | wxNotebookPage *m_page; | |
50 | wxString m_text; | |
51 | bool m_selected; | |
52 | int m_imageId; | |
53 | ||
54 | DECLARE_DYNAMIC_CLASS(wxNotebookPageInfo) | |
55 | }; | |
8acd402f SC |
56 | |
57 | ||
91c9dbdc | 58 | WX_DECLARE_EXPORTED_LIST(wxNotebookPageInfo, wxNotebookPageInfoList ); |
8acd402f | 59 | |
1e6feb95 | 60 | class WXDLLEXPORT wxNotebook : public wxNotebookBase |
b5f2afe5 VZ |
61 | { |
62 | public: | |
63 | // ctors | |
64 | // ----- | |
65 | // default for dynamic class | |
66 | wxNotebook(); | |
67 | // the same arguments as for wxControl (@@@ any special styles?) | |
68 | wxNotebook(wxWindow *parent, | |
35eca07c | 69 | wxWindowID id, |
b5f2afe5 VZ |
70 | const wxPoint& pos = wxDefaultPosition, |
71 | const wxSize& size = wxDefaultSize, | |
debe6624 | 72 | long style = 0, |
630ad6c6 | 73 | const wxString& name = wxNotebookNameStr); |
b5f2afe5 VZ |
74 | // Create() function |
75 | bool Create(wxWindow *parent, | |
35eca07c | 76 | wxWindowID id, |
b5f2afe5 VZ |
77 | const wxPoint& pos = wxDefaultPosition, |
78 | const wxSize& size = wxDefaultSize, | |
debe6624 | 79 | long style = 0, |
630ad6c6 | 80 | const wxString& name = wxNotebookNameStr); |
caf95d2a | 81 | virtual ~wxNotebook(); |
b5f2afe5 VZ |
82 | |
83 | // accessors | |
84 | // --------- | |
85 | // get number of pages in the dialog | |
8d34bf5c | 86 | virtual size_t GetPageCount() const; |
b5f2afe5 VZ |
87 | |
88 | // set the currently selected page, return the index of the previously | |
89 | // selected one (or -1 on error) | |
90 | // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events | |
15aad3b9 | 91 | int SetSelection(size_t nPage); |
b5f2afe5 VZ |
92 | // get the currently selected page |
93 | int GetSelection() const { return m_nSelection; } | |
94 | ||
95 | // set/get the title of a page | |
15aad3b9 VZ |
96 | bool SetPageText(size_t nPage, const wxString& strText); |
97 | wxString GetPageText(size_t nPage) const; | |
b5f2afe5 VZ |
98 | |
99 | // image list stuff: each page may have an image associated with it. All | |
100 | // the images belong to an image list, so you have to | |
101 | // 1) create an image list | |
102 | // 2) associate it with the notebook | |
103 | // 3) set for each page it's image | |
104 | // associate image list with a control | |
105 | void SetImageList(wxImageList* imageList); | |
b5f2afe5 VZ |
106 | |
107 | // sets/returns item's image index in the current image list | |
15aad3b9 VZ |
108 | int GetPageImage(size_t nPage) const; |
109 | bool SetPageImage(size_t nPage, int nImage); | |
b5f2afe5 | 110 | |
b5f2afe5 VZ |
111 | // currently it's always 1 because wxGTK doesn't support multi-row |
112 | // tab controls | |
113 | int GetRowCount() const; | |
114 | ||
115 | // control the appearance of the notebook pages | |
116 | // set the size (the same for all pages) | |
117 | void SetPageSize(const wxSize& size); | |
118 | // set the padding between tabs (in pixels) | |
119 | void SetPadding(const wxSize& padding); | |
120 | ||
121 | // operations | |
122 | // ---------- | |
b5f2afe5 VZ |
123 | // remove all pages |
124 | bool DeleteAllPages(); | |
e450aa69 | 125 | |
efa14cf2 | 126 | // inserts a new page to the notebook (it will be deleted ny the notebook, |
b5f2afe5 | 127 | // don't delete it yourself). If bSelect, this page becomes active. |
15aad3b9 | 128 | bool InsertPage(size_t nPage, |
b5f2afe5 VZ |
129 | wxNotebookPage *pPage, |
130 | const wxString& strText, | |
078cf5cb | 131 | bool bSelect = false, |
8a33ea62 | 132 | int imageId = -1); |
b5f2afe5 | 133 | |
3839f37e VZ |
134 | void AddPageInfo( wxNotebookPageInfo* info ) { AddPage( info->GetPage() , info->GetText() , info->GetSelected() , info->GetImageId() ); } |
135 | const wxNotebookPageInfoList& GetPageInfos() const; | |
8acd402f | 136 | |
58a8ab88 JS |
137 | // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH |
138 | // style. | |
139 | void SetTabSize(const wxSize& sz); | |
140 | ||
e450aa69 VZ |
141 | // hit test |
142 | virtual int HitTest(const wxPoint& pt, long *flags = NULL) const; | |
143 | ||
144 | // calculate the size of the notebook from the size of its page | |
2ce7af35 JS |
145 | virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const; |
146 | ||
b5f2afe5 VZ |
147 | // callbacks |
148 | // --------- | |
9026ad85 | 149 | void OnSize(wxSizeEvent& event); |
b5f2afe5 | 150 | void OnSelChange(wxNotebookEvent& event); |
8a33ea62 | 151 | void OnNavigationKey(wxNavigationKeyEvent& event); |
35eca07c | 152 | |
b5f2afe5 VZ |
153 | // base class virtuals |
154 | // ------------------- | |
0b481c72 | 155 | |
a23fd0e1 | 156 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
0df3fbd7 VZ |
157 | virtual bool MSWOnScroll(int orientation, WXWORD nSBCode, |
158 | WXWORD pos, WXHWND control); | |
b8bdaa7c | 159 | virtual bool MSWTranslateMessage(WXMSG *wxmsg); |
0b481c72 VZ |
160 | |
161 | #if wxUSE_CONSTRAINTS | |
078cf5cb | 162 | virtual void SetConstraintSizes(bool recurse = true); |
5475b960 | 163 | virtual bool DoPhase(int nPhase); |
0b481c72 | 164 | #endif // wxUSE_CONSTRAINTS |
b5f2afe5 | 165 | |
25057aba JS |
166 | // Attempts to get colour for UX theme page background |
167 | wxColour GetThemeBackgroundColour() const; | |
caf95d2a VZ |
168 | |
169 | // implementation only | |
170 | // ------------------- | |
171 | ||
172 | #if wxUSE_UXTHEME | |
c4a95f6f VZ |
173 | virtual bool SetBackgroundColour(const wxColour& colour) |
174 | { | |
175 | if ( !wxNotebookBase::SetBackgroundColour(colour) ) | |
176 | return false; | |
caf95d2a | 177 | |
c4a95f6f | 178 | UpdateBgBrush(); |
9b7d2b81 | 179 | |
c4a95f6f VZ |
180 | return true; |
181 | } | |
caf95d2a VZ |
182 | #endif // wxUSE_UXTHEME |
183 | ||
b5f2afe5 VZ |
184 | protected: |
185 | // common part of all ctors | |
186 | void Init(); | |
187 | ||
0df3fbd7 VZ |
188 | // translate wxWin styles to the Windows ones |
189 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const; | |
190 | ||
1e6feb95 | 191 | // remove one page from the notebook, without deleting |
15aad3b9 | 192 | virtual wxNotebookPage *DoRemovePage(size_t nPage); |
1e6feb95 | 193 | |
c3732409 VZ |
194 | // get the page rectangle for the current notebook size |
195 | // | |
196 | // returns empty rectangle if an error occurs, do test for it | |
197 | wxRect GetPageSize() const; | |
198 | ||
2015f2b3 VZ |
199 | // set the size of the given page to fit in the notebook |
200 | void AdjustPageSize(wxNotebookPage *page); | |
201 | ||
ffafd8a5 | 202 | #if wxUSE_UXTHEME |
de359565 VZ |
203 | // gets the bitmap of notebook background and returns a brush from it |
204 | WXHBRUSH QueryBgBitmap(); | |
c4a95f6f | 205 | |
caf95d2a VZ |
206 | // creates the brush to be used for drawing the tab control background |
207 | void UpdateBgBrush(); | |
07c19327 | 208 | |
c3732409 | 209 | // return the themed brush for painting our children |
2bae4332 | 210 | virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, WXHWND hWnd); |
c3732409 VZ |
211 | |
212 | // draw child background | |
213 | virtual bool MSWPrintChild(WXHDC hDC, wxWindow *win); | |
214 | ||
215 | // common part of QueryBgBitmap() and MSWPrintChild() | |
216 | // | |
217 | // if child == NULL, draw background for the entire notebook itself | |
218 | bool DoDrawBackground(WXHDC hDC, wxWindow *child = NULL); | |
caf95d2a | 219 | #endif // wxUSE_UXTHEME |
2015f2b3 | 220 | |
dfb47d83 VZ |
221 | // these function are only used for reducing flicker on notebook resize and |
222 | // we don't need to do this for WinCE | |
223 | #ifndef __WXWINCE__ | |
224 | void OnEraseBackground(wxEraseEvent& event); | |
225 | void OnPaint(wxPaintEvent& event); | |
226 | ||
227 | // true if we have already subclassed our updown control | |
228 | bool m_hasSubclassedUpdown; | |
229 | #endif // __WXWINCE__ | |
230 | ||
2b5f62a0 VZ |
231 | // the current selection (-1 if none) |
232 | int m_nSelection; | |
b5f2afe5 | 233 | |
caf95d2a VZ |
234 | wxNotebookPageInfoList m_pageInfos; |
235 | ||
236 | #if wxUSE_UXTHEME | |
237 | // background brush used to paint the tab control | |
238 | WXHBRUSH m_hbrBackground; | |
239 | #endif // wxUSE_UXTHEME | |
8acd402f | 240 | |
2015f2b3 | 241 | |
fc7a2a60 | 242 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook) |
b5f2afe5 VZ |
243 | DECLARE_EVENT_TABLE() |
244 | }; | |
245 | ||
1e6feb95 VZ |
246 | #endif // wxUSE_NOTEBOOK |
247 | ||
b5f2afe5 | 248 | #endif // _NOTEBOOK_H |