// Created: 28.06.2008
// RCS-ID: $Id$
// Copyright: (c) 2008 Marcin Malich <me@malcom.pl>
-// License: wxWindows licence
+// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
return s_button;
}
+GtkWidget *GetNotebookWidget()
+{
+ static GtkWidget *s_notebook = NULL;
+
+ if ( !s_notebook )
+ {
+ s_notebook = gtk_notebook_new();
+ gtk_container_add(GetContainer(), s_notebook);
+ gtk_widget_realize(s_notebook);
+ }
+
+ return s_notebook;
+}
+
GtkWidget *GetCheckButtonWidget()
{
static GtkWidget *s_button = NULL;