]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/notebook.cpp
Tests for wxTE_PROCESS_TAB again in line with other ports
[wxWidgets.git] / src / gtk1 / notebook.cpp
CommitLineData
53b28675
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: notebook.cpp
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 10#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
53b28675
RR
11#pragma implementation "notebook.h"
12#endif
13
14f355c2
VS
14// For compilers that support precompilation, includes "wx.h".
15#include "wx/wxprec.h"
16
53b28675 17#include "wx/notebook.h"
dcf924a3
RR
18
19#if wxUSE_NOTEBOOK
20
53b28675
RR
21#include "wx/panel.h"
22#include "wx/utils.h"
23#include "wx/imaglist.h"
30dea054 24#include "wx/intl.h"
4bf58c62 25#include "wx/log.h"
22cbd10e 26#include "wx/bitmap.h"
c077ee94 27#include "wx/fontutil.h"
83624f79 28
9e691f46 29#include "wx/gtk/private.h"
83624f79 30#include "wx/gtk/win_gtk.h"
9e691f46 31
5e7e9e1b 32#include <gdk/gdkkeysyms.h>
b292e2f5 33
c077ee94
RR
34#include "wx/msgdlg.h"
35
2e4df4bf
VZ
36// ----------------------------------------------------------------------------
37// events
38// ----------------------------------------------------------------------------
39
40DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED)
41DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING)
42
acfd422a
RR
43//-----------------------------------------------------------------------------
44// idle system
45//-----------------------------------------------------------------------------
46
47extern void wxapp_install_idle_handler();
48extern bool g_isIdle;
49
b292e2f5
RR
50//-----------------------------------------------------------------------------
51// data
52//-----------------------------------------------------------------------------
53
07b8d7ec 54extern bool g_blockEventsOnDrag;
53b28675 55
219f895a 56//-----------------------------------------------------------------------------
80a58c99 57// wxGtkNotebookPage
219f895a
RR
58//-----------------------------------------------------------------------------
59
07b8d7ec
VZ
60// VZ: this is rather ugly as we keep the pages themselves in an array (it
61// allows us to have quite a few functions implemented in the base class)
62// but the page data is kept in a separate list, so we must maintain them
63// in sync manually... of course, the list had been there before the base
64// class which explains it but it still would be nice to do something
65// about this one day
66
80a58c99 67class wxGtkNotebookPage: public wxObject
219f895a
RR
68{
69public:
c077ee94
RR
70 wxGtkNotebookPage()
71 {
72 m_image = -1;
73 m_page = (GtkNotebookPage *) NULL;
74 m_box = (GtkWidget *) NULL;
c077ee94
RR
75 }
76
77 bool SetFont(const wxFont& font);
78
79 wxString m_text;
80 int m_image;
81 GtkNotebookPage *m_page;
82 GtkLabel *m_label;
83 GtkWidget *m_box; // in which the label and image are packed
219f895a
RR
84};
85
c077ee94
RR
86
87bool wxGtkNotebookPage::SetFont(const wxFont& font)
88{
89 if (!m_label)
90 return false;
91
c077ee94 92#ifdef __WXGTK20__
f40fdaa3
VS
93 gtk_widget_modify_font(GTK_WIDGET(m_label),
94 font.GetNativeFontInfo()->description);
c077ee94 95#else
f40fdaa3
VS
96 GtkRcStyle *style = gtk_rc_style_new();
97 style->fontset_name =
98 g_strdup(font.GetNativeFontInfo()->GetXFontName().c_str());
99 gtk_widget_modify_style(GTK_WIDGET(m_label), style);
100 gtk_rc_style_unref(style);
c077ee94
RR
101#endif
102
c077ee94
RR
103 return true;
104}
105
106
07b8d7ec
VZ
107#include "wx/listimpl.cpp"
108WX_DEFINE_LIST(wxGtkNotebookPagesList);
109
c077ee94 110
ff829f3f 111//-----------------------------------------------------------------------------
5b011451 112// "switch_page"
ff829f3f
VZ
113//-----------------------------------------------------------------------------
114
219f895a
RR
115static void gtk_notebook_page_change_callback(GtkNotebook *WXUNUSED(widget),
116 GtkNotebookPage *WXUNUSED(page),
587ce561
RR
117 gint page,
118 wxNotebook *notebook )
ff829f3f 119{
36202885
VZ
120 // are you trying to call SetSelection() from a notebook event handler?
121 // you shouldn't!
2b5f62a0 122 wxCHECK_RET( !notebook->m_inSwitchPage,
36202885
VZ
123 _T("gtk_notebook_page_change_callback reentered") );
124
2b5f62a0 125 notebook->m_inSwitchPage = TRUE;
a6aa9b1e 126 if (g_isIdle)
587ce561 127 wxapp_install_idle_handler();
ff829f3f 128
b292e2f5 129 int old = notebook->GetSelection();
ff829f3f 130
36202885
VZ
131 wxNotebookEvent eventChanging( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING,
132 notebook->GetId(), page, old );
133 eventChanging.SetEventObject( notebook );
a6aa9b1e 134
36202885
VZ
135 if ( (notebook->GetEventHandler()->ProcessEvent(eventChanging)) &&
136 !eventChanging.IsAllowed() )
587ce561
RR
137 {
138 /* program doesn't allow the page change */
36202885
VZ
139 gtk_signal_emit_stop_by_name( GTK_OBJECT(notebook->m_widget),
140 "switch_page" );
141 }
142 else // change allowed
143 {
144 // make wxNotebook::GetSelection() return the correct (i.e. consistent
145 // with wxNotebookEvent::GetSelection()) value even though the page is
146 // not really changed in GTK+
147 notebook->m_selection = page;
148
149 wxNotebookEvent eventChanged( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED,
150 notebook->GetId(), page, old );
151 eventChanged.SetEventObject( notebook );
152 notebook->GetEventHandler()->ProcessEvent( eventChanged );
587ce561 153 }
ef44a621 154
2b5f62a0 155 notebook->m_inSwitchPage = FALSE;
ff829f3f
VZ
156}
157
5b011451
RR
158//-----------------------------------------------------------------------------
159// "size_allocate"
160//-----------------------------------------------------------------------------
161
33d0b396 162static void gtk_page_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxWindow *win )
caac5181 163{
a6aa9b1e 164 if (g_isIdle)
587ce561 165 wxapp_install_idle_handler();
6d693bb4 166
a2053b27
RR
167 if ((win->m_x == alloc->x) &&
168 (win->m_y == alloc->y) &&
169 (win->m_width == alloc->width) &&
170 (win->m_height == alloc->height))
b292e2f5 171 {
58dea4b0 172 return;
b292e2f5 173 }
a6aa9b1e 174
b292e2f5 175 win->SetSize( alloc->x, alloc->y, alloc->width, alloc->height );
f861258f 176
d7928388
RR
177 /* GTK 1.2 up to version 1.2.5 is broken so that we have to call allocate
178 here in order to make repositioning after resizing to take effect. */
179 if ((gtk_major_version == 1) &&
180 (gtk_minor_version == 2) &&
8712c6e7
VZ
181 (gtk_micro_version < 6) &&
182 (win->m_wxwindow) &&
183 (GTK_WIDGET_REALIZED(win->m_wxwindow)))
d7928388
RR
184 {
185 gtk_widget_size_allocate( win->m_wxwindow, alloc );
186 }
6d693bb4
RR
187}
188
189//-----------------------------------------------------------------------------
190// "realize" from m_widget
191//-----------------------------------------------------------------------------
192
6d693bb4
RR
193static gint
194gtk_notebook_realized_callback( GtkWidget * WXUNUSED(widget), wxWindow *win )
195{
196 if (g_isIdle)
197 wxapp_install_idle_handler();
198
d7928388
RR
199 /* GTK 1.2 up to version 1.2.5 is broken so that we have to call a queue_resize
200 here in order to make repositioning before showing to take effect. */
6d693bb4
RR
201 gtk_widget_queue_resize( win->m_widget );
202
203 return FALSE;
b292e2f5
RR
204}
205
8253c7fd 206//-----------------------------------------------------------------------------
8712c6e7 207// "key_press_event"
8253c7fd
RR
208//-----------------------------------------------------------------------------
209
210static gint gtk_notebook_key_press_callback( GtkWidget *widget, GdkEventKey *gdk_event, wxNotebook *win )
211{
212 if (g_isIdle)
213 wxapp_install_idle_handler();
214
215 if (!win->m_hasVMT) return FALSE;
216 if (g_blockEventsOnDrag) return FALSE;
217
218 /* win is a control: tab can be propagated up */
219 if ((gdk_event->keyval == GDK_Tab) || (gdk_event->keyval == GDK_ISO_Left_Tab))
220 {
07b8d7ec 221 int sel = win->GetSelection();
461573cc
RR
222 if (sel == -1)
223 return TRUE;
b318dc42
JS
224 wxGtkNotebookPage *nb_page = win->GetNotebookPage(sel);
225 wxCHECK_MSG( nb_page, FALSE, _T("invalid selection in wxNotebook") );
8253c7fd
RR
226
227 wxNavigationKeyEvent event;
228 event.SetEventObject( win );
229 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
230 event.SetDirection( (gdk_event->keyval == GDK_Tab) );
231 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
cc023d9f 232 event.SetWindowChange( (gdk_event->state & GDK_CONTROL_MASK) );
8253c7fd 233 event.SetCurrentFocus( win );
07b8d7ec
VZ
234
235 wxNotebookPage *client = win->GetPage(sel);
236 if ( !client->GetEventHandler()->ProcessEvent( event ) )
8253c7fd 237 {
07b8d7ec 238 client->SetFocus();
8253c7fd 239 }
8712c6e7 240
8253c7fd
RR
241 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "key_press_event" );
242 return TRUE;
243 }
8712c6e7 244
8253c7fd
RR
245 return FALSE;
246}
247
6ca41e57
RR
248//-----------------------------------------------------------------------------
249// InsertChild callback for wxNotebook
250//-----------------------------------------------------------------------------
251
d7f1759a 252static void wxInsertChildInNotebook( wxNotebook* parent, wxWindow* child )
6ca41e57 253{
d7f1759a
RR
254 // Hack alert! We manually set the child window
255 // parent field so that GTK can query the
2ded391d
VS
256 // notebook's style and font. Without that, GetBestSize could return
257 // incorrect size, see bug #901694 for details
258 // (http://sourceforge.net/tracker/?func=detail&aid=901694&group_id=9863&atid=109863)
d7f1759a 259 child->m_widget->parent = parent->m_widget;
6ca41e57
RR
260}
261
53b28675
RR
262//-----------------------------------------------------------------------------
263// wxNotebook
264//-----------------------------------------------------------------------------
265
53b28675
RR
266IMPLEMENT_DYNAMIC_CLASS(wxNotebook,wxControl)
267
b98d804b
RR
268BEGIN_EVENT_TABLE(wxNotebook, wxControl)
269 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey)
270END_EVENT_TABLE()
f861258f 271
ff829f3f 272void wxNotebook::Init()
53b28675 273{
b318dc42 274 m_padding = 0;
2b5f62a0
VZ
275 m_inSwitchPage = FALSE;
276
b292e2f5 277 m_imageList = (wxImageList *) NULL;
36202885 278 m_selection = -1;
a2d93e73 279 m_themeEnabled = TRUE;
ff829f3f
VZ
280}
281
282wxNotebook::wxNotebook()
283{
b292e2f5 284 Init();
ff7b1510 285}
53b28675 286
debe6624 287wxNotebook::wxNotebook( wxWindow *parent, wxWindowID id,
53b28675 288 const wxPoint& pos, const wxSize& size,
debe6624 289 long style, const wxString& name )
53b28675 290{
b292e2f5
RR
291 Init();
292 Create( parent, id, pos, size, style, name );
ff7b1510 293}
53b28675 294
ff829f3f 295wxNotebook::~wxNotebook()
53b28675 296{
b292e2f5 297 DeleteAllPages();
ff7b1510 298}
53b28675 299
debe6624 300bool wxNotebook::Create(wxWindow *parent, wxWindowID id,
07b8d7ec
VZ
301 const wxPoint& pos, const wxSize& size,
302 long style, const wxString& name )
53b28675 303{
b292e2f5
RR
304 m_needParent = TRUE;
305 m_acceptsFocus = TRUE;
306 m_insertCallback = (wxInsertChildFunction)wxInsertChildInNotebook;
307
4dcaf11a
RR
308 if (!PreCreation( parent, pos, size ) ||
309 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
310 {
223d09f6 311 wxFAIL_MSG( wxT("wxNoteBook creation failed") );
8712c6e7 312 return FALSE;
4dcaf11a
RR
313 }
314
ff829f3f 315
b292e2f5 316 m_widget = gtk_notebook_new();
53b28675 317
b292e2f5 318 gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget), 1 );
caac5181 319
587ce561
RR
320 gtk_signal_connect( GTK_OBJECT(m_widget), "switch_page",
321 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer)this );
ff829f3f 322
f03fc89f 323 m_parent->DoAddChild( this );
ef44a621 324
8712c6e7
VZ
325 if (m_windowStyle & wxNB_RIGHT)
326 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_RIGHT );
327 if (m_windowStyle & wxNB_LEFT)
328 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_LEFT );
329 if (m_windowStyle & wxNB_BOTTOM)
330 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget), GTK_POS_BOTTOM );
a3a7f879 331
8253c7fd
RR
332 gtk_signal_connect( GTK_OBJECT(m_widget), "key_press_event",
333 GTK_SIGNAL_FUNC(gtk_notebook_key_press_callback), (gpointer)this );
334
abdeb9e7 335 PostCreation(size);
ff829f3f 336
db434467
RR
337 SetFont( parent->GetFont() );
338
6d693bb4
RR
339 gtk_signal_connect( GTK_OBJECT(m_widget), "realize",
340 GTK_SIGNAL_FUNC(gtk_notebook_realized_callback), (gpointer) this );
a6aa9b1e 341
b292e2f5 342 return TRUE;
ff7b1510 343}
53b28675 344
ff829f3f 345int wxNotebook::GetSelection() const
53b28675 346{
223d09f6 347 wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid notebook") );
53b28675 348
36202885
VZ
349 if ( m_selection == -1 )
350 {
b318dc42 351 GList *nb_pages = GTK_NOTEBOOK(m_widget)->children;
53b28675 352
b318dc42 353 if (g_list_length(nb_pages) != 0)
36202885
VZ
354 {
355 GtkNotebook *notebook = GTK_NOTEBOOK(m_widget);
a6aa9b1e 356
36202885
VZ
357 gpointer cur = notebook->cur_page;
358 if ( cur != NULL )
359 {
360 wxConstCast(this, wxNotebook)->m_selection =
b318dc42 361 g_list_index( nb_pages, cur );
36202885
VZ
362 }
363 }
364 }
a6aa9b1e 365
36202885 366 return m_selection;
ff7b1510 367}
53b28675 368
789d0a3d 369wxString wxNotebook::GetPageText( size_t page ) const
53b28675 370{
223d09f6 371 wxCHECK_MSG( m_widget != NULL, wxT(""), wxT("invalid notebook") );
ef44a621 372
80a58c99 373 wxGtkNotebookPage* nb_page = GetNotebookPage(page);
b292e2f5
RR
374 if (nb_page)
375 return nb_page->m_text;
376 else
223d09f6 377 return wxT("");
ff7b1510 378}
53b28675 379
789d0a3d 380int wxNotebook::GetPageImage( size_t page ) const
53b28675 381{
223d09f6 382 wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid notebook") );
a81258be 383
80a58c99 384 wxGtkNotebookPage* nb_page = GetNotebookPage(page);
b292e2f5
RR
385 if (nb_page)
386 return nb_page->m_image;
387 else
587ce561 388 return -1;
ff7b1510 389}
53b28675 390
80a58c99 391wxGtkNotebookPage* wxNotebook::GetNotebookPage( int page ) const
53b28675 392{
80a58c99 393 wxCHECK_MSG( m_widget != NULL, (wxGtkNotebookPage*) NULL, wxT("invalid notebook") );
ff829f3f 394
07b8d7ec 395 wxCHECK_MSG( page < (int)m_pagesData.GetCount(), (wxGtkNotebookPage*) NULL, wxT("invalid notebook index") );
a6aa9b1e 396
07b8d7ec 397 return m_pagesData.Item(page)->GetData();
ff7b1510 398}
53b28675 399
789d0a3d 400int wxNotebook::SetSelection( size_t page )
53b28675 401{
223d09f6 402 wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid notebook") );
a81258be 403
789d0a3d 404 wxCHECK_MSG( page < m_pagesData.GetCount(), -1, wxT("invalid notebook index") );
ff829f3f 405
587ce561 406 int selOld = GetSelection();
a6aa9b1e 407
36202885
VZ
408 // cache the selection
409 m_selection = page;
587ce561 410 gtk_notebook_set_page( GTK_NOTEBOOK(m_widget), page );
ff829f3f 411
07b8d7ec
VZ
412 wxNotebookPage *client = GetPage(page);
413 if ( client )
414 client->SetFocus();
b656febd 415
07b8d7ec 416 return selOld;
ff7b1510 417}
53b28675 418
789d0a3d 419bool wxNotebook::SetPageText( size_t page, const wxString &text )
53b28675 420{
223d09f6 421 wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid notebook") );
a81258be 422
80a58c99 423 wxGtkNotebookPage* nb_page = GetNotebookPage(page);
ef44a621 424
223d09f6 425 wxCHECK_MSG( nb_page, FALSE, wxT("SetPageText: invalid page index") );
ff829f3f 426
3eb78d7e 427 nb_page->m_text = text;
ff829f3f 428
fab591c5 429 gtk_label_set( nb_page->m_label, wxGTK_CONV( nb_page->m_text ) );
a6aa9b1e 430
3eb78d7e 431 return TRUE;
ff7b1510 432}
53b28675 433
789d0a3d 434bool wxNotebook::SetPageImage( size_t page, int image )
53b28675 435{
3eb78d7e 436 /* HvdH 28-12-98: now it works, but it's a bit of a kludge */
f861258f 437
80a58c99 438 wxGtkNotebookPage* nb_page = GetNotebookPage(page);
ef44a621 439
3eb78d7e 440 if (!nb_page) return FALSE;
f861258f 441
3eb78d7e
RR
442 /* Optimization posibility: return immediately if image unchanged.
443 * Not enabled because it may break existing (stupid) code that
444 * manipulates the imagelist to cycle images */
f861258f 445
3eb78d7e 446 /* if (image == nb_page->m_image) return TRUE; */
f861258f
VZ
447
448 /* For different cases:
3eb78d7e
RR
449 1) no image -> no image
450 2) image -> no image
451 3) no image -> image
452 4) image -> image */
f861258f 453
3eb78d7e
RR
454 if (image == -1 && nb_page->m_image == -1)
455 return TRUE; /* Case 1): Nothing to do. */
f861258f 456
bbe0af5b 457 GtkWidget *pixmapwid = (GtkWidget*) NULL;
f861258f
VZ
458
459 if (nb_page->m_image != -1)
3eb78d7e
RR
460 {
461 /* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
f861258f 462
279b5e2e
VZ
463 GList *child = gtk_container_children(GTK_CONTAINER(nb_page->m_box));
464 while (child)
8712c6e7 465 {
f861258f 466 if (GTK_IS_PIXMAP(child->data))
8712c6e7
VZ
467 {
468 pixmapwid = GTK_WIDGET(child->data);
469 break;
3eb78d7e 470 }
279b5e2e 471 child = child->next;
8712c6e7 472 }
f861258f 473
3eb78d7e 474 /* We should have the pixmap widget now */
f861258f
VZ
475 wxASSERT(pixmapwid != NULL);
476
477 if (image == -1)
8712c6e7 478 {
3eb78d7e
RR
479 /* If there's no new widget, just remove the old from the box */
480 gtk_container_remove(GTK_CONTAINER(nb_page->m_box), pixmapwid);
481 nb_page->m_image = -1;
53b28675 482
3eb78d7e
RR
483 return TRUE; /* Case 2) */
484 }
485 }
f861258f 486
3eb78d7e
RR
487 /* Only cases 3) and 4) left */
488 wxASSERT( m_imageList != NULL ); /* Just in case */
f861258f 489
3eb78d7e
RR
490 /* Construct the new pixmap */
491 const wxBitmap *bmp = m_imageList->GetBitmap(image);
492 GdkPixmap *pixmap = bmp->GetPixmap();
493 GdkBitmap *mask = (GdkBitmap*) NULL;
f861258f 494 if ( bmp->GetMask() )
3eb78d7e
RR
495 {
496 mask = bmp->GetMask()->GetBitmap();
497 }
f861258f
VZ
498
499 if (pixmapwid == NULL)
3eb78d7e
RR
500 {
501 /* Case 3) No old pixmap. Create a new one and prepend it to the hbox */
502 pixmapwid = gtk_pixmap_new (pixmap, mask );
f861258f 503
3eb78d7e 504 /* CHECKME: Are these pack flags okay? */
b318dc42 505 gtk_box_pack_start(GTK_BOX(nb_page->m_box), pixmapwid, FALSE, FALSE, m_padding);
3eb78d7e
RR
506 gtk_widget_show(pixmapwid);
507 }
f861258f 508 else
3eb78d7e
RR
509 {
510 /* Case 4) Simply replace the pixmap */
511 gtk_pixmap_set(GTK_PIXMAP(pixmapwid), pixmap, mask);
512 }
f861258f 513
3eb78d7e 514 nb_page->m_image = image;
53b28675 515
3eb78d7e 516 return TRUE;
ff7b1510 517}
53b28675
RR
518
519void wxNotebook::SetPageSize( const wxSize &WXUNUSED(size) )
520{
223d09f6 521 wxFAIL_MSG( wxT("wxNotebook::SetPageSize not implemented") );
ff7b1510 522}
53b28675 523
b318dc42 524void wxNotebook::SetPadding( const wxSize &padding )
53b28675 525{
b318dc42
JS
526 wxCHECK_RET( m_widget != NULL, wxT("invalid notebook") );
527
528 m_padding = padding.GetWidth();
529
530 int i;
531 for (i=0; i<int(GetPageCount()); i++)
532 {
533 wxGtkNotebookPage* nb_page = GetNotebookPage(i);
534 wxASSERT(nb_page != NULL);
535
536 if (nb_page->m_image != -1)
537 {
538 // gtk_box_set_child_packing sets padding on BOTH sides
539 // icon provides left padding, label provides center and right
540 int image = nb_page->m_image;
541 SetPageImage(i,-1);
542 SetPageImage(i,image);
543 }
544 wxASSERT(nb_page->m_label);
545 gtk_box_set_child_packing(GTK_BOX(nb_page->m_box),
546 GTK_WIDGET(nb_page->m_label),
547 FALSE, FALSE, m_padding, GTK_PACK_END);
548 }
ff7b1510 549}
53b28675 550
74e3313b 551void wxNotebook::SetTabSize(const wxSize& WXUNUSED(sz))
ca8b28f2 552{
223d09f6 553 wxFAIL_MSG( wxT("wxNotebook::SetTabSize not implemented") );
ca8b28f2
JS
554}
555
ff829f3f 556bool wxNotebook::DeleteAllPages()
53b28675 557{
223d09f6 558 wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid notebook") );
a81258be 559
07b8d7ec
VZ
560 while (m_pagesData.GetCount() > 0)
561 DeletePage( m_pagesData.GetCount()-1 );
562
563 wxASSERT_MSG( GetPageCount() == 0, _T("all pages must have been deleted") );
ff829f3f 564
10199e27 565 return wxNotebookBase::DeleteAllPages();
ff7b1510 566}
53b28675 567
789d0a3d 568bool wxNotebook::DeletePage( size_t page )
53b28675 569{
5cb4253e 570 if ( m_selection == (int)m_pagesData.GetCount() - 1 )
36202885 571 {
5cb4253e
VZ
572 // the index will become invalid after the page is deleted
573 m_selection = -1;
36202885 574 }
a6aa9b1e 575
10199e27 576 // it will call our DoRemovePage() to do the real work
07b8d7ec 577 return wxNotebookBase::DeletePage(page);
fed46e72
RR
578}
579
789d0a3d 580wxNotebookPage *wxNotebook::DoRemovePage( size_t page )
fed46e72 581{
10199e27
VZ
582 wxNotebookPage *client = wxNotebookBase::DoRemovePage(page);
583 if ( !client )
584 return NULL;
fed46e72 585
07b8d7ec
VZ
586 gtk_widget_ref( client->m_widget );
587 gtk_widget_unrealize( client->m_widget );
588 gtk_widget_unparent( client->m_widget );
589
5cb4253e
VZ
590 // gtk_notebook_remove_page() sends "switch_page" signal with some strange
591 // new page index (when deleting selected page 0, new page is 1 although,
592 // clearly, the selection should stay 0), so suppress this
593 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget),
594 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer) this );
595
587ce561 596 gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget), page );
ff829f3f 597
5cb4253e
VZ
598 gtk_signal_connect( GTK_OBJECT(m_widget), "switch_page",
599 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer)this );
600
222ed1d6
MB
601 wxGtkNotebookPage* p = GetNotebookPage(page);
602 m_pagesData.DeleteObject(p);
603 delete p;
ff829f3f 604
07b8d7ec 605 return client;
ff7b1510 606}
53b28675 607
789d0a3d 608bool wxNotebook::InsertPage( size_t position,
07b8d7ec
VZ
609 wxNotebookPage* win,
610 const wxString& text,
611 bool select,
612 int imageId )
53b28675 613{
223d09f6 614 wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid notebook") );
a81258be 615
587ce561 616 wxCHECK_MSG( win->GetParent() == this, FALSE,
223d09f6 617 wxT("Can't add a page whose parent is not the notebook!") );
8aadf227 618
789d0a3d 619 wxCHECK_MSG( position <= GetPageCount(), FALSE,
07b8d7ec
VZ
620 _T("invalid page index in wxNotebookPage::InsertPage()") );
621
d7f1759a
RR
622 // Hack alert part II! See above in InsertChildInNotebook
623 // callback why this has to be done.
624 win->m_widget->parent = NULL;
625
626 // don't receive switch page during addition
a6aa9b1e 627 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget),
587ce561 628 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer) this );
a6aa9b1e 629
a2d93e73
JS
630 if (m_themeEnabled)
631 win->SetThemeEnabled(TRUE);
632
587ce561 633 GtkNotebook *notebook = GTK_NOTEBOOK(m_widget);
53b28675 634
b318dc42 635 wxGtkNotebookPage *nb_page = new wxGtkNotebookPage();
a6aa9b1e 636
07b8d7ec 637 if ( position == GetPageCount() )
b318dc42 638 m_pagesData.Append( nb_page );
587ce561 639 else
b318dc42 640 m_pagesData.Insert( m_pagesData.Item( position ), nb_page );
a6aa9b1e 641
07b8d7ec 642 m_pages.Insert(win, position);
8aadf227 643
b318dc42
JS
644 nb_page->m_box = gtk_hbox_new( FALSE, 1 );
645 gtk_container_border_width( GTK_CONTAINER(nb_page->m_box), 2 );
587ce561 646
d1af991f
RR
647 gtk_signal_connect( GTK_OBJECT(win->m_widget), "size_allocate",
648 GTK_SIGNAL_FUNC(gtk_page_size_callback), (gpointer)win );
649
1cc4f822
JJ
650#ifndef __VMS
651 // On VMS position is unsigned and thus always positive
652 if (position < 0)
b318dc42 653 gtk_notebook_append_page( notebook, win->m_widget, nb_page->m_box );
a6aa9b1e 654 else
1cc4f822
JJ
655#endif
656 gtk_notebook_insert_page( notebook, win->m_widget, nb_page->m_box, position );
587ce561 657
b318dc42 658 nb_page->m_page = (GtkNotebookPage*) g_list_last(notebook->children)->data;
ef44a621 659
587ce561 660 /* set the label image */
b318dc42 661 nb_page->m_image = imageId;
a6aa9b1e 662
3eb78d7e 663 if (imageId != -1)
e4a81a2e 664 {
3eb78d7e
RR
665 wxASSERT( m_imageList != NULL );
666
667 const wxBitmap *bmp = m_imageList->GetBitmap(imageId);
668 GdkPixmap *pixmap = bmp->GetPixmap();
669 GdkBitmap *mask = (GdkBitmap*) NULL;
670 if ( bmp->GetMask() )
671 {
672 mask = bmp->GetMask()->GetBitmap();
673 }
e4a81a2e 674
3eb78d7e 675 GtkWidget *pixmapwid = gtk_pixmap_new (pixmap, mask );
24d20a8f 676
b318dc42 677 gtk_box_pack_start(GTK_BOX(nb_page->m_box), pixmapwid, FALSE, FALSE, m_padding);
24d20a8f 678
3eb78d7e
RR
679 gtk_widget_show(pixmapwid);
680 }
24d20a8f 681
587ce561 682 /* set the label text */
c077ee94 683
b318dc42
JS
684 nb_page->m_text = text;
685 if (nb_page->m_text.IsEmpty()) nb_page->m_text = wxT("");
279b5e2e 686
73e68c1d 687 nb_page->m_label = GTK_LABEL( gtk_label_new(wxGTK_CONV(nb_page->m_text)) );
c077ee94 688 nb_page->SetFont(GetFont());
b318dc42 689 gtk_box_pack_end( GTK_BOX(nb_page->m_box), GTK_WIDGET(nb_page->m_label), FALSE, FALSE, m_padding );
279b5e2e 690
587ce561 691 /* show the label */
b318dc42 692 gtk_widget_show( GTK_WIDGET(nb_page->m_label) );
07b8d7ec 693 if (select && (m_pagesData.GetCount() > 1))
587ce561 694 {
1cc4f822
JJ
695#ifndef __VMS
696 // On VMS position is unsigned and thus always positive
587ce561
RR
697 if (position < 0)
698 SetSelection( GetPageCount()-1 );
8712c6e7 699 else
1cc4f822
JJ
700#endif
701 SetSelection( position );
587ce561 702 }
741fd203 703
587ce561
RR
704 gtk_signal_connect( GTK_OBJECT(m_widget), "switch_page",
705 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback), (gpointer)this );
ff829f3f 706
3eb78d7e 707 return TRUE;
ff7b1510 708}
53b28675 709
279b5e2e
VZ
710// helper for HitTest(): check if the point lies inside the given widget which
711// is the child of the notebook whose position and border size are passed as
712// parameters
713static bool
714IsPointInsideWidget(const wxPoint& pt, GtkWidget *w,
715 gint x, gint y, gint border = 0)
716{
717 return
718 (pt.x >= w->allocation.x - x - border) &&
719 (pt.x <= w->allocation.x - x + border + w->allocation.width) &&
720 (pt.y >= w->allocation.y - y - border) &&
721 (pt.y <= w->allocation.y - y + border + w->allocation.height);
722}
723
724int wxNotebook::HitTest(const wxPoint& pt, long *flags) const
725{
726 const gint x = m_widget->allocation.x;
727 const gint y = m_widget->allocation.y;
728
729 const size_t count = GetPageCount();
730 for ( size_t i = 0; i < count; i++ )
731 {
732 wxGtkNotebookPage* nb_page = GetNotebookPage(i);
733 GtkWidget *box = nb_page->m_box;
734
735 // VZ: don't know how to find the border width in GTK+ 1.2
736#ifdef __WXGTK20__
737 const gint border = gtk_container_get_border_width(GTK_CONTAINER(box));
738#else // !GTK+ 2.x
739 const gint border = 0;
740#endif
741 if ( IsPointInsideWidget(pt, box, x, y, border) )
742 {
743 // ok, we're inside this tab -- now find out where, if needed
744 if ( flags )
745 {
746 GtkWidget *pixmap = NULL;
747
748 GList *children = gtk_container_children(GTK_CONTAINER(box));
749 for ( GList *child = children; child; child = child->next )
750 {
751 if ( GTK_IS_PIXMAP(child->data) )
752 {
753 pixmap = GTK_WIDGET(child->data);
754 break;
755 }
756 }
757
758 if ( children )
759 g_list_free(children);
760
761 if ( pixmap && IsPointInsideWidget(pt, pixmap, x, y) )
762 {
763 *flags = wxNB_HITTEST_ONICON;
764 }
765 else if ( IsPointInsideWidget(pt, GTK_WIDGET(nb_page->m_label), x, y) )
766 {
767 *flags = wxNB_HITTEST_ONLABEL;
768 }
769 else
770 {
771 *flags = wxNB_HITTEST_ONITEM;
772 }
773 }
774
775 return i;
776 }
777 }
778
779 if ( flags )
780 *flags = wxNB_HITTEST_NOWHERE;
781
782 return wxNOT_FOUND;
783}
784
b98d804b
RR
785void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
786{
f861258f 787 if (event.IsWindowChange())
b98d804b 788 AdvanceSelection( event.GetDirection() );
f861258f 789 else
b98d804b
RR
790 event.Skip();
791}
792
93d38175
VS
793#if wxUSE_CONSTRAINTS
794
5a8c929e 795// override these 2 functions to do nothing: everything is done in OnSize
e3e65dac 796void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse) )
5a8c929e 797{
b292e2f5
RR
798 // don't set the sizes of the pages - their correct size is not yet known
799 wxControl::SetConstraintSizes(FALSE);
5a8c929e
VZ
800}
801
e3e65dac 802bool wxNotebook::DoPhase( int WXUNUSED(nPhase) )
5a8c929e 803{
b292e2f5 804 return TRUE;
5a8c929e
VZ
805}
806
93d38175
VS
807#endif
808
f40fdaa3 809void wxNotebook::DoApplyWidgetStyle(GtkRcStyle *style)
a81258be 810{
db434467 811 // TODO, font for labels etc
f40fdaa3 812 gtk_widget_modify_style( m_widget, style );
a81258be
RR
813}
814
58d1c1ae
RR
815bool wxNotebook::IsOwnGtkWindow( GdkWindow *window )
816{
817 return ((m_widget->window == window) ||
9e691f46 818 (NOTEBOOK_PANEL(m_widget) == window));
58d1c1ae
RR
819}
820
c077ee94
RR
821bool wxNotebook::SetFont(const wxFont& font)
822{
823 bool rc=wxNotebookBase::SetFont(font);
824
825 if (rc)
826 {
827 size_t i;
828 for (i=0 ; i < m_pagesData.GetCount() ; i++)
829 GetNotebookPage(i)->SetFont(font);
830 }
831 return rc;
832}
833
9d522606
RD
834// static
835wxVisualAttributes
836wxNotebook::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
837{
838 return GetDefaultAttributesFromGTKWidget(gtk_notebook_new);
839}
840
53b28675 841//-----------------------------------------------------------------------------
ff829f3f 842// wxNotebookEvent
53b28675
RR
843//-----------------------------------------------------------------------------
844
92976ab6 845IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxNotifyEvent)
5b011451 846
a3a7f879 847#endif