m_client = (wxWindow *) NULL;
m_parent = (GtkNotebook *) NULL;
m_box = (GtkWidget *) NULL;
+ m_added = FALSE;
}
+ // mark page as "added' to the notebook, return FALSE if the page was
+ // already added
+ bool Add()
+ {
+ if ( WasAdded() )
+ return FALSE;
+
+ m_added = TRUE;
+ return TRUE;
+ }
+
+ bool WasAdded() const { return m_added; }
+
int m_id;
wxString m_text;
int m_image;
wxWindow *m_client;
GtkNotebook *m_parent;
GtkWidget *m_box; // in which the label and image are packed
+
+private:
+ bool m_added;
};
//-----------------------------------------------------------------------------
int old = notebook->GetSelection();
// TODO: emulate PAGE_CHANGING event
-
+
wxNotebookEvent event( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED,
notebook->GetId(), nPage, old );
event.SetEventObject( notebook );
{
return;
}
-
+
win->SetSize( alloc->x, alloc->y, alloc->width, alloc->height );
}
gtk_container_border_width(GTK_CONTAINER(page->m_box), 2);
GtkNotebook *notebook = GTK_NOTEBOOK(parent->m_widget);
-
+
page->m_client = child;
gtk_notebook_append_page( notebook, child->m_widget, page->m_box );
m_parent->AddChild( this );
(m_parent->m_insertCallback)( m_parent, this );
-
+
PostCreation();
Show( TRUE );
int wxNotebook::GetSelection() const
{
wxCHECK_MSG( m_widget != NULL, -1, "invalid notebook" );
-
+
if (m_pages.Number() == 0) return -1;
GtkNotebookPage *g_page = GTK_NOTEBOOK(m_widget)->cur_page;
while (node)
{
page = (wxNotebookPage*)node->Data();
-
- if ((page->m_page == g_page) || (page->m_page == (GtkNotebookPage*)NULL))
+
+ if ((page->m_page == g_page) || (page->m_page == (GtkNotebookPage*)NULL))
{
// page->m_page is NULL directly after gtk_notebook_append. gtk emits
- // "switch_page" then and we ask for GetSelection() in the handler for
- // "switch_page". otherwise m_page should never be NULL. all this
- // might also be wrong.
+ // "switch_page" then and we ask for GetSelection() in the handler for
+ // "switch_page". otherwise m_page should never be NULL. all this
+ // might also be wrong.
break;
}
node = node->Next();
int wxNotebook::GetPageCount() const
{
- return m_pages.Number();
+ // count only the pages which were already added to the notebook for MSW
+ // compatibility (and, in fact, this behaviour makes more sense anyhow
+ // because only the added pages are shown)
+ int n = 0;
+ for ( wxNode *node = m_pages.First(); node; node = node->Next() )
+ {
+ wxNotebookPage *page = (wxNotebookPage*)node->Data();
+ if ( page->WasAdded() )
+ n++;
+ }
+
+ return n;
}
int wxNotebook::GetRowCount() const
wxString wxNotebook::GetPageText( int page ) const
{
wxCHECK_MSG( m_widget != NULL, "", "invalid notebook" );
-
+
wxNotebookPage* nb_page = GetNotebookPage(page);
if (nb_page)
return nb_page->m_text;
int selOld = GetSelection();
wxNotebookPage* nb_page = GetNotebookPage(page);
-
+
if (!nb_page) return -1;
int page_num = 0;
int sel = GetSelection();
int max = GetPageCount();
- if (bForward)
+ if (bForward)
SetSelection( sel == max ? 0 : sel + 1 );
else
SetSelection( sel == 0 ? max : sel - 1 );
wxCHECK_MSG( m_widget != NULL, FALSE, "invalid notebook" );
wxNotebookPage* nb_page = GetNotebookPage(page);
-
+
if (!nb_page) return FALSE;
nb_page->m_text = text;
bool wxNotebook::SetPageImage( int page, int image )
{
wxNotebookPage* nb_page = GetNotebookPage(page);
-
+
if (!nb_page) return FALSE;
nb_page->m_image = image;
node = node->Next();
}
- wxCHECK_MSG( page != NULL, FALSE, "Can't add a page whose parent is not the notebook!" );
+ wxCHECK_MSG( page != NULL, FALSE,
+ "Can't add a page whose parent is not the notebook!" );
+
+ wxCHECK_MSG( page->Add(), FALSE,
+ "Can't add the same page twice to a notebook." );
- if (imageId != -1)
+ if (imageId != -1)
{
wxASSERT( m_imageList != NULL );
// wxNotebookEvent
//-----------------------------------------------------------------------------
-IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
+IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxNotifyEvent)