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 bool g_blockEventsOnDrag
;
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 class wxNotebookPage
: public wxObject
44 m_page
= (GtkNotebookPage
*) NULL
;
45 m_client
= (wxWindow
*) NULL
;
46 m_parent
= (GtkNotebook
*) NULL
;
47 m_box
= (GtkWidget
*) NULL
;
52 mark page as "added' to the notebook, return FALSE if the page was
65 bool WasAdded() const { return m_added
; }
70 GtkNotebookPage
*m_page
;
73 GtkNotebook
*m_parent
;
74 GtkWidget
*m_box
; // in which the label and image are packed
80 //-----------------------------------------------------------------------------
82 //-----------------------------------------------------------------------------
84 static void gtk_notebook_page_change_callback(GtkNotebook
*WXUNUSED(widget
),
85 GtkNotebookPage
*WXUNUSED(page
),
89 wxNotebook
*notebook
= (wxNotebook
*)data
;
91 int old
= notebook
->GetSelection();
93 // TODO: emulate PAGE_CHANGING event
95 wxNotebookEvent
event( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
,
96 notebook
->GetId(), nPage
, old
);
97 event
.SetEventObject( notebook
);
98 notebook
->GetEventHandler()->ProcessEvent( event
);
101 //-----------------------------------------------------------------------------
103 //-----------------------------------------------------------------------------
105 static void gtk_page_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxWindow
*win
)
107 if ((win
->m_x
== alloc
->x
) &&
108 (win
->m_y
== alloc
->y
) &&
109 (win
->m_width
== alloc
->width
) &&
110 (win
->m_height
== alloc
->height
))
115 win
->SetSize( alloc
->x
, alloc
->y
, alloc
->width
, alloc
->height
);
117 if (win
->GetAutoLayout()) win
->Layout();
120 //-----------------------------------------------------------------------------
122 //-----------------------------------------------------------------------------
125 gtk_notebook_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxNotebook
*notebook
)
127 if (g_blockEventsOnDrag
) return FALSE
;
129 if (!notebook
->HasVMT()) return FALSE
;
131 /* this code makes jumping down from the handles of the notebooks
132 to the actual items in the visible notebook page possible with
133 the down-arrow key */
135 if (gdk_event
->keyval
!= GDK_Down
) return FALSE
;
137 if (notebook
!= notebook
->FindFocus()) return FALSE
;
139 if (notebook
->m_pages
.GetCount() == 0) return FALSE
;
141 wxNode
*node
= notebook
->m_pages
.Nth( notebook
->GetSelection() );
143 if (!node
) return FALSE
;
145 wxNotebookPage
*page
= (wxNotebookPage
*) node
->Data();
147 // don't let others the key event
148 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
150 page
->m_client
->SetFocus();
155 //-----------------------------------------------------------------------------
156 // InsertChild callback for wxNotebook
157 //-----------------------------------------------------------------------------
159 static void wxInsertChildInNotebook( wxNotebook
* parent
, wxWindow
* child
)
161 wxNotebookPage
*page
= new wxNotebookPage();
163 page
->m_id
= parent
->GetPageCount();
165 page
->m_box
= gtk_hbox_new (FALSE
, 0);
166 gtk_container_border_width(GTK_CONTAINER(page
->m_box
), 2);
168 GtkNotebook
*notebook
= GTK_NOTEBOOK(parent
->m_widget
);
170 page
->m_client
= child
;
171 gtk_notebook_append_page( notebook
, child
->m_widget
, page
->m_box
);
173 page
->m_page
= (GtkNotebookPage
*) (g_list_last(notebook
->children
)->data
);
175 page
->m_parent
= notebook
;
177 gtk_signal_connect( GTK_OBJECT(child
->m_widget
), "size_allocate",
178 GTK_SIGNAL_FUNC(gtk_page_size_callback
), (gpointer
)child
);
180 wxASSERT_MSG( page
->m_page
, _T("Notebook page creation error") );
182 parent
->m_pages
.Append( page
);
185 //-----------------------------------------------------------------------------
187 //-----------------------------------------------------------------------------
189 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
,wxControl
)
191 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
192 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
195 void wxNotebook::Init()
197 m_imageList
= (wxImageList
*) NULL
;
198 m_pages
.DeleteContents( TRUE
);
202 wxNotebook::wxNotebook()
207 wxNotebook::wxNotebook( wxWindow
*parent
, wxWindowID id
,
208 const wxPoint
& pos
, const wxSize
& size
,
209 long style
, const wxString
& name
)
212 Create( parent
, id
, pos
, size
, style
, name
);
215 wxNotebook::~wxNotebook()
217 // don't generate change page events any more
218 if (m_idHandler
!= 0)
219 gtk_signal_disconnect(GTK_OBJECT(m_widget
), m_idHandler
);
224 bool wxNotebook::Create(wxWindow
*parent
, wxWindowID id
,
225 const wxPoint
& pos
, const wxSize
& size
,
226 long style
, const wxString
& name
)
229 m_acceptsFocus
= TRUE
;
230 m_insertCallback
= (wxInsertChildFunction
)wxInsertChildInNotebook
;
232 PreCreation( parent
, id
, pos
, size
, style
, name
);
234 m_widget
= gtk_notebook_new();
236 gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget
), 1 );
238 m_idHandler
= gtk_signal_connect (
239 GTK_OBJECT(m_widget
), "switch_page",
240 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
),
243 m_parent
->AddChild( this );
245 (m_parent
->m_insertCallback
)( m_parent
, this );
247 gtk_signal_connect( GTK_OBJECT(m_widget
), "key_press_event",
248 GTK_SIGNAL_FUNC(gtk_notebook_key_press_callback
), (gpointer
)this );
257 int wxNotebook::GetSelection() const
259 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
261 if (m_pages
.Number() == 0) return -1;
263 GtkNotebookPage
*g_page
= GTK_NOTEBOOK(m_widget
)->cur_page
;
264 if (!g_page
) return -1;
266 wxNotebookPage
*page
= (wxNotebookPage
*) NULL
;
268 wxNode
*node
= m_pages
.First();
271 page
= (wxNotebookPage
*)node
->Data();
273 if ((page
->m_page
== g_page
) || (page
->m_page
== (GtkNotebookPage
*)NULL
))
275 // page->m_page is NULL directly after gtk_notebook_append. gtk emits
276 // "switch_page" then and we ask for GetSelection() in the handler for
277 // "switch_page". otherwise m_page should never be NULL. all this
278 // might also be wrong.
284 wxCHECK_MSG( node
!= NULL
, -1, _T("wxNotebook: no selection?") );
289 int wxNotebook::GetPageCount() const
291 // count only the pages which were already added to the notebook for MSW
292 // compatibility (and, in fact, this behaviour makes more sense anyhow
293 // because only the added pages are shown)
296 for ( wxNode
*node
= m_pages
.First(); node
; node
= node
->Next() )
298 wxNotebookPage
*page
= (wxNotebookPage
*)node
->Data();
300 if (page
->WasAdded()) n
++;
306 int wxNotebook::GetRowCount() const
311 wxString
wxNotebook::GetPageText( int page
) const
313 wxCHECK_MSG( m_widget
!= NULL
, _T(""), _T("invalid notebook") );
315 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
317 return nb_page
->m_text
;
322 int wxNotebook::GetPageImage( int page
) const
324 wxCHECK_MSG( m_widget
!= NULL
, 0, _T("invalid notebook") );
326 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
328 return nb_page
->m_image
;
333 wxNotebookPage
* wxNotebook::GetNotebookPage(int page
) const
335 wxCHECK_MSG( m_widget
!= NULL
, (wxNotebookPage
*)NULL
, _T("invalid notebook") );
337 wxNotebookPage
*nb_page
= (wxNotebookPage
*) NULL
;
339 wxNode
*node
= m_pages
.First();
342 nb_page
= (wxNotebookPage
*)node
->Data();
343 if (nb_page
->m_id
== page
)
348 wxFAIL_MSG( _T("Notebook page not found!") );
350 return (wxNotebookPage
*) NULL
;
353 int wxNotebook::SetSelection( int page
)
355 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
357 int selOld
= GetSelection();
358 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
360 if (!nb_page
) return -1;
363 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
366 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
371 if (!child
) return -1;
373 gtk_notebook_set_page( GTK_NOTEBOOK(m_widget
), page_num
);
378 void wxNotebook::AdvanceSelection( bool bForward
)
380 wxCHECK_RET( m_widget
!= NULL
, _T("invalid notebook") );
382 int sel
= GetSelection();
383 int max
= GetPageCount();
386 SetSelection( sel
== max
? 0 : sel
+ 1 );
388 SetSelection( sel
== 0 ? max
-1 : sel
- 1 );
391 void wxNotebook::SetImageList( wxImageList
* imageList
)
393 m_imageList
= imageList
;
396 bool wxNotebook::SetPageText( int page
, const wxString
&text
)
398 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
400 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
402 if (!nb_page
) return FALSE
;
404 nb_page
->m_text
= text
;
406 if (nb_page
->m_text
.IsEmpty()) nb_page
->m_text
= _T("");
408 gtk_label_set(nb_page
->m_label
, nb_page
->m_text
.mbc_str());
413 bool wxNotebook::SetPageImage( int page
, int image
)
415 /* HvdH 28-12-98: now it works, but it's a bit of a kludge */
417 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
419 if (!nb_page
) return FALSE
;
421 /* Optimization posibility: return immediately if image unchanged.
422 * Not enabled because it may break existing (stupid) code that
423 * manipulates the imagelist to cycle images */
425 /* if (image == nb_page->m_image) return TRUE; */
427 /* For different cases:
428 1) no image -> no image
433 if (image
== -1 && nb_page
->m_image
== -1)
434 return TRUE
; /* Case 1): Nothing to do. */
436 GtkWidget
*pixmapwid
= (GtkWidget
*) NULL
;
438 if (nb_page
->m_image
!= -1)
440 /* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
442 GList
*child
= gtk_container_children(GTK_CONTAINER(nb_page
->m_box
));
445 if (GTK_IS_PIXMAP(child
->data
))
447 pixmapwid
= GTK_WIDGET(child
->data
);
453 /* We should have the pixmap widget now */
454 wxASSERT(pixmapwid
!= NULL
);
458 /* If there's no new widget, just remove the old from the box */
459 gtk_container_remove(GTK_CONTAINER(nb_page
->m_box
), pixmapwid
);
460 nb_page
->m_image
= -1;
462 return TRUE
; /* Case 2) */
466 /* Only cases 3) and 4) left */
467 wxASSERT( m_imageList
!= NULL
); /* Just in case */
469 /* Construct the new pixmap */
470 const wxBitmap
*bmp
= m_imageList
->GetBitmap(image
);
471 GdkPixmap
*pixmap
= bmp
->GetPixmap();
472 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
473 if ( bmp
->GetMask() )
475 mask
= bmp
->GetMask()->GetBitmap();
478 if (pixmapwid
== NULL
)
480 /* Case 3) No old pixmap. Create a new one and prepend it to the hbox */
481 pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
483 /* CHECKME: Are these pack flags okay? */
484 gtk_box_pack_start(GTK_BOX(nb_page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
485 gtk_widget_show(pixmapwid
);
489 /* Case 4) Simply replace the pixmap */
490 gtk_pixmap_set(GTK_PIXMAP(pixmapwid
), pixmap
, mask
);
493 nb_page
->m_image
= image
;
498 void wxNotebook::SetPageSize( const wxSize
&WXUNUSED(size
) )
500 wxFAIL_MSG( _T("wxNotebook::SetPageSize not implemented") );
503 void wxNotebook::SetPadding( const wxSize
&WXUNUSED(padding
) )
505 wxFAIL_MSG( _T("wxNotebook::SetPadding not implemented") );
508 void wxNotebook::SetTabSize(const wxSize
& sz
)
510 wxFAIL_MSG( _T("wxNotebook::SetTabSize not implemented") );
513 bool wxNotebook::DeleteAllPages()
515 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
517 wxNode
*page_node
= m_pages
.First();
520 wxNotebookPage
*page
= (wxNotebookPage
*)page_node
->Data();
522 DeletePage( page
->m_id
);
524 page_node
= m_pages
.First();
530 bool wxNotebook::DeletePage( int page
)
532 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
533 if (!nb_page
) return FALSE
;
536 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
539 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
544 wxCHECK_MSG( child
!= NULL
, FALSE
, _T("illegal notebook index") );
546 delete nb_page
->m_client
;
548 m_pages
.DeleteObject( nb_page
);
553 bool wxNotebook::RemovePage( int page
)
555 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
556 if (!nb_page
) return FALSE
;
559 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
562 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
567 wxCHECK_MSG( child
!= NULL
, FALSE
, _T("illegal notebook index") );
569 gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget
), page_num
);
571 m_pages
.DeleteObject( nb_page
);
576 bool wxNotebook::AddPage(wxWindow
* win
, const wxString
& text
,
577 bool select
, int imageId
)
579 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
581 /* we've created the notebook page in AddChild(). Now we just have to set
582 the caption for the page and set the others parameters. */
584 wxNotebookPage
*page
= (wxNotebookPage
*) NULL
;
586 wxNode
*node
= m_pages
.First();
589 page
= (wxNotebookPage
*)node
->Data();
590 if ( page
->m_client
== win
) break;
594 wxCHECK_MSG( page
!= NULL
, FALSE
,
595 _T("Can't add a page whose parent is not the notebook!") );
597 wxCHECK_MSG( page
->Add(), FALSE
,
598 _T("Can't add the same page twice to a notebook.") );
602 wxASSERT( m_imageList
!= NULL
);
604 const wxBitmap
*bmp
= m_imageList
->GetBitmap(imageId
);
605 GdkPixmap
*pixmap
= bmp
->GetPixmap();
606 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
607 if ( bmp
->GetMask() )
609 mask
= bmp
->GetMask()->GetBitmap();
612 GtkWidget
*pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
614 gtk_box_pack_start(GTK_BOX(page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
616 gtk_widget_show(pixmapwid
);
619 /* then set the attributes */
621 if (page
->m_text
.IsEmpty()) page
->m_text
= _T("");
622 page
->m_image
= imageId
;
623 page
->m_label
= (GtkLabel
*)gtk_label_new(page
->m_text
.mbc_str());
624 gtk_box_pack_end( GTK_BOX(page
->m_box
), (GtkWidget
*)page
->m_label
, FALSE
, FALSE
, 3);
626 /* @@@: what does this do? do we still need it?
627 gtk_misc_set_alignment(GTK_MISC(page->m_label), 0.0, 0.5); */
629 gtk_widget_show((GtkWidget
*)page
->m_label
);
631 if (select
) SetSelection( GetPageCount()-1 );
636 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
638 if (event
.IsWindowChange())
639 AdvanceSelection( event
.GetDirection() );
644 wxWindow
*wxNotebook::GetPage( int page
) const
646 wxCHECK_MSG( m_widget
!= NULL
, (wxWindow
*) NULL
, _T("invalid notebook") );
648 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
650 return (wxWindow
*) NULL
;
652 return nb_page
->m_client
;
655 // override these 2 functions to do nothing: everything is done in OnSize
656 void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse
) )
658 // don't set the sizes of the pages - their correct size is not yet known
659 wxControl::SetConstraintSizes(FALSE
);
662 bool wxNotebook::DoPhase( int WXUNUSED(nPhase
) )
667 void wxNotebook::ApplyWidgetStyle()
670 gtk_widget_set_style( m_widget
, m_widgetStyle
);
673 //-----------------------------------------------------------------------------
675 //-----------------------------------------------------------------------------
677 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)