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"
20 #include "wx/imaglist.h"
26 #include "wx/gtk/win_gtk.h"
27 #include "gdk/gdkkeysyms.h"
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern void wxapp_install_idle_handler();
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 extern bool g_blockEventsOnDrag
;
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
48 extern void debug_focus_in( GtkWidget
* widget
, const wxChar
* name
, const wxChar
*window
);
52 //-----------------------------------------------------------------------------
54 //-----------------------------------------------------------------------------
56 class wxNotebookPage
: public wxObject
63 m_page
= (GtkNotebookPage
*) NULL
;
64 m_client
= (wxWindow
*) NULL
;
65 m_box
= (GtkWidget
*) NULL
;
70 GtkNotebookPage
*m_page
;
73 GtkWidget
*m_box
; // in which the label and image are packed
76 //-----------------------------------------------------------------------------
78 //-----------------------------------------------------------------------------
80 static void gtk_notebook_page_change_callback(GtkNotebook
*WXUNUSED(widget
),
81 GtkNotebookPage
*WXUNUSED(page
),
83 wxNotebook
*notebook
)
86 wxapp_install_idle_handler();
88 int old
= notebook
->GetSelection();
90 wxNotebookEvent
event1( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
,
91 notebook
->GetId(), page
, old
);
92 event1
.SetEventObject( notebook
);
94 if ((notebook
->GetEventHandler()->ProcessEvent( event1
)) &&
97 /* program doesn't allow the page change */
98 gtk_signal_emit_stop_by_name( GTK_OBJECT(notebook
->m_widget
), "switch_page" );
102 wxNotebookEvent
event2( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
,
103 notebook
->GetId(), page
, old
);
104 event2
.SetEventObject( notebook
);
105 notebook
->GetEventHandler()->ProcessEvent( event2
);
108 //-----------------------------------------------------------------------------
110 //-----------------------------------------------------------------------------
112 static void gtk_page_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxWindow
*win
)
115 wxapp_install_idle_handler();
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
))
125 win
->SetSize( alloc
->x
, alloc
->y
, alloc
->width
, alloc
->height
);
127 if (win
->GetAutoLayout()) win
->Layout();
130 //-----------------------------------------------------------------------------
131 // InsertChild callback for wxNotebook
132 //-----------------------------------------------------------------------------
134 static void wxInsertChildInNotebook( wxNotebook
* WXUNUSED(parent
), wxWindow
* WXUNUSED(child
) )
136 /* we don't do anything here but pray */
139 //-----------------------------------------------------------------------------
141 //-----------------------------------------------------------------------------
143 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
,wxControl
)
145 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
146 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
149 void wxNotebook::Init()
151 m_imageList
= (wxImageList
*) NULL
;
152 m_pages
.DeleteContents( TRUE
);
153 m_lastSelection
= -1;
156 wxNotebook::wxNotebook()
161 wxNotebook::wxNotebook( wxWindow
*parent
, wxWindowID id
,
162 const wxPoint
& pos
, const wxSize
& size
,
163 long style
, const wxString
& name
)
166 Create( parent
, id
, pos
, size
, style
, name
);
169 wxNotebook::~wxNotebook()
171 /* don't generate change page events any more */
172 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget
),
173 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
) this );
178 bool wxNotebook::Create(wxWindow
*parent
, wxWindowID id
,
179 const wxPoint
& pos
, const wxSize
& size
,
180 long style
, const wxString
& name
)
183 m_acceptsFocus
= TRUE
;
184 m_insertCallback
= (wxInsertChildFunction
)wxInsertChildInNotebook
;
186 if (!PreCreation( parent
, pos
, size
) ||
187 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
189 wxFAIL_MSG( _T("wxNoteBook creation failed") );
194 m_widget
= gtk_notebook_new();
197 debug_focus_in( m_widget
, _T("wxNotebook::m_widget"), name
);
200 gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget
), 1 );
202 gtk_signal_connect( GTK_OBJECT(m_widget
), "switch_page",
203 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
)this );
205 m_parent
->DoAddChild( this );
207 if(m_windowStyle
& wxNB_RIGHT
)
208 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget
), GTK_POS_RIGHT
);
209 if(m_windowStyle
& wxNB_LEFT
)
210 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget
), GTK_POS_LEFT
);
211 if(m_windowStyle
& wxNB_BOTTOM
)
212 gtk_notebook_set_tab_pos( GTK_NOTEBOOK(m_widget
), GTK_POS_BOTTOM
);
221 void wxNotebook::SetFocus()
223 if (m_pages
.GetCount() == 0) return;
225 wxNode
*node
= m_pages
.Nth( GetSelection() );
229 wxNotebookPage
*page
= (wxNotebookPage
*) node
->Data();
231 page
->m_client
->SetFocus();
234 int wxNotebook::GetSelection() const
236 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
238 GList
*pages
= GTK_NOTEBOOK(m_widget
)->children
;
240 if (g_list_length(pages
) == 0) return -1;
242 GtkNotebook
*notebook
= GTK_NOTEBOOK(m_widget
);
244 if (notebook
->cur_page
== NULL
) return m_lastSelection
;
246 return g_list_index( pages
, (gpointer
)(notebook
->cur_page
) );
249 int wxNotebook::GetPageCount() const
251 return (int) g_list_length( GTK_NOTEBOOK(m_widget
)->children
);
254 int wxNotebook::GetRowCount() const
259 wxString
wxNotebook::GetPageText( int page
) const
261 wxCHECK_MSG( m_widget
!= NULL
, _T(""), _T("invalid notebook") );
263 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
265 return nb_page
->m_text
;
270 int wxNotebook::GetPageImage( int page
) const
272 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
274 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
276 return nb_page
->m_image
;
281 wxNotebookPage
* wxNotebook::GetNotebookPage( int page
) const
283 wxCHECK_MSG( m_widget
!= NULL
, (wxNotebookPage
*) NULL
, _T("invalid notebook") );
285 wxCHECK_MSG( page
< (int)m_pages
.GetCount(), (wxNotebookPage
*) NULL
, _T("invalid notebook index") );
287 wxNode
*node
= m_pages
.Nth( page
);
289 return (wxNotebookPage
*) node
->Data();
292 int wxNotebook::SetSelection( int page
)
294 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
296 wxCHECK_MSG( page
< (int)m_pages
.GetCount(), -1, _T("invalid notebook index") );
298 int selOld
= GetSelection();
300 gtk_notebook_set_page( GTK_NOTEBOOK(m_widget
), page
);
305 void wxNotebook::AdvanceSelection( bool forward
)
307 wxCHECK_RET( m_widget
!= NULL
, _T("invalid notebook") );
309 int sel
= GetSelection();
310 int max
= GetPageCount();
313 SetSelection( sel
== max
? 0 : sel
+ 1 );
315 SetSelection( sel
== 0 ? max
-1 : sel
- 1 );
318 void wxNotebook::SetImageList( wxImageList
* imageList
)
320 m_imageList
= imageList
;
323 bool wxNotebook::SetPageText( int page
, const wxString
&text
)
325 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
327 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
329 wxCHECK_MSG( nb_page
, FALSE
, _T("SetPageText: invalid page index") );
331 nb_page
->m_text
= text
;
333 gtk_label_set( nb_page
->m_label
, nb_page
->m_text
.mbc_str() );
338 bool wxNotebook::SetPageImage( int page
, int image
)
340 /* HvdH 28-12-98: now it works, but it's a bit of a kludge */
342 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
344 if (!nb_page
) return FALSE
;
346 /* Optimization posibility: return immediately if image unchanged.
347 * Not enabled because it may break existing (stupid) code that
348 * manipulates the imagelist to cycle images */
350 /* if (image == nb_page->m_image) return TRUE; */
352 /* For different cases:
353 1) no image -> no image
358 if (image
== -1 && nb_page
->m_image
== -1)
359 return TRUE
; /* Case 1): Nothing to do. */
361 GtkWidget
*pixmapwid
= (GtkWidget
*) NULL
;
363 if (nb_page
->m_image
!= -1)
365 /* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
367 GList
*child
= gtk_container_children(GTK_CONTAINER(nb_page
->m_box
));
370 if (GTK_IS_PIXMAP(child
->data
))
372 pixmapwid
= GTK_WIDGET(child
->data
);
378 /* We should have the pixmap widget now */
379 wxASSERT(pixmapwid
!= NULL
);
383 /* If there's no new widget, just remove the old from the box */
384 gtk_container_remove(GTK_CONTAINER(nb_page
->m_box
), pixmapwid
);
385 nb_page
->m_image
= -1;
387 return TRUE
; /* Case 2) */
391 /* Only cases 3) and 4) left */
392 wxASSERT( m_imageList
!= NULL
); /* Just in case */
394 /* Construct the new pixmap */
395 const wxBitmap
*bmp
= m_imageList
->GetBitmap(image
);
396 GdkPixmap
*pixmap
= bmp
->GetPixmap();
397 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
398 if ( bmp
->GetMask() )
400 mask
= bmp
->GetMask()->GetBitmap();
403 if (pixmapwid
== NULL
)
405 /* Case 3) No old pixmap. Create a new one and prepend it to the hbox */
406 pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
408 /* CHECKME: Are these pack flags okay? */
409 gtk_box_pack_start(GTK_BOX(nb_page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
410 gtk_widget_show(pixmapwid
);
414 /* Case 4) Simply replace the pixmap */
415 gtk_pixmap_set(GTK_PIXMAP(pixmapwid
), pixmap
, mask
);
418 nb_page
->m_image
= image
;
423 void wxNotebook::SetPageSize( const wxSize
&WXUNUSED(size
) )
425 wxFAIL_MSG( _T("wxNotebook::SetPageSize not implemented") );
428 void wxNotebook::SetPadding( const wxSize
&WXUNUSED(padding
) )
430 wxFAIL_MSG( _T("wxNotebook::SetPadding not implemented") );
433 void wxNotebook::SetTabSize(const wxSize
& WXUNUSED(sz
))
435 wxFAIL_MSG( _T("wxNotebook::SetTabSize not implemented") );
438 bool wxNotebook::DeleteAllPages()
440 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
442 while (m_pages
.GetCount() > 0)
443 DeletePage( m_pages
.GetCount()-1 );
448 bool wxNotebook::DeletePage( int page
)
450 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
451 if (!nb_page
) return FALSE
;
453 /* GTK sets GtkNotebook.cur_page to NULL before sending
454 the switvh page event */
455 m_lastSelection
= GetSelection();
457 nb_page
->m_client
->Destroy();
458 m_pages
.DeleteObject( nb_page
);
460 m_lastSelection
= -1;
465 bool wxNotebook::RemovePage( int page
)
467 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
469 if (!nb_page
) return FALSE
;
471 gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget
), page
);
473 m_pages
.DeleteObject( nb_page
);
478 bool wxNotebook::InsertPage( int position
, wxWindow
* win
, const wxString
& text
,
479 bool select
, int imageId
)
481 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
483 wxCHECK_MSG( win
->GetParent() == this, FALSE
,
484 _T("Can't add a page whose parent is not the notebook!") );
486 /* don't receive switch page during addition */
487 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget
),
488 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
) this );
490 GtkNotebook
*notebook
= GTK_NOTEBOOK(m_widget
);
492 wxNotebookPage
*page
= new wxNotebookPage();
495 m_pages
.Append( page
);
497 m_pages
.Insert( m_pages
.Nth( position
), page
);
499 page
->m_client
= win
;
501 page
->m_box
= gtk_hbox_new( FALSE
, 0 );
502 gtk_container_border_width( GTK_CONTAINER(page
->m_box
), 2 );
504 gtk_signal_connect( GTK_OBJECT(win
->m_widget
), "size_allocate",
505 GTK_SIGNAL_FUNC(gtk_page_size_callback
), (gpointer
)win
);
508 gtk_notebook_append_page( notebook
, win
->m_widget
, page
->m_box
);
510 gtk_notebook_insert_page( notebook
, win
->m_widget
, page
->m_box
, position
);
512 page
->m_page
= (GtkNotebookPage
*) g_list_last(notebook
->children
)->data
;
514 /* set the label image */
515 page
->m_image
= imageId
;
519 wxASSERT( m_imageList
!= NULL
);
521 const wxBitmap
*bmp
= m_imageList
->GetBitmap(imageId
);
522 GdkPixmap
*pixmap
= bmp
->GetPixmap();
523 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
524 if ( bmp
->GetMask() )
526 mask
= bmp
->GetMask()->GetBitmap();
529 GtkWidget
*pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
531 gtk_box_pack_start(GTK_BOX(page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
533 gtk_widget_show(pixmapwid
);
536 /* set the label text */
538 if (page
->m_text
.IsEmpty()) page
->m_text
= _T("");
540 page
->m_label
= GTK_LABEL( gtk_label_new(page
->m_text
.mbc_str()) );
541 gtk_box_pack_end( GTK_BOX(page
->m_box
), GTK_WIDGET(page
->m_label
), FALSE
, FALSE
, 3 );
544 gtk_widget_show( GTK_WIDGET(page
->m_label
) );
546 if (select
&& (m_pages
.GetCount() > 1))
549 SetSelection( GetPageCount()-1 );
551 SetSelection( position
);
554 gtk_signal_connect( GTK_OBJECT(m_widget
), "switch_page",
555 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
), (gpointer
)this );
560 bool wxNotebook::AddPage(wxWindow
* win
, const wxString
& text
,
561 bool select
, int imageId
)
563 return InsertPage( -1, win
, text
, select
, imageId
);
566 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
568 if (event
.IsWindowChange())
569 AdvanceSelection( event
.GetDirection() );
574 wxWindow
*wxNotebook::GetPage( int page
) const
576 wxCHECK_MSG( m_widget
!= NULL
, (wxWindow
*) NULL
, _T("invalid notebook") );
578 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
580 return (wxWindow
*) NULL
;
582 return nb_page
->m_client
;
585 // override these 2 functions to do nothing: everything is done in OnSize
586 void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse
) )
588 // don't set the sizes of the pages - their correct size is not yet known
589 wxControl::SetConstraintSizes(FALSE
);
592 bool wxNotebook::DoPhase( int WXUNUSED(nPhase
) )
597 void wxNotebook::ApplyWidgetStyle()
600 gtk_widget_set_style( m_widget
, m_widgetStyle
);
603 bool wxNotebook::IsOwnGtkWindow( GdkWindow
*window
)
605 return ((m_widget
->window
== window
) ||
606 (GTK_NOTEBOOK(m_widget
)->panel
== window
));
609 //-----------------------------------------------------------------------------
611 //-----------------------------------------------------------------------------
613 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)