]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: notebook.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "notebook.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/notebook.h" | |
15 | ||
16 | #if wxUSE_NOTEBOOK | |
17 | ||
18 | #include "wx/panel.h" | |
19 | #include "wx/utils.h" | |
20 | #include "wx/imaglist.h" | |
21 | #include "wx/intl.h" | |
22 | #include "wx/log.h" | |
23 | ||
24 | #include <gdk/gdk.h> | |
25 | #include <gtk/gtk.h> | |
26 | #include "wx/gtk/win_gtk.h" | |
27 | #include <gdk/gdkkeysyms.h> | |
28 | ||
29 | //----------------------------------------------------------------------------- | |
30 | // idle system | |
31 | //----------------------------------------------------------------------------- | |
32 | ||
33 | extern void wxapp_install_idle_handler(); | |
34 | extern bool g_isIdle; | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // data | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
40 | extern bool g_blockEventsOnDrag; | |
41 | ||
42 | //----------------------------------------------------------------------------- | |
43 | // debug | |
44 | //----------------------------------------------------------------------------- | |
45 | ||
46 | #ifdef __WXDEBUG__ | |
47 | ||
48 | extern void debug_focus_in( GtkWidget* widget, const wxChar* name, const wxChar *window ); | |
49 | ||
50 | #endif | |
51 | ||
52 | //----------------------------------------------------------------------------- | |
53 | // wxGtkNotebookPage | |
54 | //----------------------------------------------------------------------------- | |
55 | ||
56 | class wxGtkNotebookPage: public wxObject | |
57 | { | |
58 | public: | |
59 | wxGtkNotebookPage() | |
60 | { | |
61 | m_text = ""; | |
62 | m_image = -1; | |
63 | m_page = (GtkNotebookPage *) NULL; | |
64 | m_client = (wxNotebookPage *) NULL; | |
65 | m_box = (GtkWidget *) NULL; | |
66 | } | |
67 | ||
68 | wxString m_text; | |
69 | int m_image; | |
70 | GtkNotebookPage *m_page; | |
71 | GtkLabel *m_label; | |
72 | wxNotebookPage *m_client; | |
73 | GtkWidget *m_box; // in which the label and image are packed | |
74 | }; | |
75 | ||
76 | //----------------------------------------------------------------------------- | |
77 | // "switch_page" | |
78 | //----------------------------------------------------------------------------- | |
79 | ||
80 | static void gtk_notebook_page_change_callback(GtkNotebook *WXUNUSED(widget), | |
81 | GtkNotebookPage *WXUNUSED(page), | |
82 | gint page, | |
83 | wxNotebook *notebook ) | |
84 | { | |
85 | if (g_isIdle) | |
86 | wxapp_install_idle_handler(); | |
87 | ||
88 | int old = notebook->GetSelection(); | |
89 | ||
90 | wxNotebookEvent event1( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, | |
91 | notebook->GetId(), page, old ); | |
92 | event1.SetEventObject( notebook ); | |
93 | ||
94 | if ((notebook->GetEventHandler()->ProcessEvent( event1 )) && | |
95 | !event1.IsAllowed() ) | |
96 | { | |
97 | /* program doesn't allow the page change */ | |
98 | gtk_signal_emit_stop_by_name( GTK_OBJECT(notebook->m_widget), "switch_page" ); | |
99 | return; | |
100 | } | |
101 | ||
102 | wxNotebookEvent event2( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, | |
103 | notebook->GetId(), page, old ); | |
104 | event2.SetEventObject( notebook ); | |
105 | notebook->GetEventHandler()->ProcessEvent( event2 ); | |
106 | } | |
107 | ||
108 | //----------------------------------------------------------------------------- | |
109 | // "size_allocate" | |
110 | //----------------------------------------------------------------------------- | |
111 | ||
112 | static void gtk_page_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxWindow *win ) | |
113 | { | |
114 | if (g_isIdle) | |
115 | wxapp_install_idle_handler(); | |
116 | ||
117 | if ((win->m_x == alloc->x) && | |
118 | (win->m_y == alloc->y) && | |
119 | (win->m_width == alloc->width) && | |
120 | (win->m_height == alloc->height)) | |
121 | { | |
122 | return; | |
123 | } | |
124 | ||
125 | win->SetSize( alloc->x, alloc->y, alloc->width, alloc->height ); | |
126 | ||
127 | /* GTK 1.2 up to version 1.2.5 is broken so that we have to call allocate | |
128 | here in order to make repositioning after resizing to take effect. */ | |
129 | if ((gtk_major_version == 1) && | |
130 | (gtk_minor_version == 2) && | |
131 | (gtk_micro_version < 6) && | |
132 | (win->m_wxwindow) && | |
133 | (GTK_WIDGET_REALIZED(win->m_wxwindow))) | |
134 | { | |
135 | gtk_widget_size_allocate( win->m_wxwindow, alloc ); | |
136 | } | |
137 | } | |
138 | ||
139 | //----------------------------------------------------------------------------- | |
140 | // "realize" from m_widget | |
141 | //----------------------------------------------------------------------------- | |
142 | ||
143 | static gint | |
144 | gtk_notebook_realized_callback( GtkWidget * WXUNUSED(widget), wxWindow *win ) | |
145 | { | |
146 | if (g_isIdle) | |
147 | wxapp_install_idle_handler(); | |
148 | ||
149 | /* GTK 1.2 up to version 1.2.5 is broken so that we have to call a queue_resize | |
150 | here in order to make repositioning before showing to take effect. */ | |
151 | gtk_widget_queue_resize( win->m_widget ); | |
152 | ||
153 | return FALSE; | |
154 | } | |
155 | ||
156 | //----------------------------------------------------------------------------- | |
157 | // "key_press_event" | |
158 | //----------------------------------------------------------------------------- | |
159 | ||
160 | static gint gtk_notebook_key_press_callback( GtkWidget *widget, GdkEventKey *gdk_event, wxNotebook *win ) | |
161 | { | |
162 | if (g_isIdle) | |
163 | wxapp_install_idle_handler(); | |
164 | ||
165 | if (!win->m_hasVMT) return FALSE; | |
166 | if (g_blockEventsOnDrag) return FALSE; | |
167 | ||
168 | /* win is a control: tab can be propagated up */ | |
169 | if ((gdk_event->keyval == GDK_Tab) || (gdk_event->keyval == GDK_ISO_Left_Tab)) | |
170 | { | |
171 | wxNode *node = win->m_pages.Nth( win->GetSelection() ); | |
172 | if (!node) return FALSE; | |
173 | ||
174 | wxGtkNotebookPage *page = (wxGtkNotebookPage*) node->Data(); | |
175 | ||
176 | wxNavigationKeyEvent event; | |
177 | event.SetEventObject( win ); | |
178 | /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */ | |
179 | event.SetDirection( (gdk_event->keyval == GDK_Tab) ); | |
180 | /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */ | |
181 | event.SetCurrentFocus( win ); | |
182 | if (!page->m_client->GetEventHandler()->ProcessEvent( event )) | |
183 | { | |
184 | page->m_client->SetFocus(); | |
185 | } | |
186 | ||
187 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "key_press_event" ); | |
188 | return TRUE; | |
189 | } | |
190 | ||
191 | return FALSE; | |
192 | } | |
193 | ||
194 | //----------------------------------------------------------------------------- | |
195 | // InsertChild callback for wxNotebook | |
196 | //----------------------------------------------------------------------------- | |
197 | ||
198 | static void wxInsertChildInNotebook( wxNotebook* WXUNUSED(parent), wxWindow* WXUNUSED(child) ) | |
199 | { | |
200 | /* we don't do anything here but pray */ | |
201 | } | |
202 | ||
203 | //----------------------------------------------------------------------------- | |
204 | // wxNotebook | |
205 | //----------------------------------------------------------------------------- | |
206 | ||
207 | IMPLEMENT_DYNAMIC_CLASS(wxNotebook,wxControl) | |
208 | ||
209 | BEGIN_EVENT_TABLE(wxNotebook, wxControl) | |
210 | EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey) | |
211 | END_EVENT_TABLE() | |
212 | ||
213 | void wxNotebook::Init() | |
214 | { | |
215 | m_imageList = (wxImageList *) NULL; | |
216 | m_pages.DeleteContents( TRUE ); | |
217 | m_lastSelection = -1; | |
218 | } | |
219 | ||
220 | wxNotebook::wxNotebook() | |
221 | { | |
222 | Init(); | |
223 | } | |
224 | ||
225 | wxNotebook::wxNotebook( wxWindow *parent, wxWindowID id, | |
226 | const wxPoint& pos, const wxSize& size, | |
227 | long style, const wxString& name ) | |
228 | { | |
229 | Init(); | |
230 | Create( parent, id, pos, size, style, name ); | |
231 | } | |
232 | ||
233 | wxNotebook::~wxNotebook() | |
234 | { | |
235 | /* don't generate change page events any more */ | |
236 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget), | |
237 | GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer) this ); | |
238 | ||
239 | DeleteAllPages(); | |
240 | } | |
241 | ||
242 | bool wxNotebook::Create(wxWindow *parent, wxWindowID id, | |
243 | const wxPoint& pos, const wxSize& size, | |
244 | long style, const wxString& name ) | |
245 | { | |
246 | m_needParent = TRUE; | |
247 | m_acceptsFocus = TRUE; | |
248 | m_insertCallback = (wxInsertChildFunction)wxInsertChildInNotebook; | |
249 | ||
250 | if (!PreCreation( parent, pos, size ) || | |
251 | !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) | |
252 | { | |
253 | wxFAIL_MSG( wxT("wxNoteBook creation failed") ); | |
254 | return FALSE; | |
255 | } | |
256 | ||
257 | ||
258 | m_widget = gtk_notebook_new(); | |
259 | ||
260 | #ifdef __WXDEBUG__ | |
261 | debug_focus_in( m_widget, wxT("wxNotebook::m_widget"), name ); | |
262 | #endif | |
263 | ||
264 | gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget), 1 ); | |
265 | ||
266 | gtk_signal_connect( GTK_OBJECT(m_widget), "switch_page", | |
267 | GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer)this ); | |
268 | ||
269 | m_parent->DoAddChild( this ); | |
270 | ||
271 | if (m_windowStyle & wxNB_RIGHT) | |
272 | gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_RIGHT ); | |
273 | if (m_windowStyle & wxNB_LEFT) | |
274 | gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_LEFT ); | |
275 | if (m_windowStyle & wxNB_BOTTOM) | |
276 | gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_BOTTOM ); | |
277 | ||
278 | gtk_signal_connect( GTK_OBJECT(m_widget), "key_press_event", | |
279 | GTK_SIGNAL_FUNC(gtk_notebook_key_press_callback), (gpointer)this ); | |
280 | ||
281 | PostCreation(); | |
282 | ||
283 | SetFont( parent->GetFont() ); | |
284 | ||
285 | gtk_signal_connect( GTK_OBJECT(m_widget), "realize", | |
286 | GTK_SIGNAL_FUNC(gtk_notebook_realized_callback), (gpointer) this ); | |
287 | ||
288 | Show( TRUE ); | |
289 | ||
290 | return TRUE; | |
291 | } | |
292 | ||
293 | int wxNotebook::GetSelection() const | |
294 | { | |
295 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid notebook") ); | |
296 | ||
297 | GList *pages = GTK_NOTEBOOK(m_widget)->children; | |
298 | ||
299 | if (g_list_length(pages) == 0) return -1; | |
300 | ||
301 | GtkNotebook *notebook = GTK_NOTEBOOK(m_widget); | |
302 | ||
303 | if (notebook->cur_page == NULL) return m_lastSelection; | |
304 | ||
305 | return g_list_index( pages, (gpointer)(notebook->cur_page) ); | |
306 | } | |
307 | ||
308 | int wxNotebook::GetPageCount() const | |
309 | { | |
310 | return (int) g_list_length( GTK_NOTEBOOK(m_widget)->children ); | |
311 | } | |
312 | ||
313 | int wxNotebook::GetRowCount() const | |
314 | { | |
315 | return 1; | |
316 | } | |
317 | ||
318 | wxString wxNotebook::GetPageText( int page ) const | |
319 | { | |
320 | wxCHECK_MSG( m_widget != NULL, wxT(""), wxT("invalid notebook") ); | |
321 | ||
322 | wxGtkNotebookPage* nb_page = GetNotebookPage(page); | |
323 | if (nb_page) | |
324 | return nb_page->m_text; | |
325 | else | |
326 | return wxT(""); | |
327 | } | |
328 | ||
329 | int wxNotebook::GetPageImage( int page ) const | |
330 | { | |
331 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid notebook") ); | |
332 | ||
333 | wxGtkNotebookPage* nb_page = GetNotebookPage(page); | |
334 | if (nb_page) | |
335 | return nb_page->m_image; | |
336 | else | |
337 | return -1; | |
338 | } | |
339 | ||
340 | wxGtkNotebookPage* wxNotebook::GetNotebookPage( int page ) const | |
341 | { | |
342 | wxCHECK_MSG( m_widget != NULL, (wxGtkNotebookPage*) NULL, wxT("invalid notebook") ); | |
343 | ||
344 | wxCHECK_MSG( page < (int)m_pages.GetCount(), (wxGtkNotebookPage*) NULL, wxT("invalid notebook index") ); | |
345 | ||
346 | wxNode *node = m_pages.Nth( page ); | |
347 | ||
348 | return (wxGtkNotebookPage *) node->Data(); | |
349 | } | |
350 | ||
351 | int wxNotebook::SetSelection( int page ) | |
352 | { | |
353 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid notebook") ); | |
354 | ||
355 | wxCHECK_MSG( page < (int)m_pages.GetCount(), -1, wxT("invalid notebook index") ); | |
356 | ||
357 | int selOld = GetSelection(); | |
358 | ||
359 | gtk_notebook_set_page( GTK_NOTEBOOK(m_widget), page ); | |
360 | ||
361 | return selOld; | |
362 | } | |
363 | ||
364 | void wxNotebook::AdvanceSelection( bool forward ) | |
365 | { | |
366 | wxCHECK_RET( m_widget != NULL, wxT("invalid notebook") ); | |
367 | ||
368 | int max = GetPageCount(); | |
369 | if ( !max ) | |
370 | { | |
371 | // nothing to do with empty notebook | |
372 | return; | |
373 | } | |
374 | ||
375 | int sel = GetSelection(); | |
376 | ||
377 | if (forward) | |
378 | SetSelection( sel == max - 1 ? 0 : sel + 1 ); | |
379 | else | |
380 | SetSelection( sel == 0 ? max - 1 : sel - 1 ); | |
381 | } | |
382 | ||
383 | void wxNotebook::SetImageList( wxImageList* imageList ) | |
384 | { | |
385 | m_imageList = imageList; | |
386 | } | |
387 | ||
388 | bool wxNotebook::SetPageText( int page, const wxString &text ) | |
389 | { | |
390 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid notebook") ); | |
391 | ||
392 | wxGtkNotebookPage* nb_page = GetNotebookPage(page); | |
393 | ||
394 | wxCHECK_MSG( nb_page, FALSE, wxT("SetPageText: invalid page index") ); | |
395 | ||
396 | nb_page->m_text = text; | |
397 | ||
398 | gtk_label_set( nb_page->m_label, nb_page->m_text.mbc_str() ); | |
399 | ||
400 | return TRUE; | |
401 | } | |
402 | ||
403 | bool wxNotebook::SetPageImage( int page, int image ) | |
404 | { | |
405 | /* HvdH 28-12-98: now it works, but it's a bit of a kludge */ | |
406 | ||
407 | wxGtkNotebookPage* nb_page = GetNotebookPage(page); | |
408 | ||
409 | if (!nb_page) return FALSE; | |
410 | ||
411 | /* Optimization posibility: return immediately if image unchanged. | |
412 | * Not enabled because it may break existing (stupid) code that | |
413 | * manipulates the imagelist to cycle images */ | |
414 | ||
415 | /* if (image == nb_page->m_image) return TRUE; */ | |
416 | ||
417 | /* For different cases: | |
418 | 1) no image -> no image | |
419 | 2) image -> no image | |
420 | 3) no image -> image | |
421 | 4) image -> image */ | |
422 | ||
423 | if (image == -1 && nb_page->m_image == -1) | |
424 | return TRUE; /* Case 1): Nothing to do. */ | |
425 | ||
426 | GtkWidget *pixmapwid = (GtkWidget*) NULL; | |
427 | ||
428 | if (nb_page->m_image != -1) | |
429 | { | |
430 | /* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */ | |
431 | ||
432 | GList *child = gtk_container_children(GTK_CONTAINER(nb_page->m_box)); | |
433 | while (child) | |
434 | { | |
435 | if (GTK_IS_PIXMAP(child->data)) | |
436 | { | |
437 | pixmapwid = GTK_WIDGET(child->data); | |
438 | break; | |
439 | } | |
440 | child = child->next; | |
441 | } | |
442 | ||
443 | /* We should have the pixmap widget now */ | |
444 | wxASSERT(pixmapwid != NULL); | |
445 | ||
446 | if (image == -1) | |
447 | { | |
448 | /* If there's no new widget, just remove the old from the box */ | |
449 | gtk_container_remove(GTK_CONTAINER(nb_page->m_box), pixmapwid); | |
450 | nb_page->m_image = -1; | |
451 | ||
452 | return TRUE; /* Case 2) */ | |
453 | } | |
454 | } | |
455 | ||
456 | /* Only cases 3) and 4) left */ | |
457 | wxASSERT( m_imageList != NULL ); /* Just in case */ | |
458 | ||
459 | /* Construct the new pixmap */ | |
460 | const wxBitmap *bmp = m_imageList->GetBitmap(image); | |
461 | GdkPixmap *pixmap = bmp->GetPixmap(); | |
462 | GdkBitmap *mask = (GdkBitmap*) NULL; | |
463 | if ( bmp->GetMask() ) | |
464 | { | |
465 | mask = bmp->GetMask()->GetBitmap(); | |
466 | } | |
467 | ||
468 | if (pixmapwid == NULL) | |
469 | { | |
470 | /* Case 3) No old pixmap. Create a new one and prepend it to the hbox */ | |
471 | pixmapwid = gtk_pixmap_new (pixmap, mask ); | |
472 | ||
473 | /* CHECKME: Are these pack flags okay? */ | |
474 | gtk_box_pack_start(GTK_BOX(nb_page->m_box), pixmapwid, FALSE, FALSE, 3); | |
475 | gtk_widget_show(pixmapwid); | |
476 | } | |
477 | else | |
478 | { | |
479 | /* Case 4) Simply replace the pixmap */ | |
480 | gtk_pixmap_set(GTK_PIXMAP(pixmapwid), pixmap, mask); | |
481 | } | |
482 | ||
483 | nb_page->m_image = image; | |
484 | ||
485 | return TRUE; | |
486 | } | |
487 | ||
488 | void wxNotebook::SetPageSize( const wxSize &WXUNUSED(size) ) | |
489 | { | |
490 | wxFAIL_MSG( wxT("wxNotebook::SetPageSize not implemented") ); | |
491 | } | |
492 | ||
493 | void wxNotebook::SetPadding( const wxSize &WXUNUSED(padding) ) | |
494 | { | |
495 | wxFAIL_MSG( wxT("wxNotebook::SetPadding not implemented") ); | |
496 | } | |
497 | ||
498 | void wxNotebook::SetTabSize(const wxSize& WXUNUSED(sz)) | |
499 | { | |
500 | wxFAIL_MSG( wxT("wxNotebook::SetTabSize not implemented") ); | |
501 | } | |
502 | ||
503 | bool wxNotebook::DeleteAllPages() | |
504 | { | |
505 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid notebook") ); | |
506 | ||
507 | while (m_pages.GetCount() > 0) | |
508 | DeletePage( m_pages.GetCount()-1 ); | |
509 | ||
510 | return TRUE; | |
511 | } | |
512 | ||
513 | bool wxNotebook::DeletePage( int page ) | |
514 | { | |
515 | wxGtkNotebookPage* nb_page = GetNotebookPage(page); | |
516 | if (!nb_page) return FALSE; | |
517 | ||
518 | /* GTK sets GtkNotebook.cur_page to NULL before sending | |
519 | the switvh page event */ | |
520 | m_lastSelection = GetSelection(); | |
521 | ||
522 | nb_page->m_client->Destroy(); | |
523 | m_pages.DeleteObject( nb_page ); | |
524 | ||
525 | m_lastSelection = -1; | |
526 | ||
527 | return TRUE; | |
528 | } | |
529 | ||
530 | bool wxNotebook::RemovePage( int page ) | |
531 | { | |
532 | wxGtkNotebookPage* nb_page = GetNotebookPage(page); | |
533 | ||
534 | if (!nb_page) return FALSE; | |
535 | ||
536 | gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget), page ); | |
537 | ||
538 | m_pages.DeleteObject( nb_page ); | |
539 | ||
540 | return TRUE; | |
541 | } | |
542 | ||
543 | bool wxNotebook::InsertPage( int position, wxNotebookPage* win, const wxString& text, | |
544 | bool select, int imageId ) | |
545 | { | |
546 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid notebook") ); | |
547 | ||
548 | wxCHECK_MSG( win->GetParent() == this, FALSE, | |
549 | wxT("Can't add a page whose parent is not the notebook!") ); | |
550 | ||
551 | /* don't receive switch page during addition */ | |
552 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget), | |
553 | GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer) this ); | |
554 | ||
555 | GtkNotebook *notebook = GTK_NOTEBOOK(m_widget); | |
556 | ||
557 | wxGtkNotebookPage *page = new wxGtkNotebookPage(); | |
558 | ||
559 | if (position < 0) | |
560 | m_pages.Append( page ); | |
561 | else | |
562 | m_pages.Insert( m_pages.Nth( position ), page ); | |
563 | ||
564 | page->m_client = win; | |
565 | ||
566 | page->m_box = gtk_hbox_new( FALSE, 0 ); | |
567 | gtk_container_border_width( GTK_CONTAINER(page->m_box), 2 ); | |
568 | ||
569 | gtk_signal_connect( GTK_OBJECT(win->m_widget), "size_allocate", | |
570 | GTK_SIGNAL_FUNC(gtk_page_size_callback), (gpointer)win ); | |
571 | ||
572 | if (position < 0) | |
573 | gtk_notebook_append_page( notebook, win->m_widget, page->m_box ); | |
574 | else | |
575 | gtk_notebook_insert_page( notebook, win->m_widget, page->m_box, position ); | |
576 | ||
577 | page->m_page = (GtkNotebookPage*) g_list_last(notebook->children)->data; | |
578 | ||
579 | /* set the label image */ | |
580 | page->m_image = imageId; | |
581 | ||
582 | if (imageId != -1) | |
583 | { | |
584 | wxASSERT( m_imageList != NULL ); | |
585 | ||
586 | const wxBitmap *bmp = m_imageList->GetBitmap(imageId); | |
587 | GdkPixmap *pixmap = bmp->GetPixmap(); | |
588 | GdkBitmap *mask = (GdkBitmap*) NULL; | |
589 | if ( bmp->GetMask() ) | |
590 | { | |
591 | mask = bmp->GetMask()->GetBitmap(); | |
592 | } | |
593 | ||
594 | GtkWidget *pixmapwid = gtk_pixmap_new (pixmap, mask ); | |
595 | ||
596 | gtk_box_pack_start(GTK_BOX(page->m_box), pixmapwid, FALSE, FALSE, 3); | |
597 | ||
598 | gtk_widget_show(pixmapwid); | |
599 | } | |
600 | ||
601 | /* set the label text */ | |
602 | page->m_text = text; | |
603 | if (page->m_text.IsEmpty()) page->m_text = wxT(""); | |
604 | ||
605 | page->m_label = GTK_LABEL( gtk_label_new(page->m_text.mbc_str()) ); | |
606 | gtk_box_pack_end( GTK_BOX(page->m_box), GTK_WIDGET(page->m_label), FALSE, FALSE, 3 ); | |
607 | ||
608 | /* show the label */ | |
609 | gtk_widget_show( GTK_WIDGET(page->m_label) ); | |
610 | ||
611 | if (select && (m_pages.GetCount() > 1)) | |
612 | { | |
613 | if (position < 0) | |
614 | SetSelection( GetPageCount()-1 ); | |
615 | else | |
616 | SetSelection( position ); | |
617 | } | |
618 | ||
619 | gtk_signal_connect( GTK_OBJECT(m_widget), "switch_page", | |
620 | GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer)this ); | |
621 | ||
622 | return TRUE; | |
623 | } | |
624 | ||
625 | bool wxNotebook::AddPage(wxNotebookPage* win, const wxString& text, | |
626 | bool select, int imageId) | |
627 | { | |
628 | return InsertPage( -1, win, text, select, imageId ); | |
629 | } | |
630 | ||
631 | void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event) | |
632 | { | |
633 | if (event.IsWindowChange()) | |
634 | AdvanceSelection( event.GetDirection() ); | |
635 | else | |
636 | event.Skip(); | |
637 | } | |
638 | ||
639 | wxNotebookPage *wxNotebook::GetPage( int page ) const | |
640 | { | |
641 | wxCHECK_MSG( m_widget != NULL, (wxWindow*) NULL, wxT("invalid notebook") ); | |
642 | ||
643 | wxGtkNotebookPage* nb_page = GetNotebookPage(page); | |
644 | if (!nb_page) | |
645 | return (wxNotebookPage *) NULL; | |
646 | else | |
647 | return nb_page->m_client; | |
648 | } | |
649 | ||
650 | // override these 2 functions to do nothing: everything is done in OnSize | |
651 | void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse) ) | |
652 | { | |
653 | // don't set the sizes of the pages - their correct size is not yet known | |
654 | wxControl::SetConstraintSizes(FALSE); | |
655 | } | |
656 | ||
657 | bool wxNotebook::DoPhase( int WXUNUSED(nPhase) ) | |
658 | { | |
659 | return TRUE; | |
660 | } | |
661 | ||
662 | void wxNotebook::ApplyWidgetStyle() | |
663 | { | |
664 | // TODO, font for labels etc | |
665 | ||
666 | SetWidgetStyle(); | |
667 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
668 | } | |
669 | ||
670 | bool wxNotebook::IsOwnGtkWindow( GdkWindow *window ) | |
671 | { | |
672 | return ((m_widget->window == window) || | |
673 | (GTK_NOTEBOOK(m_widget)->panel == window)); | |
674 | } | |
675 | ||
676 | //----------------------------------------------------------------------------- | |
677 | // wxNotebookEvent | |
678 | //----------------------------------------------------------------------------- | |
679 | ||
680 | IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxNotifyEvent) | |
681 | ||
682 | #endif |