]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/notebook.h
Changed clipboard text format id from "STRING" to "TEXT"
[wxWidgets.git] / include / wx / gtk1 / notebook.h
index 1c2aa872b97b2a513246586217d19207d5f993db..34e2906a9c61460fedecee7ffae41075f8e6d0c1 100644 (file)
@@ -134,6 +134,9 @@ public:
     // set the padding between tabs (in pixels)
   void SetPadding(const wxSize& padding);
 
+    // Sets the size of the tabs (assumes all tabs are the same size)
+  void SetTabSize(const wxSize& sz);
+
   // operations
   // ----------
     // remove one page from the notebook but do not destroy it
@@ -153,6 +156,7 @@ public:
     // get the panel which represents the given page
   wxWindow *GetPage(int nPage) const;
 
+  void OnNavigationKey(wxNavigationKeyEvent& event);
   
   // implementation
   
@@ -171,6 +175,7 @@ public:
   size_t            m_idHandler; // the change page handler id
 
   DECLARE_DYNAMIC_CLASS(wxNotebook)
+  DECLARE_EVENT_TABLE()
 };
 
 // ----------------------------------------------------------------------------