]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/notebook.h
Next try at avoiding too few or too many size events.
[wxWidgets.git] / include / wx / gtk1 / notebook.h
index 3481d3016c73d5f1b20268f4ee034d48f31576b2..6e8a0a1f406469f917771bacefdc3f314a9f0397 100644 (file)
@@ -130,27 +130,32 @@ public:
 
   void OnNavigationKey(wxNavigationKeyEvent& event);
 
-  // implementation
+    // overridden from wxWindow to make tabbing work  
+  void SetFocus();
 
-  void SetConstraintSizes(bool recurse);
-  bool DoPhase(int phase);
-  void ApplyWidgetStyle();
+    // implementation
+    // --------------
 
-  // report if window belongs to notebook  
-  bool IsOwnGtkWindow( GdkWindow *window );
+    void SetConstraintSizes(bool recurse);
+    bool DoPhase(int phase);
+    void ApplyWidgetStyle();
 
-  // common part of all ctors
-  void Init();
+    // report if window belongs to notebook  
+    bool IsOwnGtkWindow( GdkWindow *window );
 
-  // helper function
-  wxNotebookPage* GetNotebookPage(int page) const;
+    // common part of all ctors
+    void Init();
 
-  wxImageList*    m_imageList;
-  wxList          m_pages;
-  int             m_lastSelection;  /* hack */
+    // helper function
+    wxNotebookPage* GetNotebookPage(int page) const;
 
-  DECLARE_DYNAMIC_CLASS(wxNotebook)
-  DECLARE_EVENT_TABLE()
+    wxImageList*    m_imageList;
+    wxList          m_pages;
+    int             m_lastSelection;  /* hack */
+
+private:
+    DECLARE_DYNAMIC_CLASS(wxNotebook)
+    DECLARE_EVENT_TABLE()
 };
 
 #endif