]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/notebook.h
fixes to menu stock items support (patch 1547639)
[wxWidgets.git] / include / wx / mac / carbon / notebook.h
index 8f88862122027656adc1a45f16bac89a33427ac8..299b438dbee6292a8be1fc9cc4bf18eafdceff4e 100644 (file)
 #ifndef _WX_NOTEBOOK_H_
 #define _WX_NOTEBOOK_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "notebook.h"
-#endif
-
 // ----------------------------------------------------------------------------
 // headers
 // ----------------------------------------------------------------------------
@@ -32,9 +28,6 @@ class WXDLLEXPORT wxWindow;
 // wxNotebook
 // ----------------------------------------------------------------------------
 
-// @@@ this class should really derive from wxTabCtrl, but the interface is not
-//     exactly the same, so I can't do it right now and instead we reimplement
-//     part of wxTabCtrl here
 class wxNotebook : public wxNotebookBase
 {
 public:
@@ -57,7 +50,7 @@ public:
               long style = 0,
               const wxString& name = wxNotebookNameStr);
     // dtor
-  ~wxNotebook();
+  virtual ~wxNotebook();
 
   // accessors
   // ---------
@@ -84,21 +77,13 @@ public:
     // sets the size of the tabs (assumes all tabs are the same size)
   virtual void SetTabSize(const wxSize& sz);
 
-    // calculate size for wxNotebookSizer
+  // hit test
+  virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;
+  
+  // calculate size for wxNotebookSizer
   wxSize CalcSizeFromPage(const wxSize& sizePage) const;
   wxRect GetPageRect() const ;
-/*
-    // get number of pages in the dialog
-  int GetPageCount() const;
-
-    // cycle thru the tabs
-  void AdvanceSelection(bool bForward = true);
 
-
-    // currently it's always 1 because wxGTK doesn't support multi-row
-    // tab controls
-  int GetRowCount() const;
-*/
   // operations
   // ----------
     // remove all pages
@@ -109,10 +94,7 @@ public:
                   const wxString& strText,
                   bool bSelect = false,
                   int imageId = -1);
-/*
-    // get the panel which represents the given page
-  wxNotebookPage *GetPage(int nPage) { return m_aPages[nPage]; }
-*/
+
   // callbacks
   // ---------
   void OnSize(wxSizeEvent& event);
@@ -132,9 +114,10 @@ public:
   // base class virtuals
   // -------------------
   virtual void Command(wxCommandEvent& event);
+    virtual wxInt32 MacControlHit(WXEVENTHANDLERREF handler, WXEVENTREF event);
+
 protected:
   virtual wxNotebookPage *DoRemovePage(size_t page) ;
-  virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
   // common part of all ctors
   void Init();