]>
Commit | Line | Data |
---|---|---|
53b28675 | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/gtk/notebook.cpp |
53b28675 RR |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
a81258be | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin |
65571936 | 7 | // Licence: wxWindows licence |
53b28675 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
88a7a4e1 WS |
13 | #if wxUSE_NOTEBOOK |
14 | ||
53b28675 | 15 | #include "wx/notebook.h" |
dcf924a3 | 16 | |
88a7a4e1 WS |
17 | #ifndef WX_PRECOMP |
18 | #include "wx/intl.h" | |
e4db172a | 19 | #include "wx/log.h" |
de6185e2 | 20 | #include "wx/utils.h" |
246c5004 | 21 | #include "wx/msgdlg.h" |
0bca0373 | 22 | #include "wx/bitmap.h" |
88a7a4e1 | 23 | #endif |
dcf924a3 | 24 | |
53b28675 | 25 | #include "wx/imaglist.h" |
c077ee94 | 26 | #include "wx/fontutil.h" |
83624f79 | 27 | |
9e691f46 | 28 | #include "wx/gtk/private.h" |
9e691f46 | 29 | |
219f895a | 30 | //----------------------------------------------------------------------------- |
80a58c99 | 31 | // wxGtkNotebookPage |
219f895a RR |
32 | //----------------------------------------------------------------------------- |
33 | ||
07b8d7ec VZ |
34 | // VZ: this is rather ugly as we keep the pages themselves in an array (it |
35 | // allows us to have quite a few functions implemented in the base class) | |
36 | // but the page data is kept in a separate list, so we must maintain them | |
37 | // in sync manually... of course, the list had been there before the base | |
38 | // class which explains it but it still would be nice to do something | |
39 | // about this one day | |
40 | ||
80a58c99 | 41 | class wxGtkNotebookPage: public wxObject |
219f895a RR |
42 | { |
43 | public: | |
c58d2238 PC |
44 | GtkWidget* m_box; |
45 | GtkWidget* m_label; | |
46 | GtkWidget* m_image; | |
47 | int m_imageIndex; | |
219f895a RR |
48 | }; |
49 | ||
c077ee94 | 50 | |
07b8d7ec | 51 | #include "wx/listimpl.cpp" |
28c91b7d | 52 | WX_DEFINE_LIST(wxGtkNotebookPagesList) |
07b8d7ec | 53 | |
75c6febf PC |
54 | extern "C" { |
55 | static void event_after(GtkNotebook*, GdkEvent*, wxNotebook*); | |
56 | } | |
c077ee94 | 57 | |
ff829f3f | 58 | //----------------------------------------------------------------------------- |
5b011451 | 59 | // "switch_page" |
ff829f3f VZ |
60 | //----------------------------------------------------------------------------- |
61 | ||
865bb325 | 62 | extern "C" { |
75c6febf PC |
63 | static void |
64 | switch_page_after(GtkWidget* widget, GtkNotebookPage*, guint, wxNotebook* win) | |
ff829f3f | 65 | { |
75c6febf PC |
66 | g_signal_handlers_block_by_func(widget, (void*)switch_page_after, win); |
67 | win->SendPageChangedEvent(win->m_oldSelection); | |
68 | } | |
69 | } | |
36202885 | 70 | |
75c6febf PC |
71 | extern "C" { |
72 | static void | |
73 | switch_page(GtkNotebook* widget, GtkNotebookPage*, int page, wxNotebook* win) | |
74 | { | |
75 | win->m_oldSelection = gtk_notebook_get_current_page(widget); | |
76 | ||
77 | if (win->SendPageChangingEvent(page)) | |
78 | // allow change, unblock handler for changed event | |
79 | g_signal_handlers_unblock_by_func(widget, (void*)switch_page_after, win); | |
1d6fcbcc | 80 | else |
75c6febf PC |
81 | // change vetoed, unblock handler to set selection back |
82 | g_signal_handlers_unblock_by_func(widget, (void*)event_after, win); | |
c9882624 RR |
83 | } |
84 | } | |
ef44a621 | 85 | |
75c6febf PC |
86 | //----------------------------------------------------------------------------- |
87 | // "event_after" from m_widget | |
88 | //----------------------------------------------------------------------------- | |
89 | ||
c9882624 | 90 | extern "C" { |
75c6febf | 91 | static void event_after(GtkNotebook* widget, GdkEvent*, wxNotebook* win) |
c9882624 | 92 | { |
75c6febf PC |
93 | g_signal_handlers_block_by_func(widget, (void*)event_after, win); |
94 | g_signal_handlers_block_by_func(widget, (void*)switch_page, win); | |
95 | ||
96 | // restore previous selection | |
97 | gtk_notebook_set_current_page(widget, win->m_oldSelection); | |
98 | ||
99 | g_signal_handlers_unblock_by_func(widget, (void*)switch_page, win); | |
ff829f3f | 100 | } |
865bb325 | 101 | } |
ff829f3f | 102 | |
6ca41e57 RR |
103 | //----------------------------------------------------------------------------- |
104 | // InsertChild callback for wxNotebook | |
105 | //----------------------------------------------------------------------------- | |
106 | ||
c821db16 | 107 | static void wxInsertChildInNotebook(wxWindow* parent, wxWindow* child) |
6ca41e57 | 108 | { |
fff8475e RD |
109 | // Hack Alert! (Part I): This sets the notebook as the parent of the child |
110 | // widget, and takes care of some details such as updating the state and | |
111 | // style of the child to reflect its new location. We do this early | |
112 | // because without it GetBestSize (which is used to set the initial size | |
113 | // of controls if an explicit size is not given) will often report | |
114 | // incorrect sizes since the widget's style context is not fully known. | |
115 | // See bug #901694 for details | |
2ded391d | 116 | // (http://sourceforge.net/tracker/?func=detail&aid=901694&group_id=9863&atid=109863) |
fff8475e RD |
117 | gtk_widget_set_parent(child->m_widget, parent->m_widget); |
118 | ||
119 | // NOTE: This should be considered a temporary workaround until we can | |
120 | // work out the details and implement delaying the setting of the initial | |
121 | // size of widgets until the size is really needed. | |
6ca41e57 RR |
122 | } |
123 | ||
53b28675 RR |
124 | //----------------------------------------------------------------------------- |
125 | // wxNotebook | |
126 | //----------------------------------------------------------------------------- | |
127 | ||
8dba4c72 | 128 | IMPLEMENT_DYNAMIC_CLASS(wxNotebook,wxBookCtrlBase) |
53b28675 | 129 | |
8dba4c72 | 130 | BEGIN_EVENT_TABLE(wxNotebook, wxBookCtrlBase) |
b98d804b RR |
131 | EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey) |
132 | END_EVENT_TABLE() | |
f861258f | 133 | |
ff829f3f | 134 | void wxNotebook::Init() |
53b28675 | 135 | { |
b318dc42 | 136 | m_padding = 0; |
c9882624 | 137 | m_oldSelection = -1; |
de6185e2 | 138 | m_themeEnabled = true; |
ff829f3f VZ |
139 | } |
140 | ||
141 | wxNotebook::wxNotebook() | |
142 | { | |
b292e2f5 | 143 | Init(); |
ff7b1510 | 144 | } |
53b28675 | 145 | |
debe6624 | 146 | wxNotebook::wxNotebook( wxWindow *parent, wxWindowID id, |
53b28675 | 147 | const wxPoint& pos, const wxSize& size, |
debe6624 | 148 | long style, const wxString& name ) |
53b28675 | 149 | { |
b292e2f5 RR |
150 | Init(); |
151 | Create( parent, id, pos, size, style, name ); | |
ff7b1510 | 152 | } |
53b28675 | 153 | |
ff829f3f | 154 | wxNotebook::~wxNotebook() |
53b28675 | 155 | { |
b292e2f5 | 156 | DeleteAllPages(); |
ff7b1510 | 157 | } |
53b28675 | 158 | |
debe6624 | 159 | bool wxNotebook::Create(wxWindow *parent, wxWindowID id, |
07b8d7ec VZ |
160 | const wxPoint& pos, const wxSize& size, |
161 | long style, const wxString& name ) | |
53b28675 | 162 | { |
c821db16 | 163 | m_insertCallback = wxInsertChildInNotebook; |
b292e2f5 | 164 | |
90f9b8ef JS |
165 | if ( (style & wxBK_ALIGN_MASK) == wxBK_DEFAULT ) |
166 | style |= wxBK_TOP; | |
167 | ||
4dcaf11a RR |
168 | if (!PreCreation( parent, pos, size ) || |
169 | !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) | |
170 | { | |
223d09f6 | 171 | wxFAIL_MSG( wxT("wxNoteBook creation failed") ); |
de6185e2 | 172 | return false; |
4dcaf11a RR |
173 | } |
174 | ||
ff829f3f | 175 | |
b292e2f5 | 176 | m_widget = gtk_notebook_new(); |
9ff9d30c | 177 | g_object_ref(m_widget); |
53b28675 | 178 | |
b292e2f5 | 179 | gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget), 1 ); |
caac5181 | 180 | |
9fa72bd2 | 181 | g_signal_connect (m_widget, "switch_page", |
75c6febf | 182 | G_CALLBACK(switch_page), this); |
c9882624 RR |
183 | |
184 | g_signal_connect_after (m_widget, "switch_page", | |
75c6febf PC |
185 | G_CALLBACK(switch_page_after), this); |
186 | g_signal_handlers_block_by_func(m_widget, (void*)switch_page_after, this); | |
187 | ||
188 | g_signal_connect(m_widget, "event_after", G_CALLBACK(event_after), this); | |
189 | g_signal_handlers_block_by_func(m_widget, (void*)event_after, this); | |
ff829f3f | 190 | |
f03fc89f | 191 | m_parent->DoAddChild( this ); |
ef44a621 | 192 | |
df034cc6 | 193 | if (m_windowStyle & wxBK_RIGHT) |
8712c6e7 | 194 | gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_RIGHT ); |
df034cc6 | 195 | if (m_windowStyle & wxBK_LEFT) |
8712c6e7 | 196 | gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_LEFT ); |
df034cc6 | 197 | if (m_windowStyle & wxBK_BOTTOM) |
8712c6e7 | 198 | gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_BOTTOM ); |
a3a7f879 | 199 | |
abdeb9e7 | 200 | PostCreation(size); |
ff829f3f | 201 | |
de6185e2 | 202 | return true; |
ff7b1510 | 203 | } |
53b28675 | 204 | |
ff829f3f | 205 | int wxNotebook::GetSelection() const |
53b28675 | 206 | { |
223d09f6 | 207 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid notebook") ); |
53b28675 | 208 | |
c9882624 | 209 | return gtk_notebook_get_current_page( GTK_NOTEBOOK(m_widget) ); |
ff7b1510 | 210 | } |
53b28675 | 211 | |
789d0a3d | 212 | wxString wxNotebook::GetPageText( size_t page ) const |
53b28675 | 213 | { |
c58d2238 | 214 | wxCHECK_MSG(page < GetPageCount(), wxEmptyString, "invalid notebook index"); |
ef44a621 | 215 | |
c58d2238 PC |
216 | GtkLabel* label = GTK_LABEL(GetNotebookPage(page)->m_label); |
217 | return wxGTK_CONV_BACK(gtk_label_get_text(label)); | |
ff7b1510 | 218 | } |
53b28675 | 219 | |
789d0a3d | 220 | int wxNotebook::GetPageImage( size_t page ) const |
53b28675 | 221 | { |
c58d2238 | 222 | wxCHECK_MSG(page < GetPageCount(), -1, "invalid notebook index"); |
a81258be | 223 | |
c58d2238 | 224 | return GetNotebookPage(page)->m_imageIndex; |
ff7b1510 | 225 | } |
53b28675 | 226 | |
80a58c99 | 227 | wxGtkNotebookPage* wxNotebook::GetNotebookPage( int page ) const |
53b28675 | 228 | { |
07b8d7ec | 229 | return m_pagesData.Item(page)->GetData(); |
ff7b1510 | 230 | } |
53b28675 | 231 | |
1d6fcbcc | 232 | int wxNotebook::DoSetSelection( size_t page, int flags ) |
53b28675 | 233 | { |
c58d2238 | 234 | wxCHECK_MSG(page < GetPageCount(), -1, "invalid notebook index"); |
ff829f3f | 235 | |
587ce561 | 236 | int selOld = GetSelection(); |
a6aa9b1e | 237 | |
1d6fcbcc | 238 | if ( !(flags & SetSelection_SendEvent) ) |
c9882624 | 239 | { |
75c6febf | 240 | g_signal_handlers_block_by_func(m_widget, (void*)switch_page, this); |
c9882624 | 241 | } |
1d6fcbcc | 242 | |
38f1df7c | 243 | gtk_notebook_set_current_page( GTK_NOTEBOOK(m_widget), page ); |
ff829f3f | 244 | |
1d6fcbcc VZ |
245 | if ( !(flags & SetSelection_SendEvent) ) |
246 | { | |
75c6febf | 247 | g_signal_handlers_unblock_by_func(m_widget, (void*)switch_page, this); |
1d6fcbcc | 248 | } |
1d6fcbcc | 249 | |
07b8d7ec VZ |
250 | wxNotebookPage *client = GetPage(page); |
251 | if ( client ) | |
252 | client->SetFocus(); | |
b656febd | 253 | |
07b8d7ec | 254 | return selOld; |
ff7b1510 | 255 | } |
53b28675 | 256 | |
789d0a3d | 257 | bool wxNotebook::SetPageText( size_t page, const wxString &text ) |
53b28675 | 258 | { |
c58d2238 | 259 | wxCHECK_MSG(page < GetPageCount(), false, "invalid notebook index"); |
ff829f3f | 260 | |
c58d2238 PC |
261 | GtkLabel* label = GTK_LABEL(GetNotebookPage(page)->m_label); |
262 | gtk_label_set_text(label, wxGTK_CONV(text)); | |
a6aa9b1e | 263 | |
de6185e2 | 264 | return true; |
ff7b1510 | 265 | } |
53b28675 | 266 | |
789d0a3d | 267 | bool wxNotebook::SetPageImage( size_t page, int image ) |
53b28675 | 268 | { |
c58d2238 | 269 | wxCHECK_MSG(page < GetPageCount(), false, "invalid notebook index"); |
f861258f | 270 | |
c58d2238 PC |
271 | wxGtkNotebookPage* pageData = GetNotebookPage(page); |
272 | if (image >= 0) | |
3eb78d7e | 273 | { |
c58d2238 PC |
274 | wxCHECK_MSG(m_imageList, false, "invalid notebook imagelist"); |
275 | const wxBitmap* bitmap = m_imageList->GetBitmapPtr(image); | |
276 | if (bitmap == NULL) | |
277 | return false; | |
278 | if (pageData->m_image) | |
8712c6e7 | 279 | { |
c58d2238 PC |
280 | gtk_image_set_from_pixbuf( |
281 | GTK_IMAGE(pageData->m_image), bitmap->GetPixbuf()); | |
8712c6e7 | 282 | } |
c58d2238 | 283 | else |
8712c6e7 | 284 | { |
c58d2238 PC |
285 | pageData->m_image = gtk_image_new_from_pixbuf(bitmap->GetPixbuf()); |
286 | gtk_widget_show(pageData->m_image); | |
287 | gtk_box_pack_start(GTK_BOX(pageData->m_box), | |
288 | pageData->m_image, false, false, m_padding); | |
3eb78d7e RR |
289 | } |
290 | } | |
c58d2238 | 291 | else if (pageData->m_image) |
3eb78d7e | 292 | { |
c58d2238 PC |
293 | gtk_widget_destroy(pageData->m_image); |
294 | pageData->m_image = NULL; | |
3eb78d7e | 295 | } |
c58d2238 | 296 | pageData->m_imageIndex = image; |
53b28675 | 297 | |
de6185e2 | 298 | return true; |
ff7b1510 | 299 | } |
53b28675 RR |
300 | |
301 | void wxNotebook::SetPageSize( const wxSize &WXUNUSED(size) ) | |
302 | { | |
223d09f6 | 303 | wxFAIL_MSG( wxT("wxNotebook::SetPageSize not implemented") ); |
ff7b1510 | 304 | } |
53b28675 | 305 | |
b318dc42 | 306 | void wxNotebook::SetPadding( const wxSize &padding ) |
53b28675 | 307 | { |
b318dc42 JS |
308 | wxCHECK_RET( m_widget != NULL, wxT("invalid notebook") ); |
309 | ||
310 | m_padding = padding.GetWidth(); | |
311 | ||
c58d2238 | 312 | for (size_t i = GetPageCount(); i--;) |
b318dc42 | 313 | { |
c58d2238 PC |
314 | wxGtkNotebookPage* pageData = GetNotebookPage(i); |
315 | if (pageData->m_image) | |
b318dc42 | 316 | { |
c58d2238 PC |
317 | gtk_box_set_child_packing(GTK_BOX(pageData->m_box), |
318 | pageData->m_image, false, false, m_padding, GTK_PACK_START); | |
b318dc42 | 319 | } |
c58d2238 PC |
320 | gtk_box_set_child_packing(GTK_BOX(pageData->m_box), |
321 | pageData->m_label, false, false, m_padding, GTK_PACK_END); | |
b318dc42 | 322 | } |
ff7b1510 | 323 | } |
53b28675 | 324 | |
74e3313b | 325 | void wxNotebook::SetTabSize(const wxSize& WXUNUSED(sz)) |
ca8b28f2 | 326 | { |
223d09f6 | 327 | wxFAIL_MSG( wxT("wxNotebook::SetTabSize not implemented") ); |
ca8b28f2 JS |
328 | } |
329 | ||
ff829f3f | 330 | bool wxNotebook::DeleteAllPages() |
53b28675 | 331 | { |
c58d2238 PC |
332 | for (size_t i = GetPageCount(); i--;) |
333 | DeletePage(i); | |
a81258be | 334 | |
10199e27 | 335 | return wxNotebookBase::DeleteAllPages(); |
ff7b1510 | 336 | } |
53b28675 | 337 | |
acb69c13 | 338 | wxNotebookPage *wxNotebook::DoRemovePage( size_t page ) |
53b28675 | 339 | { |
a27555e4 RR |
340 | // We cannot remove the page yet, as GTK sends the "switch_page" |
341 | // signal before it has removed the notebook-page from its | |
342 | // corresponding list. Thus, if we were to remove the page from | |
343 | // m_pages at this point, the two lists of pages would be out | |
344 | // of sync during the PAGE_CHANGING/PAGE_CHANGED events. | |
345 | wxNotebookPage *client = GetPage(page); | |
10199e27 VZ |
346 | if ( !client ) |
347 | return NULL; | |
fed46e72 | 348 | |
07b8d7ec | 349 | gtk_widget_unrealize( client->m_widget ); |
9c862cfb RR |
350 | |
351 | // we don't need to unparent the client->m_widget; GTK+ will do | |
352 | // that for us (and will throw a warning if we do it!) | |
587ce561 | 353 | gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget), page ); |
ff829f3f | 354 | |
a27555e4 RR |
355 | // It's safe to remove the page now. |
356 | wxASSERT_MSG(GetPage(page) == client, wxT("pages changed during delete")); | |
357 | wxNotebookBase::DoRemovePage(page); | |
358 | ||
222ed1d6 MB |
359 | wxGtkNotebookPage* p = GetNotebookPage(page); |
360 | m_pagesData.DeleteObject(p); | |
361 | delete p; | |
a27555e4 | 362 | |
07b8d7ec | 363 | return client; |
ff7b1510 | 364 | } |
53b28675 | 365 | |
789d0a3d | 366 | bool wxNotebook::InsertPage( size_t position, |
07b8d7ec VZ |
367 | wxNotebookPage* win, |
368 | const wxString& text, | |
369 | bool select, | |
370 | int imageId ) | |
53b28675 | 371 | { |
de6185e2 | 372 | wxCHECK_MSG( m_widget != NULL, false, wxT("invalid notebook") ); |
a81258be | 373 | |
de6185e2 | 374 | wxCHECK_MSG( win->GetParent() == this, false, |
223d09f6 | 375 | wxT("Can't add a page whose parent is not the notebook!") ); |
8aadf227 | 376 | |
de6185e2 | 377 | wxCHECK_MSG( position <= GetPageCount(), false, |
07b8d7ec VZ |
378 | _T("invalid page index in wxNotebookPage::InsertPage()") ); |
379 | ||
fff8475e | 380 | // Hack Alert! (Part II): See above in wxInsertChildInNotebook callback |
9ff9d30c PC |
381 | // why this has to be done. |
382 | gtk_widget_unparent(win->m_widget); | |
d7f1759a | 383 | |
a2d93e73 | 384 | if (m_themeEnabled) |
de6185e2 | 385 | win->SetThemeEnabled(true); |
a2d93e73 | 386 | |
587ce561 | 387 | GtkNotebook *notebook = GTK_NOTEBOOK(m_widget); |
53b28675 | 388 | |
c58d2238 | 389 | wxGtkNotebookPage* pageData = new wxGtkNotebookPage; |
a6aa9b1e | 390 | |
07b8d7ec | 391 | m_pages.Insert(win, position); |
c58d2238 | 392 | m_pagesData.Insert(position, pageData); |
8aadf227 | 393 | |
f986fe76 VZ |
394 | // set the label image and text |
395 | // this must be done before adding the page, as GetPageText | |
396 | // and GetPageImage will otherwise return wrong values in | |
397 | // the page-changed event that results from inserting the | |
398 | // first page. | |
c58d2238 | 399 | pageData->m_imageIndex = imageId; |
f986fe76 | 400 | |
c58d2238 PC |
401 | pageData->m_box = gtk_hbox_new(false, 1); |
402 | gtk_container_set_border_width(GTK_CONTAINER(pageData->m_box), 2); | |
a6aa9b1e | 403 | |
c58d2238 | 404 | pageData->m_image = NULL; |
3eb78d7e | 405 | if (imageId != -1) |
e4a81a2e | 406 | { |
c58d2238 PC |
407 | if (m_imageList) |
408 | { | |
409 | const wxBitmap* bitmap = m_imageList->GetBitmapPtr(imageId); | |
410 | pageData->m_image = gtk_image_new_from_pixbuf(bitmap->GetPixbuf()); | |
411 | gtk_box_pack_start(GTK_BOX(pageData->m_box), | |
412 | pageData->m_image, false, false, m_padding); | |
413 | } | |
414 | else | |
415 | wxFAIL_MSG("invalid notebook imagelist"); | |
3eb78d7e | 416 | } |
24d20a8f | 417 | |
587ce561 | 418 | /* set the label text */ |
c58d2238 PC |
419 | pageData->m_label = gtk_label_new(wxGTK_CONV(wxStripMenuCodes(text))); |
420 | gtk_box_pack_end(GTK_BOX(pageData->m_box), | |
421 | pageData->m_label, false, false, m_padding); | |
422 | ||
423 | gtk_widget_show_all(pageData->m_box); | |
424 | gtk_notebook_insert_page(notebook, win->m_widget, pageData->m_box, position); | |
279b5e2e | 425 | |
97357eec VS |
426 | /* apply current style */ |
427 | GtkRcStyle *style = CreateWidgetStyle(); | |
428 | if ( style ) | |
429 | { | |
c58d2238 | 430 | gtk_widget_modify_style(pageData->m_label, style); |
97357eec | 431 | gtk_rc_style_unref(style); |
88d19775 MR |
432 | } |
433 | ||
c58d2238 | 434 | if (select && GetPageCount() > 1) |
587ce561 | 435 | { |
c9882624 | 436 | SetSelection( position ); |
587ce561 | 437 | } |
741fd203 | 438 | |
37144cf0 | 439 | InvalidateBestSize(); |
de6185e2 | 440 | return true; |
ff7b1510 | 441 | } |
53b28675 | 442 | |
279b5e2e VZ |
443 | // helper for HitTest(): check if the point lies inside the given widget which |
444 | // is the child of the notebook whose position and border size are passed as | |
445 | // parameters | |
446 | static bool | |
447 | IsPointInsideWidget(const wxPoint& pt, GtkWidget *w, | |
448 | gint x, gint y, gint border = 0) | |
449 | { | |
450 | return | |
451 | (pt.x >= w->allocation.x - x - border) && | |
452 | (pt.x <= w->allocation.x - x + border + w->allocation.width) && | |
453 | (pt.y >= w->allocation.y - y - border) && | |
454 | (pt.y <= w->allocation.y - y + border + w->allocation.height); | |
455 | } | |
456 | ||
457 | int wxNotebook::HitTest(const wxPoint& pt, long *flags) const | |
458 | { | |
459 | const gint x = m_widget->allocation.x; | |
460 | const gint y = m_widget->allocation.y; | |
461 | ||
462 | const size_t count = GetPageCount(); | |
f660b206 MR |
463 | size_t i = 0; |
464 | ||
f660b206 | 465 | GtkNotebook * notebook = GTK_NOTEBOOK(m_widget); |
a5bb4f82 | 466 | if (gtk_notebook_get_scrollable(notebook)) |
f660b206 | 467 | i = g_list_position( notebook->children, notebook->first_tab ); |
f660b206 MR |
468 | |
469 | for ( ; i < count; i++ ) | |
279b5e2e | 470 | { |
c58d2238 PC |
471 | wxGtkNotebookPage* pageData = GetNotebookPage(i); |
472 | GtkWidget* box = pageData->m_box; | |
279b5e2e | 473 | |
279b5e2e | 474 | const gint border = gtk_container_get_border_width(GTK_CONTAINER(box)); |
68567a96 | 475 | |
279b5e2e VZ |
476 | if ( IsPointInsideWidget(pt, box, x, y, border) ) |
477 | { | |
478 | // ok, we're inside this tab -- now find out where, if needed | |
479 | if ( flags ) | |
480 | { | |
c58d2238 | 481 | if (pageData->m_image && IsPointInsideWidget(pt, pageData->m_image, x, y)) |
279b5e2e | 482 | { |
9804d540 | 483 | *flags = wxBK_HITTEST_ONICON; |
279b5e2e | 484 | } |
c58d2238 | 485 | else if (IsPointInsideWidget(pt, pageData->m_label, x, y)) |
279b5e2e | 486 | { |
9804d540 | 487 | *flags = wxBK_HITTEST_ONLABEL; |
279b5e2e VZ |
488 | } |
489 | else | |
490 | { | |
9804d540 | 491 | *flags = wxBK_HITTEST_ONITEM; |
279b5e2e VZ |
492 | } |
493 | } | |
494 | ||
495 | return i; | |
496 | } | |
497 | } | |
498 | ||
499 | if ( flags ) | |
d0a84b63 | 500 | { |
9804d540 | 501 | *flags = wxBK_HITTEST_NOWHERE; |
d0a84b63 VZ |
502 | wxWindowBase * page = GetCurrentPage(); |
503 | if ( page ) | |
504 | { | |
505 | // rect origin is in notebook's parent coordinates | |
506 | wxRect rect = page->GetRect(); | |
507 | ||
508 | // adjust it to the notebook's coordinates | |
509 | wxPoint pos = GetPosition(); | |
510 | rect.x -= pos.x; | |
511 | rect.y -= pos.y; | |
22a35096 | 512 | if ( rect.Contains( pt ) ) |
9804d540 | 513 | *flags |= wxBK_HITTEST_ONPAGE; |
d0a84b63 VZ |
514 | } |
515 | } | |
279b5e2e VZ |
516 | |
517 | return wxNOT_FOUND; | |
518 | } | |
519 | ||
b98d804b RR |
520 | void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event) |
521 | { | |
f861258f | 522 | if (event.IsWindowChange()) |
b98d804b | 523 | AdvanceSelection( event.GetDirection() ); |
f861258f | 524 | else |
b98d804b RR |
525 | event.Skip(); |
526 | } | |
527 | ||
93d38175 VS |
528 | #if wxUSE_CONSTRAINTS |
529 | ||
5a8c929e | 530 | // override these 2 functions to do nothing: everything is done in OnSize |
e3e65dac | 531 | void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse) ) |
5a8c929e | 532 | { |
b292e2f5 | 533 | // don't set the sizes of the pages - their correct size is not yet known |
de6185e2 | 534 | wxControl::SetConstraintSizes(false); |
5a8c929e VZ |
535 | } |
536 | ||
e3e65dac | 537 | bool wxNotebook::DoPhase( int WXUNUSED(nPhase) ) |
5a8c929e | 538 | { |
de6185e2 | 539 | return true; |
5a8c929e VZ |
540 | } |
541 | ||
93d38175 VS |
542 | #endif |
543 | ||
f40fdaa3 | 544 | void wxNotebook::DoApplyWidgetStyle(GtkRcStyle *style) |
a81258be | 545 | { |
97357eec | 546 | gtk_widget_modify_style(m_widget, style); |
c58d2238 PC |
547 | for (size_t i = GetPageCount(); i--;) |
548 | gtk_widget_modify_style(GetNotebookPage(i)->m_label, style); | |
a81258be RR |
549 | } |
550 | ||
ef5c70f9 | 551 | GdkWindow *wxNotebook::GTKGetWindow(wxArrayGdkWindows& windows) const |
58d1c1ae | 552 | { |
ef5c70f9 VZ |
553 | windows.push_back(m_widget->window); |
554 | windows.push_back(GTK_NOTEBOOK(m_widget)->event_window); | |
555 | ||
556 | return NULL; | |
58d1c1ae RR |
557 | } |
558 | ||
9d522606 RD |
559 | // static |
560 | wxVisualAttributes | |
561 | wxNotebook::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
562 | { | |
563 | return GetDefaultAttributesFromGTKWidget(gtk_notebook_new); | |
564 | } | |
565 | ||
a3a7f879 | 566 | #endif |