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
, "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();
237 debug_focus_in( m_widget
, "wxNotebook::m_widget", name
);
240 gtk_notebook_set_scrollable( GTK_NOTEBOOK(m_widget
), 1 );
242 m_idHandler
= gtk_signal_connect (
243 GTK_OBJECT(m_widget
), "switch_page",
244 GTK_SIGNAL_FUNC(gtk_notebook_page_change_callback
),
247 m_parent
->AddChild( this );
249 (m_parent
->m_insertCallback
)( m_parent
, this );
251 gtk_signal_connect( GTK_OBJECT(m_widget
), "key_press_event",
252 GTK_SIGNAL_FUNC(gtk_notebook_key_press_callback
), (gpointer
)this );
261 int wxNotebook::GetSelection() const
263 wxCHECK_MSG( m_widget
!= NULL
, -1, "invalid notebook" );
265 if (m_pages
.Number() == 0) return -1;
267 GtkNotebookPage
*g_page
= GTK_NOTEBOOK(m_widget
)->cur_page
;
268 if (!g_page
) return -1;
270 wxNotebookPage
*page
= (wxNotebookPage
*) NULL
;
272 wxNode
*node
= m_pages
.First();
275 page
= (wxNotebookPage
*)node
->Data();
277 if ((page
->m_page
== g_page
) || (page
->m_page
== (GtkNotebookPage
*)NULL
))
279 // page->m_page is NULL directly after gtk_notebook_append. gtk emits
280 // "switch_page" then and we ask for GetSelection() in the handler for
281 // "switch_page". otherwise m_page should never be NULL. all this
282 // might also be wrong.
288 wxCHECK_MSG( node
!= NULL
, -1, "wxNotebook: no selection?" );
293 int wxNotebook::GetPageCount() const
295 // count only the pages which were already added to the notebook for MSW
296 // compatibility (and, in fact, this behaviour makes more sense anyhow
297 // because only the added pages are shown)
300 for ( wxNode
*node
= m_pages
.First(); node
; node
= node
->Next() )
302 wxNotebookPage
*page
= (wxNotebookPage
*)node
->Data();
304 if (page
->WasAdded()) n
++;
310 int wxNotebook::GetRowCount() const
315 wxString
wxNotebook::GetPageText( int page
) const
317 wxCHECK_MSG( m_widget
!= NULL
, "", "invalid notebook" );
319 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
321 return nb_page
->m_text
;
326 int wxNotebook::GetPageImage( int page
) const
328 wxCHECK_MSG( m_widget
!= NULL
, 0, "invalid notebook" );
330 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
332 return nb_page
->m_image
;
337 wxNotebookPage
* wxNotebook::GetNotebookPage(int page
) const
339 wxCHECK_MSG( m_widget
!= NULL
, (wxNotebookPage
*)NULL
, "invalid notebook" );
341 wxNotebookPage
*nb_page
= (wxNotebookPage
*) NULL
;
343 wxNode
*node
= m_pages
.First();
346 nb_page
= (wxNotebookPage
*)node
->Data();
347 if (nb_page
->m_id
== page
)
352 wxFAIL_MSG( "Notebook page not found!" );
354 return (wxNotebookPage
*) NULL
;
357 int wxNotebook::SetSelection( int page
)
359 wxCHECK_MSG( m_widget
!= NULL
, -1, "invalid notebook" );
361 int selOld
= GetSelection();
362 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
364 if (!nb_page
) return -1;
367 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
370 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
375 if (!child
) return -1;
377 gtk_notebook_set_page( GTK_NOTEBOOK(m_widget
), page_num
);
382 void wxNotebook::AdvanceSelection( bool bForward
)
384 wxCHECK_RET( m_widget
!= NULL
, "invalid notebook" );
386 int sel
= GetSelection();
387 int max
= GetPageCount();
390 SetSelection( sel
== max
? 0 : sel
+ 1 );
392 SetSelection( sel
== 0 ? max
-1 : sel
- 1 );
395 void wxNotebook::SetImageList( wxImageList
* imageList
)
397 m_imageList
= imageList
;
400 bool wxNotebook::SetPageText( int page
, const wxString
&text
)
402 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, "invalid notebook" );
404 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
406 if (!nb_page
) return FALSE
;
408 nb_page
->m_text
= text
;
410 if (nb_page
->m_text
.IsEmpty()) nb_page
->m_text
= "";
412 gtk_label_set(nb_page
->m_label
, nb_page
->m_text
);
417 bool wxNotebook::SetPageImage( int page
, int image
)
419 /* HvdH 28-12-98: now it works, but it's a bit of a kludge */
421 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
423 if (!nb_page
) return FALSE
;
425 /* Optimization posibility: return immediately if image unchanged.
426 * Not enabled because it may break existing (stupid) code that
427 * manipulates the imagelist to cycle images */
429 /* if (image == nb_page->m_image) return TRUE; */
431 /* For different cases:
432 1) no image -> no image
437 if (image
== -1 && nb_page
->m_image
== -1)
438 return TRUE
; /* Case 1): Nothing to do. */
440 GtkWidget
*pixmapwid
= (GtkWidget
*) NULL
;
442 if (nb_page
->m_image
!= -1)
444 /* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
446 GList
*child
= gtk_container_children(GTK_CONTAINER(nb_page
->m_box
));
449 if (GTK_IS_PIXMAP(child
->data
))
451 pixmapwid
= GTK_WIDGET(child
->data
);
457 /* We should have the pixmap widget now */
458 wxASSERT(pixmapwid
!= NULL
);
462 /* If there's no new widget, just remove the old from the box */
463 gtk_container_remove(GTK_CONTAINER(nb_page
->m_box
), pixmapwid
);
464 nb_page
->m_image
= -1;
466 return TRUE
; /* Case 2) */
470 /* Only cases 3) and 4) left */
471 wxASSERT( m_imageList
!= NULL
); /* Just in case */
473 /* Construct the new pixmap */
474 const wxBitmap
*bmp
= m_imageList
->GetBitmap(image
);
475 GdkPixmap
*pixmap
= bmp
->GetPixmap();
476 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
477 if ( bmp
->GetMask() )
479 mask
= bmp
->GetMask()->GetBitmap();
482 if (pixmapwid
== NULL
)
484 /* Case 3) No old pixmap. Create a new one and prepend it to the hbox */
485 pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
487 /* CHECKME: Are these pack flags okay? */
488 gtk_box_pack_start(GTK_BOX(nb_page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
489 gtk_widget_show(pixmapwid
);
493 /* Case 4) Simply replace the pixmap */
494 gtk_pixmap_set(GTK_PIXMAP(pixmapwid
), pixmap
, mask
);
497 nb_page
->m_image
= image
;
502 void wxNotebook::SetPageSize( const wxSize
&WXUNUSED(size
) )
504 wxFAIL_MSG( "wxNotebook::SetPageSize not implemented" );
507 void wxNotebook::SetPadding( const wxSize
&WXUNUSED(padding
) )
509 wxFAIL_MSG( "wxNotebook::SetPadding not implemented" );
512 bool wxNotebook::DeleteAllPages()
514 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, "invalid notebook" );
516 wxNode
*page_node
= m_pages
.First();
519 wxNotebookPage
*page
= (wxNotebookPage
*)page_node
->Data();
521 DeletePage( page
->m_id
);
523 page_node
= m_pages
.First();
529 bool wxNotebook::DeletePage( int page
)
531 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
532 if (!nb_page
) return FALSE
;
535 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
538 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
543 wxCHECK_MSG( child
!= NULL
, FALSE
, "illegal notebook index" );
545 delete nb_page
->m_client
;
547 m_pages
.DeleteObject( nb_page
);
552 bool wxNotebook::RemovePage( int page
)
554 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
555 if (!nb_page
) return FALSE
;
558 GList
*child
= GTK_NOTEBOOK(m_widget
)->children
;
561 if (nb_page
->m_page
== (GtkNotebookPage
*)child
->data
) break;
566 wxCHECK_MSG( child
!= NULL
, FALSE
, "illegal notebook index" );
568 gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget
), page_num
);
570 m_pages
.DeleteObject( nb_page
);
575 bool wxNotebook::AddPage(wxWindow
* win
, const wxString
& text
,
576 bool select
, int imageId
)
578 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, "invalid notebook" );
580 /* we've created the notebook page in AddChild(). Now we just have to set
581 the caption for the page and set the others parameters. */
583 wxNotebookPage
*page
= (wxNotebookPage
*) NULL
;
585 wxNode
*node
= m_pages
.First();
588 page
= (wxNotebookPage
*)node
->Data();
589 if ( page
->m_client
== win
) break;
593 wxCHECK_MSG( page
!= NULL
, FALSE
,
594 "Can't add a page whose parent is not the notebook!" );
596 wxCHECK_MSG( page
->Add(), FALSE
,
597 "Can't add the same page twice to a notebook." );
601 wxASSERT( m_imageList
!= NULL
);
603 const wxBitmap
*bmp
= m_imageList
->GetBitmap(imageId
);
604 GdkPixmap
*pixmap
= bmp
->GetPixmap();
605 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
606 if ( bmp
->GetMask() )
608 mask
= bmp
->GetMask()->GetBitmap();
611 GtkWidget
*pixmapwid
= gtk_pixmap_new (pixmap
, mask
);
613 gtk_box_pack_start(GTK_BOX(page
->m_box
), pixmapwid
, FALSE
, FALSE
, 3);
615 gtk_widget_show(pixmapwid
);
618 /* then set the attributes */
620 if (page
->m_text
.IsEmpty()) page
->m_text
= "";
621 page
->m_image
= imageId
;
622 page
->m_label
= (GtkLabel
*)gtk_label_new(page
->m_text
);
623 gtk_box_pack_end( GTK_BOX(page
->m_box
), (GtkWidget
*)page
->m_label
, FALSE
, FALSE
, 3);
625 /* @@@: what does this do? do we still need it?
626 gtk_misc_set_alignment(GTK_MISC(page->m_label), 0.0, 0.5); */
628 gtk_widget_show((GtkWidget
*)page
->m_label
);
630 if (select
) SetSelection( GetPageCount()-1 );
635 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
637 if (event
.IsWindowChange())
638 AdvanceSelection( event
.GetDirection() );
643 wxWindow
*wxNotebook::GetPage( int page
) const
645 wxCHECK_MSG( m_widget
!= NULL
, (wxWindow
*) NULL
, "invalid notebook" );
647 wxNotebookPage
* nb_page
= GetNotebookPage(page
);
649 return (wxWindow
*) NULL
;
651 return nb_page
->m_client
;
654 // override these 2 functions to do nothing: everything is done in OnSize
655 void wxNotebook::SetConstraintSizes( bool WXUNUSED(recurse
) )
657 // don't set the sizes of the pages - their correct size is not yet known
658 wxControl::SetConstraintSizes(FALSE
);
661 bool wxNotebook::DoPhase( int WXUNUSED(nPhase
) )
666 void wxNotebook::ApplyWidgetStyle()
669 gtk_widget_set_style( m_widget
, m_widgetStyle
);
672 //-----------------------------------------------------------------------------
674 //-----------------------------------------------------------------------------
676 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)