1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/notebook.cpp
4 // Author: Robert Roebling
5 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 // For compilers that support precompilation, includes "wx.h".
10 #include "wx/wxprec.h"
14 #include "wx/notebook.h"
20 #include "wx/msgdlg.h"
21 #include "wx/bitmap.h"
24 #include "wx/imaglist.h"
25 #include "wx/fontutil.h"
28 #include "wx/gtk/private.h"
29 #include "wx/gtk/private/gtk2-compat.h"
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 // VZ: this is rather ugly as we keep the pages themselves in an array (it
36 // allows us to have quite a few functions implemented in the base class)
37 // but the page data is kept in a separate list, so we must maintain them
38 // in sync manually... of course, the list had been there before the base
39 // class which explains it but it still would be nice to do something
42 class wxGtkNotebookPage
: public wxObject
52 #include "wx/listimpl.cpp"
53 WX_DEFINE_LIST(wxGtkNotebookPagesList
)
56 static void event_after(GtkNotebook
*, GdkEvent
*, wxNotebook
*);
59 //-----------------------------------------------------------------------------
61 //-----------------------------------------------------------------------------
65 switch_page_after(GtkNotebook
* widget
, GtkNotebookPage
*, guint
, wxNotebook
* win
)
67 g_signal_handlers_block_by_func(widget
, (void*)switch_page_after
, win
);
69 win
->GTKOnPageChanged();
75 switch_page(GtkNotebook
* widget
, GtkNotebookPage
*, int page
, wxNotebook
* win
)
77 win
->m_oldSelection
= gtk_notebook_get_current_page(widget
);
79 if (win
->SendPageChangingEvent(page
))
80 // allow change, unblock handler for changed event
81 g_signal_handlers_unblock_by_func(widget
, (void*)switch_page_after
, win
);
83 // change vetoed, unblock handler to set selection back
84 g_signal_handlers_unblock_by_func(widget
, (void*)event_after
, win
);
88 //-----------------------------------------------------------------------------
89 // "event_after" from m_widget
90 //-----------------------------------------------------------------------------
93 static void event_after(GtkNotebook
* widget
, GdkEvent
*, wxNotebook
* win
)
95 g_signal_handlers_block_by_func(widget
, (void*)event_after
, win
);
96 g_signal_handlers_block_by_func(widget
, (void*)switch_page
, win
);
98 // restore previous selection
99 gtk_notebook_set_current_page(widget
, win
->m_oldSelection
);
101 g_signal_handlers_unblock_by_func(widget
, (void*)switch_page
, win
);
105 //-----------------------------------------------------------------------------
106 // InsertChild callback for wxNotebook
107 //-----------------------------------------------------------------------------
109 void wxNotebook::AddChildGTK(wxWindowGTK
* child
)
111 // Hack Alert! (Part I): This sets the notebook as the parent of the child
112 // widget, and takes care of some details such as updating the state and
113 // style of the child to reflect its new location. We do this early
114 // because without it GetBestSize (which is used to set the initial size
115 // of controls if an explicit size is not given) will often report
116 // incorrect sizes since the widget's style context is not fully known.
117 // See bug #901694 for details
118 // (http://sourceforge.net/tracker/?func=detail&aid=901694&group_id=9863&atid=109863)
119 gtk_widget_set_parent(child
->m_widget
, m_widget
);
121 // NOTE: This should be considered a temporary workaround until we can
122 // work out the details and implement delaying the setting of the initial
123 // size of widgets until the size is really needed.
126 //-----------------------------------------------------------------------------
128 //-----------------------------------------------------------------------------
130 BEGIN_EVENT_TABLE(wxNotebook
, wxBookCtrlBase
)
131 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
134 void wxNotebook::Init()
138 m_themeEnabled
= true;
141 wxNotebook::wxNotebook()
146 wxNotebook::wxNotebook( wxWindow
*parent
, wxWindowID id
,
147 const wxPoint
& pos
, const wxSize
& size
,
148 long style
, const wxString
& name
)
151 Create( parent
, id
, pos
, size
, style
, name
);
154 wxNotebook::~wxNotebook()
159 bool wxNotebook::Create(wxWindow
*parent
, wxWindowID id
,
160 const wxPoint
& pos
, const wxSize
& size
,
161 long style
, const wxString
& name
)
163 if ( (style
& wxBK_ALIGN_MASK
) == wxBK_DEFAULT
)
166 if (!PreCreation( parent
, pos
, size
) ||
167 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
169 wxFAIL_MSG( wxT("wxNoteBook creation failed") );
174 m_widget
= gtk_notebook_new();
175 g_object_ref(m_widget
);
177 gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget
), 1 );
179 g_signal_connect (m_widget
, "switch_page",
180 G_CALLBACK(switch_page
), this);
182 g_signal_connect_after (m_widget
, "switch_page",
183 G_CALLBACK(switch_page_after
), this);
184 g_signal_handlers_block_by_func(m_widget
, (void*)switch_page_after
, this);
186 g_signal_connect(m_widget
, "event_after", G_CALLBACK(event_after
), this);
187 g_signal_handlers_block_by_func(m_widget
, (void*)event_after
, this);
189 m_parent
->DoAddChild( this );
191 if (m_windowStyle
& wxBK_RIGHT
)
192 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget
), GTK_POS_RIGHT
);
193 if (m_windowStyle
& wxBK_LEFT
)
194 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget
), GTK_POS_LEFT
);
195 if (m_windowStyle
& wxBK_BOTTOM
)
196 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget
), GTK_POS_BOTTOM
);
203 int wxNotebook::GetSelection() const
205 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid notebook") );
207 return gtk_notebook_get_current_page( GTK_NOTEBOOK(m_widget
) );
210 wxString
wxNotebook::GetPageText( size_t page
) const
212 wxCHECK_MSG(page
< GetPageCount(), wxEmptyString
, "invalid notebook index");
214 GtkLabel
* label
= GTK_LABEL(GetNotebookPage(page
)->m_label
);
215 return wxGTK_CONV_BACK(gtk_label_get_text(label
));
218 int wxNotebook::GetPageImage( size_t page
) const
220 wxCHECK_MSG(page
< GetPageCount(), wxNOT_FOUND
, "invalid notebook index");
222 return GetNotebookPage(page
)->m_imageIndex
;
225 wxGtkNotebookPage
* wxNotebook::GetNotebookPage( int page
) const
227 return m_pagesData
.Item(page
)->GetData();
230 int wxNotebook::DoSetSelection( size_t page
, int flags
)
232 wxCHECK_MSG(page
< GetPageCount(), wxNOT_FOUND
, "invalid notebook index");
234 int selOld
= GetSelection();
236 if ( !(flags
& SetSelection_SendEvent
) )
238 g_signal_handlers_block_by_func(m_widget
, (void*)switch_page
, this);
241 gtk_notebook_set_current_page( GTK_NOTEBOOK(m_widget
), page
);
243 if ( !(flags
& SetSelection_SendEvent
) )
245 g_signal_handlers_unblock_by_func(m_widget
, (void*)switch_page
, this);
250 wxNotebookPage
*client
= GetPage(page
);
257 void wxNotebook::GTKOnPageChanged()
259 m_selection
= gtk_notebook_get_current_page(GTK_NOTEBOOK(m_widget
));
261 SendPageChangedEvent(m_oldSelection
);
264 bool wxNotebook::SetPageText( size_t page
, const wxString
&text
)
266 wxCHECK_MSG(page
< GetPageCount(), false, "invalid notebook index");
268 GtkLabel
* label
= GTK_LABEL(GetNotebookPage(page
)->m_label
);
269 gtk_label_set_text(label
, wxGTK_CONV(text
));
274 bool wxNotebook::SetPageImage( size_t page
, int image
)
276 wxCHECK_MSG(page
< GetPageCount(), false, "invalid notebook index");
278 wxGtkNotebookPage
* pageData
= GetNotebookPage(page
);
281 wxCHECK_MSG(HasImageList(), false, "invalid notebook imagelist");
282 const wxBitmap
* bitmap
= GetImageList()->GetBitmapPtr(image
);
285 if (pageData
->m_image
)
287 gtk_image_set_from_pixbuf(
288 GTK_IMAGE(pageData
->m_image
), bitmap
->GetPixbuf());
292 pageData
->m_image
= gtk_image_new_from_pixbuf(bitmap
->GetPixbuf());
293 gtk_widget_show(pageData
->m_image
);
294 gtk_box_pack_start(GTK_BOX(pageData
->m_box
),
295 pageData
->m_image
, false, false, m_padding
);
298 else if (pageData
->m_image
)
300 gtk_widget_destroy(pageData
->m_image
);
301 pageData
->m_image
= NULL
;
303 pageData
->m_imageIndex
= image
;
308 wxSize
wxNotebook::CalcSizeFromPage(const wxSize
& sizePage
) const
310 // Compute the max size of the tab labels.
312 const size_t pageCount
= GetPageCount();
313 for ( size_t n
= 0; n
< pageCount
; n
++ )
316 gtk_widget_get_preferred_size(GetNotebookPage(n
)->m_box
, NULL
, &req
);
317 sizeTabMax
.IncTo(wxSize(req
.width
, req
.height
));
320 // Unfortunately this doesn't account for the real tab size and I don't
321 // know how to find it, e.g. where do the margins below come from.
322 const int PAGE_MARGIN
= 3;
323 const int TAB_MARGIN
= 4;
325 sizeTabMax
.IncBy(3*TAB_MARGIN
);
327 wxSize
sizeFull(sizePage
);
329 sizeFull
.y
+= sizeTabMax
.y
;
331 sizeFull
.x
+= sizeTabMax
.x
;
333 sizeFull
.IncBy(2*PAGE_MARGIN
);
338 void wxNotebook::SetPadding( const wxSize
&padding
)
340 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid notebook") );
342 m_padding
= padding
.GetWidth();
344 for (size_t i
= GetPageCount(); i
--;)
346 wxGtkNotebookPage
* pageData
= GetNotebookPage(i
);
347 if (pageData
->m_image
)
349 gtk_box_set_child_packing(GTK_BOX(pageData
->m_box
),
350 pageData
->m_image
, false, false, m_padding
, GTK_PACK_START
);
352 gtk_box_set_child_packing(GTK_BOX(pageData
->m_box
),
353 pageData
->m_label
, false, false, m_padding
, GTK_PACK_END
);
357 void wxNotebook::SetTabSize(const wxSize
& WXUNUSED(sz
))
359 wxFAIL_MSG( wxT("wxNotebook::SetTabSize not implemented") );
362 bool wxNotebook::DeleteAllPages()
364 for (size_t i
= GetPageCount(); i
--;)
367 return wxNotebookBase::DeleteAllPages();
370 wxNotebookPage
*wxNotebook::DoRemovePage( size_t page
)
372 // We cannot remove the page yet, as GTK sends the "switch_page"
373 // signal before it has removed the notebook-page from its
374 // corresponding list. Thus, if we were to remove the page from
375 // m_pages at this point, the two lists of pages would be out
376 // of sync during the PAGE_CHANGING/PAGE_CHANGED events.
377 wxNotebookPage
*client
= GetPage(page
);
381 // we don't need to unparent the client->m_widget; GTK+ will do
382 // that for us (and will throw a warning if we do it!)
383 gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget
), page
);
385 // It's safe to remove the page now.
386 wxASSERT_MSG(GetPage(page
) == client
, wxT("pages changed during delete"));
387 wxNotebookBase::DoRemovePage(page
);
389 wxGtkNotebookPage
* p
= GetNotebookPage(page
);
390 m_pagesData
.DeleteObject(p
);
396 bool wxNotebook::InsertPage( size_t position
,
398 const wxString
& text
,
402 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid notebook") );
404 wxCHECK_MSG( win
->GetParent() == this, false,
405 wxT("Can't add a page whose parent is not the notebook!") );
407 wxCHECK_MSG( position
<= GetPageCount(), false,
408 wxT("invalid page index in wxNotebookPage::InsertPage()") );
410 // Hack Alert! (Part II): See above in wxNotebook::AddChildGTK
411 // why this has to be done.
412 gtk_widget_unparent(win
->m_widget
);
415 win
->SetThemeEnabled(true);
417 GtkNotebook
*notebook
= GTK_NOTEBOOK(m_widget
);
419 wxGtkNotebookPage
* pageData
= new wxGtkNotebookPage
;
421 m_pages
.Insert(win
, position
);
422 m_pagesData
.Insert(position
, pageData
);
424 // set the label image and text
425 // this must be done before adding the page, as GetPageText
426 // and GetPageImage will otherwise return wrong values in
427 // the page-changed event that results from inserting the
429 pageData
->m_imageIndex
= imageId
;
431 pageData
->m_box
= gtk_box_new(GTK_ORIENTATION_HORIZONTAL
, 1);
432 gtk_container_set_border_width(GTK_CONTAINER(pageData
->m_box
), 2);
434 pageData
->m_image
= NULL
;
439 const wxBitmap
* bitmap
= GetImageList()->GetBitmapPtr(imageId
);
440 pageData
->m_image
= gtk_image_new_from_pixbuf(bitmap
->GetPixbuf());
441 gtk_box_pack_start(GTK_BOX(pageData
->m_box
),
442 pageData
->m_image
, false, false, m_padding
);
446 wxFAIL_MSG("invalid notebook imagelist");
450 /* set the label text */
451 pageData
->m_label
= gtk_label_new(wxGTK_CONV(wxStripMenuCodes(text
)));
452 gtk_box_pack_end(GTK_BOX(pageData
->m_box
),
453 pageData
->m_label
, false, false, m_padding
);
455 gtk_widget_show_all(pageData
->m_box
);
456 gtk_notebook_insert_page(notebook
, win
->m_widget
, pageData
->m_box
, position
);
458 /* apply current style */
460 GTKApplyStyle(pageData
->m_label
, NULL
);
462 GtkRcStyle
*style
= GTKCreateWidgetStyle();
465 gtk_widget_modify_style(pageData
->m_label
, style
);
466 g_object_unref(style
);
470 if (select
&& GetPageCount() > 1)
472 SetSelection( position
);
475 InvalidateBestSize();
479 // helper for HitTest(): check if the point lies inside the given widget which
480 // is the child of the notebook whose position and border size are passed as
483 IsPointInsideWidget(const wxPoint
& pt
, GtkWidget
*w
,
484 gint x
, gint y
, gint border
= 0)
487 gtk_widget_get_allocation(w
, &a
);
489 (pt
.x
>= a
.x
- x
- border
) &&
490 (pt
.x
<= a
.x
- x
+ border
+ a
.width
) &&
491 (pt
.y
>= a
.y
- y
- border
) &&
492 (pt
.y
<= a
.y
- y
+ border
+ a
.height
);
495 int wxNotebook::HitTest(const wxPoint
& pt
, long *flags
) const
498 gtk_widget_get_allocation(m_widget
, &a
);
502 const size_t count
= GetPageCount();
506 GtkNotebook
* notebook
= GTK_NOTEBOOK(m_widget
);
507 if (gtk_notebook_get_scrollable(notebook
))
508 i
= g_list_position( notebook
->children
, notebook
->first_tab
);
511 for ( ; i
< count
; i
++ )
513 wxGtkNotebookPage
* pageData
= GetNotebookPage(i
);
514 GtkWidget
* box
= pageData
->m_box
;
516 const gint border
= gtk_container_get_border_width(GTK_CONTAINER(box
));
518 if ( IsPointInsideWidget(pt
, box
, x
, y
, border
) )
520 // ok, we're inside this tab -- now find out where, if needed
523 if (pageData
->m_image
&& IsPointInsideWidget(pt
, pageData
->m_image
, x
, y
))
525 *flags
= wxBK_HITTEST_ONICON
;
527 else if (IsPointInsideWidget(pt
, pageData
->m_label
, x
, y
))
529 *flags
= wxBK_HITTEST_ONLABEL
;
533 *flags
= wxBK_HITTEST_ONITEM
;
543 *flags
= wxBK_HITTEST_NOWHERE
;
544 wxWindowBase
* page
= GetCurrentPage();
547 // rect origin is in notebook's parent coordinates
548 wxRect rect
= page
->GetRect();
550 // adjust it to the notebook's coordinates
551 wxPoint pos
= GetPosition();
554 if ( rect
.Contains( pt
) )
555 *flags
|= wxBK_HITTEST_ONPAGE
;
562 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
564 if (event
.IsWindowChange())
565 AdvanceSelection( event
.GetDirection() );
570 #if wxUSE_CONSTRAINTS
572 // override these 2 functions to do nothing: everything is done in OnSize
573 void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse
) )
575 // don't set the sizes of the pages - their correct size is not yet known
576 wxControl::SetConstraintSizes(false);
579 bool wxNotebook::DoPhase( int WXUNUSED(nPhase
) )
586 void wxNotebook::DoApplyWidgetStyle(GtkRcStyle
*style
)
588 GTKApplyStyle(m_widget
, style
);
589 for (size_t i
= GetPageCount(); i
--;)
590 GTKApplyStyle(GetNotebookPage(i
)->m_label
, style
);
593 GdkWindow
*wxNotebook::GTKGetWindow(wxArrayGdkWindows
& windows
) const
595 windows
.push_back(gtk_widget_get_window(m_widget
));
597 // no access to internal GdkWindows
599 windows
.push_back(GTK_NOTEBOOK(m_widget
)->event_window
);
607 wxNotebook::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
609 return GetDefaultAttributesFromGTKWidget(gtk_notebook_new());