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 //-----------------------------------------------------------------------------
43 class wxNotebookPage
: public wxObject
51 m_page
= (GtkNotebookPage
*) NULL
;
52 m_client
= (wxWindow
*) NULL
;
53 m_parent
= (GtkNotebook
*) NULL
;
54 m_box
= (GtkWidget
*) NULL
;
59 mark page as "added' to the notebook, return FALSE if the page was
72 bool WasAdded() const { return m_added
; }
77 GtkNotebookPage
*m_page
;
80 GtkNotebook
*m_parent
;
81 GtkWidget
*m_box
; // in which the label and image are packed
87 //-----------------------------------------------------------------------------
89 //-----------------------------------------------------------------------------
91 static void gtk_notebook_page_change_callback(GtkNotebook
*WXUNUSED(widget
),
92 GtkNotebookPage
*WXUNUSED(page
),
96 if (g_isIdle
) wxapp_install_idle_handler();
98 wxNotebook
*notebook
= (wxNotebook
*)data
;
100 int old
= notebook
->GetSelection();
102 // TODO: emulate PAGE_CHANGING event
104 wxNotebookEvent
event( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
,
105 notebook
->GetId(), nPage
, old
);
106 event
.SetEventObject( notebook
);
107 notebook
->GetEventHandler()->ProcessEvent( event
);
110 //-----------------------------------------------------------------------------
112 //-----------------------------------------------------------------------------
114 static void gtk_page_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxWindow
*win
)
116 if (g_isIdle
) wxapp_install_idle_handler();
118 if ((win
->m_x
== alloc
->x
) &&
119 (win
->m_y
== alloc
->y
) &&
120 (win
->m_width
== alloc
->width
) &&
121 (win
->m_height
== alloc
->height
))
126 win
->SetSize( alloc
->x
, alloc
->y
, alloc
->width
, alloc
->height
);
128 if (win
->GetAutoLayout()) win
->Layout();
131 //-----------------------------------------------------------------------------
133 //-----------------------------------------------------------------------------
136 gtk_notebook_key_press_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxNotebook
*notebook
)
138 if (g_isIdle
) wxapp_install_idle_handler();
140 if (g_blockEventsOnDrag
) return FALSE
;
142 if (!notebook
->HasVMT()) return FALSE
;
144 /* this code makes jumping down from the handles of the notebooks
145 to the actual items in the visible notebook page possible with
146 the down-arrow key */
148 if (gdk_event
->keyval
!= GDK_Down
) return FALSE
;
150 if (notebook
!= notebook
->FindFocus()) return FALSE
;
152 if (notebook
->m_pages
.GetCount() == 0) return FALSE
;
154 wxNode
*node
= notebook
->m_pages
.Nth( notebook
->GetSelection() );
156 if (!node
) return FALSE
;
158 wxNotebookPage
*page
= (wxNotebookPage
*) node
->Data();
160 // don't let others the key event
161 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
163 page
->m_client
->SetFocus();
168 //-----------------------------------------------------------------------------
169 // InsertChild callback for wxNotebook
170 //-----------------------------------------------------------------------------
172 static void wxInsertChildInNotebook( wxNotebook
* parent
, wxWindow
* child
)
174 wxNotebookPage
*page
= new wxNotebookPage();
176 page
->m_id
= parent
->GetPageCount();
178 page
->m_box
= gtk_hbox_new (FALSE
, 0);
179 gtk_container_border_width(GTK_CONTAINER(page
->m_box
), 2);
181 GtkNotebook
*notebook
= GTK_NOTEBOOK(parent
->m_widget
);
183 page
->m_client
= child
;
184 gtk_notebook_append_page( notebook
, child
->m_widget
, page
->m_box
);
186 page
->m_page
= (GtkNotebookPage
*) (g_list_last(notebook
->children
)->data
);
188 page
->m_parent
= notebook
;
190 gtk_signal_connect( GTK_OBJECT(child
->m_widget
), "size_allocate",
191 GTK_SIGNAL_FUNC(gtk_page_size_callback
), (gpointer
)child
);
193 wxASSERT_MSG( page
->m_page
, _T("Notebook page creation error") );
195 parent
->m_pages
.Append( page
);
198 //-----------------------------------------------------------------------------
200 //-----------------------------------------------------------------------------
202 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
,wxControl
)
204 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
205 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
208 void wxNotebook::Init()
210 m_imageList
= (wxImageList
*) NULL
;
211 m_pages
.DeleteContents( TRUE
);
215 wxNotebook::wxNotebook()
220 wxNotebook::wxNotebook( wxWindow
*parent
, wxWindowID id
,
221 const wxPoint
& pos
, const wxSize
& size
,
222 long style
, const wxString
& name
)
225 Create( parent
, id
, pos
, size
, style
, name
);
228 wxNotebook::~wxNotebook()
230 // don't generate change page events any more
231 if (m_idHandler
!= 0)
232 gtk_signal_disconnect(GTK_OBJECT(m_widget
), m_idHandler
);
237 bool wxNotebook::Create(wxWindow
*parent
, wxWindowID id
,
238 const wxPoint
& pos
, const wxSize
& size
,
239 long style
, const wxString
& name
)
242 m_acceptsFocus
= TRUE
;
243 m_insertCallback
= (wxInsertChildFunction
)wxInsertChildInNotebook
;
245 PreCreation( parent
, id
, pos
, size
, style
, name
);
247 m_widget
= gtk_notebook_new();
249 gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget
), 1 );
251 m_idHandler
= gtk_signal_connect (
252 GTK_OBJECT(m_widget
), "switch_page",
253 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
),
256 m_parent
->AddChild( this );
258 (m_parent
->m_insertCallback
)( m_parent
, this );
260 gtk_signal_connect( GTK_OBJECT(m_widget
), "key_press_event",
261 GTK_SIGNAL_FUNC(gtk_notebook_key_press_callback
), (gpointer
)this );
270 int wxNotebook::GetSelection() const
272 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
274 if (m_pages
.Number() == 0) return -1;
276 GtkNotebookPage
*g_page
= GTK_NOTEBOOK(m_widget
)->cur_page
;
277 if (!g_page
) return -1;
279 wxNotebookPage
*page
= (wxNotebookPage
*) NULL
;
281 wxNode
*node
= m_pages
.First();
284 page
= (wxNotebookPage
*)node
->Data();
286 if ((page
->m_page
== g_page
) || (page
->m_page
== (GtkNotebookPage
*)NULL
))
288 // page->m_page is NULL directly after gtk_notebook_append. gtk emits
289 // "switch_page" then and we ask for GetSelection() in the handler for
290 // "switch_page". otherwise m_page should never be NULL. all this
291 // might also be wrong.
297 wxCHECK_MSG( node
!= NULL
, -1, _T("wxNotebook: no selection?") );
302 int wxNotebook::GetPageCount() const
304 // count only the pages which were already added to the notebook for MSW
305 // compatibility (and, in fact, this behaviour makes more sense anyhow
306 // because only the added pages are shown)
309 for ( wxNode
*node
= m_pages
.First(); node
; node
= node
->Next() )
311 wxNotebookPage
*page
= (wxNotebookPage
*)node
->Data();
313 if (page
->WasAdded()) n
++;
319 int wxNotebook::GetRowCount() const
324 wxString
wxNotebook::GetPageText( int page
) const
326 wxCHECK_MSG( m_widget
!= NULL
, _T(""), _T("invalid notebook") );
328 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
330 return nb_page
->m_text
;
335 int wxNotebook::GetPageImage( int page
) const
337 wxCHECK_MSG( m_widget
!= NULL
, 0, _T("invalid notebook") );
339 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
341 return nb_page
->m_image
;
346 wxNotebookPage
* wxNotebook::GetNotebookPage(int page
) const
348 wxCHECK_MSG( m_widget
!= NULL
, (wxNotebookPage
*)NULL
, _T("invalid notebook") );
350 wxNotebookPage
*nb_page
= (wxNotebookPage
*) NULL
;
352 wxNode
*node
= m_pages
.First();
355 nb_page
= (wxNotebookPage
*)node
->Data();
356 if (nb_page
->m_id
== page
)
361 wxFAIL_MSG( _T("Notebook page not found!") );
363 return (wxNotebookPage
*) NULL
;
366 int wxNotebook::SetSelection( int page
)
368 wxCHECK_MSG( m_widget
!= NULL
, -1, _T("invalid notebook") );
370 int selOld
= GetSelection();
371 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
373 if (!nb_page
) return -1;
376 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
379 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
384 if (!child
) return -1;
386 gtk_notebook_set_page( GTK_NOTEBOOK(m_widget
), page_num
);
391 void wxNotebook::AdvanceSelection( bool bForward
)
393 wxCHECK_RET( m_widget
!= NULL
, _T("invalid notebook") );
395 int sel
= GetSelection();
396 int max
= GetPageCount();
399 SetSelection( sel
== max
? 0 : sel
+ 1 );
401 SetSelection( sel
== 0 ? max
-1 : sel
- 1 );
404 void wxNotebook::SetImageList( wxImageList
* imageList
)
406 m_imageList
= imageList
;
409 bool wxNotebook::SetPageText( int page
, const wxString
&text
)
411 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
413 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
415 wxCHECK_MSG( nb_page
, FALSE
, _T("SetPageText: invalid page index") );
417 nb_page
->m_text
= text
;
419 gtk_label_set(nb_page
->m_label
, nb_page
->m_text
.mbc_str());
424 bool wxNotebook::SetPageImage( int page
, int image
)
426 /* HvdH 28-12-98: now it works, but it's a bit of a kludge */
428 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
430 if (!nb_page
) return FALSE
;
432 /* Optimization posibility: return immediately if image unchanged.
433 * Not enabled because it may break existing (stupid) code that
434 * manipulates the imagelist to cycle images */
436 /* if (image == nb_page->m_image) return TRUE; */
438 /* For different cases:
439 1) no image -> no image
444 if (image
== -1 && nb_page
->m_image
== -1)
445 return TRUE
; /* Case 1): Nothing to do. */
447 GtkWidget
*pixmapwid
= (GtkWidget
*) NULL
;
449 if (nb_page
->m_image
!= -1)
451 /* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
453 GList
*child
= gtk_container_children(GTK_CONTAINER(nb_page
->m_box
));
456 if (GTK_IS_PIXMAP(child
->data
))
458 pixmapwid
= GTK_WIDGET(child
->data
);
464 /* We should have the pixmap widget now */
465 wxASSERT(pixmapwid
!= NULL
);
469 /* If there's no new widget, just remove the old from the box */
470 gtk_container_remove(GTK_CONTAINER(nb_page
->m_box
), pixmapwid
);
471 nb_page
->m_image
= -1;
473 return TRUE
; /* Case 2) */
477 /* Only cases 3) and 4) left */
478 wxASSERT( m_imageList
!= NULL
); /* Just in case */
480 /* Construct the new pixmap */
481 const wxBitmap
*bmp
= m_imageList
->GetBitmap(image
);
482 GdkPixmap
*pixmap
= bmp
->GetPixmap();
483 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
484 if ( bmp
->GetMask() )
486 mask
= bmp
->GetMask()->GetBitmap();
489 if (pixmapwid
== NULL
)
491 /* Case 3) No old pixmap. Create a new one and prepend it to the hbox */
492 pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
494 /* CHECKME: Are these pack flags okay? */
495 gtk_box_pack_start(GTK_BOX(nb_page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
496 gtk_widget_show(pixmapwid
);
500 /* Case 4) Simply replace the pixmap */
501 gtk_pixmap_set(GTK_PIXMAP(pixmapwid
), pixmap
, mask
);
504 nb_page
->m_image
= image
;
509 void wxNotebook::SetPageSize( const wxSize
&WXUNUSED(size
) )
511 wxFAIL_MSG( _T("wxNotebook::SetPageSize not implemented") );
514 void wxNotebook::SetPadding( const wxSize
&WXUNUSED(padding
) )
516 wxFAIL_MSG( _T("wxNotebook::SetPadding not implemented") );
519 void wxNotebook::SetTabSize(const wxSize
& sz
)
521 wxFAIL_MSG( _T("wxNotebook::SetTabSize not implemented") );
524 bool wxNotebook::DeleteAllPages()
526 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
528 wxNode
*page_node
= m_pages
.First();
531 wxNotebookPage
*page
= (wxNotebookPage
*)page_node
->Data();
533 DeletePage( page
->m_id
);
535 page_node
= m_pages
.First();
541 bool wxNotebook::DeletePage( int page
)
543 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
544 if (!nb_page
) return FALSE
;
547 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
550 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
555 wxCHECK_MSG( child
!= NULL
, FALSE
, _T("illegal notebook index") );
557 delete nb_page
->m_client
;
559 m_pages
.DeleteObject( nb_page
);
564 bool wxNotebook::RemovePage( int page
)
566 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
567 if (!nb_page
) return FALSE
;
570 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
573 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
578 wxCHECK_MSG( child
!= NULL
, FALSE
, _T("illegal notebook index") );
580 gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget
), page_num
);
582 m_pages
.DeleteObject( nb_page
);
587 bool wxNotebook::AddPage(wxWindow
* win
, const wxString
& text
,
588 bool select
, int imageId
)
590 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid notebook") );
592 /* we've created the notebook page in AddChild(). Now we just have to set
593 the caption for the page and set the others parameters. */
595 wxNotebookPage
*page
= (wxNotebookPage
*) NULL
;
597 wxNode
*node
= m_pages
.First();
600 page
= (wxNotebookPage
*)node
->Data();
601 if ( page
->m_client
== win
) break;
605 wxCHECK_MSG( page
!= NULL
, FALSE
,
606 _T("Can't add a page whose parent is not the notebook!") );
608 wxCHECK_MSG( page
->Add(), FALSE
,
609 _T("Can't add the same page twice to a notebook.") );
613 wxASSERT( m_imageList
!= NULL
);
615 const wxBitmap
*bmp
= m_imageList
->GetBitmap(imageId
);
616 GdkPixmap
*pixmap
= bmp
->GetPixmap();
617 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
618 if ( bmp
->GetMask() )
620 mask
= bmp
->GetMask()->GetBitmap();
623 GtkWidget
*pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
625 gtk_box_pack_start(GTK_BOX(page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
627 gtk_widget_show(pixmapwid
);
630 /* then set the attributes */
632 if (page
->m_text
.IsEmpty()) page
->m_text
= _T("");
633 page
->m_image
= imageId
;
634 page
->m_label
= (GtkLabel
*)gtk_label_new(page
->m_text
.mbc_str());
635 gtk_box_pack_end( GTK_BOX(page
->m_box
), (GtkWidget
*)page
->m_label
, FALSE
, FALSE
, 3);
637 /* @@@: what does this do? do we still need it?
638 gtk_misc_set_alignment(GTK_MISC(page->m_label), 0.0, 0.5); */
640 gtk_widget_show((GtkWidget
*)page
->m_label
);
642 if (select
) SetSelection( GetPageCount()-1 );
647 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
649 if (event
.IsWindowChange())
650 AdvanceSelection( event
.GetDirection() );
655 wxWindow
*wxNotebook::GetPage( int page
) const
657 wxCHECK_MSG( m_widget
!= NULL
, (wxWindow
*) NULL
, _T("invalid notebook") );
659 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
661 return (wxWindow
*) NULL
;
663 return nb_page
->m_client
;
666 // override these 2 functions to do nothing: everything is done in OnSize
667 void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse
) )
669 // don't set the sizes of the pages - their correct size is not yet known
670 wxControl::SetConstraintSizes(FALSE
);
673 bool wxNotebook::DoPhase( int WXUNUSED(nPhase
) )
678 void wxNotebook::ApplyWidgetStyle()
681 gtk_widget_set_style( m_widget
, m_widgetStyle
);
684 //-----------------------------------------------------------------------------
686 //-----------------------------------------------------------------------------
688 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)