1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "notebook.h"
14 #include "wx/notebook.h"
17 #include "wx/imaglist.h"
23 #include "wx/gtk/win_gtk.h"
24 #include "gdk/gdkkeysyms.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 extern void wxapp_install_idle_handler();
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
37 extern bool g_blockEventsOnDrag
;
39 //-----------------------------------------------------------------------------
41 //-----------------------------------------------------------------------------
45 extern void debug_focus_in( GtkWidget
* widget
, const wxChar
* name
, const wxChar
*window
);
49 //-----------------------------------------------------------------------------
51 //-----------------------------------------------------------------------------
53 class wxNotebookPage
: public wxObject
60 m_page
= (GtkNotebookPage
*) NULL
;
61 m_client
= (wxWindow
*) NULL
;
62 m_box
= (GtkWidget
*) NULL
;
67 GtkNotebookPage
*m_page
;
70 GtkWidget
*m_box
; // in which the label and image are packed
73 //-----------------------------------------------------------------------------
75 //-----------------------------------------------------------------------------
77 static void gtk_notebook_page_change_callback(GtkNotebook
*WXUNUSED(widget
),
78 GtkNotebookPage
*WXUNUSED(page
),
80 wxNotebook
*notebook
)
83 wxapp_install_idle_handler();
85 int old
= notebook
->GetSelection();
87 wxNotebookEvent
event1( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
,
88 notebook
->GetId(), page
, old
);
89 event1
.SetEventObject( notebook
);
91 if ((notebook
->GetEventHandler()->ProcessEvent( event1
)) &&
94 /* program doesn't allow the page change */
95 gtk_signal_emit_stop_by_name( GTK_OBJECT(notebook
->m_widget
), "switch_page" );
99 wxNotebookEvent
event2( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
,
100 notebook
->GetId(), page
, old
);
101 event2
.SetEventObject( notebook
);
102 notebook
->GetEventHandler()->ProcessEvent( event2
);
105 //-----------------------------------------------------------------------------
107 //-----------------------------------------------------------------------------
109 static void gtk_page_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxWindow
*win
)
112 wxapp_install_idle_handler();
114 if ((win
->m_x
== alloc
->x
) &&
115 (win
->m_y
== alloc
->y
) &&
116 (win
->m_width
== alloc
->width
) &&
117 (win
->m_height
== alloc
->height
))
122 win
->SetSize( alloc
->x
, alloc
->y
, alloc
->width
, alloc
->height
);
124 if (win
->GetAutoLayout()) win
->Layout();
127 //-----------------------------------------------------------------------------
129 //-----------------------------------------------------------------------------
132 gtk_notebook_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxNotebook
*notebook
)
134 if (g_isIdle
) wxapp_install_idle_handler();
136 if (g_blockEventsOnDrag
) return FALSE
;
138 if (!notebook
->m_hasVMT
) return FALSE
;
140 /* this code makes jumping down from the handles of the notebooks
141 to the actual items in the visible notebook page possible with
142 the down-arrow key */
144 if (gdk_event
->keyval
!= GDK_Down
) return FALSE
;
146 if (notebook
!= notebook
->FindFocus()) return FALSE
;
148 if (notebook
->m_pages
.GetCount() == 0) return FALSE
;
150 wxNode
*node
= notebook
->m_pages
.Nth( notebook
->GetSelection() );
152 if (!node
) return FALSE
;
154 wxNotebookPage
*page
= (wxNotebookPage
*) node
->Data();
156 // don't let others the key event
157 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
159 page
->m_client
->SetFocus();
164 //-----------------------------------------------------------------------------
165 // InsertChild callback for wxNotebook
166 //-----------------------------------------------------------------------------
168 static void wxInsertChildInNotebook( wxNotebook
* WXUNUSED(parent
), wxWindow
* WXUNUSED(child
) )
170 /* we don't do anything here but pray */
173 //-----------------------------------------------------------------------------
175 //-----------------------------------------------------------------------------
177 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
,wxControl
)
179 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
180 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
183 void wxNotebook::Init()
185 m_imageList
= (wxImageList
*) NULL
;
186 m_pages
.DeleteContents( TRUE
);
189 wxNotebook::wxNotebook()
194 wxNotebook::wxNotebook( wxWindow
*parent
, wxWindowID id
,
195 const wxPoint
& pos
, const wxSize
& size
,
196 long style
, const wxString
& name
)
199 Create( parent
, id
, pos
, size
, style
, name
);
202 wxNotebook::~wxNotebook()
204 /* don't generate change page events any more */
205 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget
),
206 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
) this );
211 bool wxNotebook::Create(wxWindow
*parent
, wxWindowID id
,
212 const wxPoint
& pos
, const wxSize
& size
,
213 long style
, const wxString
& name
)
216 m_acceptsFocus
= TRUE
;
217 m_insertCallback
= (wxInsertChildFunction
)wxInsertChildInNotebook
;
219 PreCreation( parent
, id
, pos
, size
, style
, name
);
221 m_widget
= gtk_notebook_new();
224 debug_focus_in( m_widget
, _T("wxNotebook::m_widget"), name
);
227 gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget
), 1 );
229 gtk_signal_connect( GTK_OBJECT(m_widget
), "switch_page",
230 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
)this );
232 m_parent
->DoAddChild( this );
234 gtk_signal_connect( GTK_OBJECT(m_widget
), "key_press_event",
235 GTK_SIGNAL_FUNC(gtk_notebook_key_press_callback
), (gpointer
)this );
244 int wxNotebook::GetSelection() const
246 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
248 GList
*pages
= GTK_NOTEBOOK(m_widget
)->children
;
250 if (g_list_length(pages
) == 0) return -1;
252 GtkNotebook
*notebook
= GTK_NOTEBOOK(m_widget
);
254 GtkNotebookPage
*page
= GTK_NOTEBOOK_PAGE( notebook
->cur_page
);
256 wxCHECK_MSG( page
, -1, "no notebook page selected/current" );
258 return g_list_index( pages
, (gpointer
)page
);
261 int wxNotebook::GetPageCount() const
263 return (int) g_list_length( GTK_NOTEBOOK(m_widget
)->children
);
266 int wxNotebook::GetRowCount() const
271 wxString
wxNotebook::GetPageText( int page
) const
273 wxCHECK_MSG( m_widget
!= NULL
, _T(""), _T("invalid notebook") );
275 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
277 return nb_page
->m_text
;
282 int wxNotebook::GetPageImage( int page
) const
284 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
286 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
288 return nb_page
->m_image
;
293 wxNotebookPage
* wxNotebook::GetNotebookPage( int page
) const
295 wxCHECK_MSG( m_widget
!= NULL
, (wxNotebookPage
*) NULL
, _T("invalid notebook") );
297 wxCHECK_MSG( page
< (int)m_pages
.GetCount(), (wxNotebookPage
*) NULL
, _T("invalid notebook index") );
299 wxNode
*node
= m_pages
.Nth( page
);
301 return (wxNotebookPage
*) node
->Data();
304 int wxNotebook::SetSelection( int page
)
306 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
308 wxCHECK_MSG( page
< (int)m_pages
.GetCount(), -1, _T("invalid notebook index") );
310 int selOld
= GetSelection();
312 gtk_notebook_set_page( GTK_NOTEBOOK(m_widget
), page
);
317 void wxNotebook::AdvanceSelection( bool forward
)
319 wxCHECK_RET( m_widget
!= NULL
, _T("invalid notebook") );
321 int sel
= GetSelection();
322 int max
= GetPageCount();
325 SetSelection( sel
== max
? 0 : sel
+ 1 );
327 SetSelection( sel
== 0 ? max
-1 : sel
- 1 );
330 void wxNotebook::SetImageList( wxImageList
* imageList
)
332 m_imageList
= imageList
;
335 bool wxNotebook::SetPageText( int page
, const wxString
&text
)
337 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
339 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
341 wxCHECK_MSG( nb_page
, FALSE
, _T("SetPageText: invalid page index") );
343 nb_page
->m_text
= text
;
345 gtk_label_set( nb_page
->m_label
, nb_page
->m_text
.mbc_str() );
350 bool wxNotebook::SetPageImage( int page
, int image
)
352 /* HvdH 28-12-98: now it works, but it's a bit of a kludge */
354 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
356 if (!nb_page
) return FALSE
;
358 /* Optimization posibility: return immediately if image unchanged.
359 * Not enabled because it may break existing (stupid) code that
360 * manipulates the imagelist to cycle images */
362 /* if (image == nb_page->m_image) return TRUE; */
364 /* For different cases:
365 1) no image -> no image
370 if (image
== -1 && nb_page
->m_image
== -1)
371 return TRUE
; /* Case 1): Nothing to do. */
373 GtkWidget
*pixmapwid
= (GtkWidget
*) NULL
;
375 if (nb_page
->m_image
!= -1)
377 /* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
379 GList
*child
= gtk_container_children(GTK_CONTAINER(nb_page
->m_box
));
382 if (GTK_IS_PIXMAP(child
->data
))
384 pixmapwid
= GTK_WIDGET(child
->data
);
390 /* We should have the pixmap widget now */
391 wxASSERT(pixmapwid
!= NULL
);
395 /* If there's no new widget, just remove the old from the box */
396 gtk_container_remove(GTK_CONTAINER(nb_page
->m_box
), pixmapwid
);
397 nb_page
->m_image
= -1;
399 return TRUE
; /* Case 2) */
403 /* Only cases 3) and 4) left */
404 wxASSERT( m_imageList
!= NULL
); /* Just in case */
406 /* Construct the new pixmap */
407 const wxBitmap
*bmp
= m_imageList
->GetBitmap(image
);
408 GdkPixmap
*pixmap
= bmp
->GetPixmap();
409 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
410 if ( bmp
->GetMask() )
412 mask
= bmp
->GetMask()->GetBitmap();
415 if (pixmapwid
== NULL
)
417 /* Case 3) No old pixmap. Create a new one and prepend it to the hbox */
418 pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
420 /* CHECKME: Are these pack flags okay? */
421 gtk_box_pack_start(GTK_BOX(nb_page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
422 gtk_widget_show(pixmapwid
);
426 /* Case 4) Simply replace the pixmap */
427 gtk_pixmap_set(GTK_PIXMAP(pixmapwid
), pixmap
, mask
);
430 nb_page
->m_image
= image
;
435 void wxNotebook::SetPageSize( const wxSize
&WXUNUSED(size
) )
437 wxFAIL_MSG( _T("wxNotebook::SetPageSize not implemented") );
440 void wxNotebook::SetPadding( const wxSize
&WXUNUSED(padding
) )
442 wxFAIL_MSG( _T("wxNotebook::SetPadding not implemented") );
445 void wxNotebook::SetTabSize(const wxSize
& WXUNUSED(sz
))
447 wxFAIL_MSG( _T("wxNotebook::SetTabSize not implemented") );
450 bool wxNotebook::DeleteAllPages()
452 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
454 while (m_pages
.GetCount() > 0)
455 DeletePage( m_pages
.GetCount()-1 );
460 bool wxNotebook::DeletePage( int page
)
462 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
463 if (!nb_page
) return FALSE
;
465 nb_page
->m_client
->Destroy();
467 m_pages
.DeleteObject( nb_page
);
472 bool wxNotebook::RemovePage( int page
)
474 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
476 if (!nb_page
) return FALSE
;
478 gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget
), page
);
480 m_pages
.DeleteObject( nb_page
);
485 bool wxNotebook::InsertPage( int position
, wxWindow
* win
, const wxString
& text
,
486 bool select
, int imageId
)
488 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
490 wxCHECK_MSG( win
->GetParent() == this, FALSE
,
491 _T("Can't add a page whose parent is not the notebook!") );
493 /* don't receive switch page during addition */
494 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget
),
495 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
) this );
497 GtkNotebook
*notebook
= GTK_NOTEBOOK(m_widget
);
499 wxNotebookPage
*page
= new wxNotebookPage();
502 m_pages
.Append( page
);
504 m_pages
.Insert( m_pages
.Nth( position
), page
);
506 page
->m_client
= win
;
508 page
->m_box
= gtk_hbox_new( FALSE
, 0 );
509 gtk_container_border_width( GTK_CONTAINER(page
->m_box
), 2 );
512 gtk_notebook_append_page( notebook
, win
->m_widget
, page
->m_box
);
514 gtk_notebook_insert_page( notebook
, win
->m_widget
, page
->m_box
, position
);
516 page
->m_page
= GTK_NOTEBOOK_PAGE( g_list_last(notebook
->children
)->data
);
518 gtk_signal_connect( GTK_OBJECT(win
->m_widget
), "size_allocate",
519 GTK_SIGNAL_FUNC(gtk_page_size_callback
), (gpointer
)win
);
521 /* set the label image */
522 page
->m_image
= imageId
;
526 wxASSERT( m_imageList
!= NULL
);
528 const wxBitmap
*bmp
= m_imageList
->GetBitmap(imageId
);
529 GdkPixmap
*pixmap
= bmp
->GetPixmap();
530 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
531 if ( bmp
->GetMask() )
533 mask
= bmp
->GetMask()->GetBitmap();
536 GtkWidget
*pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
538 gtk_box_pack_start(GTK_BOX(page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
540 gtk_widget_show(pixmapwid
);
543 /* set the label text */
545 if (page
->m_text
.IsEmpty()) page
->m_text
= _T("");
547 page
->m_label
= GTK_LABEL( gtk_label_new(page
->m_text
.mbc_str()) );
548 gtk_box_pack_end( GTK_BOX(page
->m_box
), GTK_WIDGET(page
->m_label
), FALSE
, FALSE
, 3 );
551 gtk_widget_show( GTK_WIDGET(page
->m_label
) );
553 if (select
&& (m_pages
.GetCount() > 1))
556 SetSelection( GetPageCount()-1 );
558 SetSelection( position
);
561 gtk_signal_connect( GTK_OBJECT(m_widget
), "switch_page",
562 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
)this );
567 bool wxNotebook::AddPage(wxWindow
* win
, const wxString
& text
,
568 bool select
, int imageId
)
570 return InsertPage( -1, win
, text
, select
, imageId
);
573 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
575 if (event
.IsWindowChange())
576 AdvanceSelection( event
.GetDirection() );
581 wxWindow
*wxNotebook::GetPage( int page
) const
583 wxCHECK_MSG( m_widget
!= NULL
, (wxWindow
*) NULL
, _T("invalid notebook") );
585 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
587 return (wxWindow
*) NULL
;
589 return nb_page
->m_client
;
592 // override these 2 functions to do nothing: everything is done in OnSize
593 void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse
) )
595 // don't set the sizes of the pages - their correct size is not yet known
596 wxControl::SetConstraintSizes(FALSE
);
599 bool wxNotebook::DoPhase( int WXUNUSED(nPhase
) )
604 void wxNotebook::ApplyWidgetStyle()
607 gtk_widget_set_style( m_widget
, m_widgetStyle
);
610 bool wxNotebook::IsOwnGtkWindow( GdkWindow
*window
)
612 return ((m_widget
->window
== window
) ||
613 (GTK_NOTEBOOK(m_widget
)->panel
== window
));
616 //-----------------------------------------------------------------------------
618 //-----------------------------------------------------------------------------
620 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)