X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/936425786109f020d1e26b329a9c7626977eb25d..25eb10d2e119b278be3ff51b3c96c297cc3ac6ef:/include/wx/aui/auibook.h diff --git a/include/wx/aui/auibook.h b/include/wx/aui/auibook.h index 93a4bd082c..5c0b00f549 100644 --- a/include/wx/aui/auibook.h +++ b/include/wx/aui/auibook.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: wx/aui/notebook.h +// Name: wx/aui/auibook.h // Purpose: wxaui: wx advanced user interface - notebook // Author: Benjamin I. Williams // Modified by: @@ -18,13 +18,13 @@ // ---------------------------------------------------------------------------- #include "wx/defs.h" -#include "wx/aui/framemanager.h" -#include "wx/aui/dockart.h" -#include "wx/aui/floatpane.h" - #if wxUSE_AUI +#include "wx/aui/framemanager.h" +#include "wx/aui/dockart.h" +#include "wx/aui/floatpane.h" +#include "wx/control.h" // event declarations/classes @@ -50,11 +50,11 @@ public: void SetOldSelection(int s) { old_selection = s; } int GetSelection() const { return selection; } int GetOldSelection() const { return old_selection; } - + public: int old_selection; int selection; - + #ifndef SWIG private: DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxAuiNotebookEvent) @@ -85,9 +85,10 @@ public: }; +#ifndef SWIG WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiNotebookPage, wxAuiNotebookPageArray, WXDLLIMPEXP_AUI); WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiTabContainerButton, wxAuiTabContainerButtonArray, WXDLLIMPEXP_AUI); - +#endif class WXDLLIMPEXP_AUI wxAuiTabContainer @@ -95,6 +96,7 @@ class WXDLLIMPEXP_AUI wxAuiTabContainer public: wxAuiTabContainer(); + virtual ~wxAuiTabContainer(); bool AddPage(wxWindow* page, const wxAuiNotebookPage& info); bool InsertPage(wxWindow* page, const wxAuiNotebookPage& info, size_t idx); @@ -116,17 +118,17 @@ public: void DoShowHide(); void SetRect(const wxRect& rect); void AddButton(int id, const wxBitmap& bmp); - + protected: - virtual void Render(wxDC* dc); + virtual void Render(wxDC* dc); virtual void DrawTab(wxDC* dc, const wxRect& in_rect, const wxString& caption, bool active, wxRect* out_rect, - int* x_extent); + int* x_extent); private: wxAuiNotebookPageArray m_pages; @@ -150,11 +152,11 @@ class WXDLLIMPEXP_AUI wxAuiTabCtrl : public wxControl, public: wxAuiTabCtrl(wxWindow* parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0); - + protected: void OnPaint(wxPaintEvent& evt); @@ -164,15 +166,17 @@ protected: void OnLeftUp(wxMouseEvent& evt); void OnMotion(wxMouseEvent& evt); void OnLeaveWindow(wxMouseEvent& evt); - + protected: - + wxPoint m_click_pt; int m_click_tab; bool m_is_dragging; wxAuiTabContainerButton* m_hover_button; +#ifndef SWIG DECLARE_EVENT_TABLE() +#endif }; @@ -184,54 +188,54 @@ class WXDLLIMPEXP_AUI wxAuiMultiNotebook : public wxControl public: wxAuiMultiNotebook(); - + wxAuiMultiNotebook(wxWindow* parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0); - + virtual ~wxAuiMultiNotebook(); bool Create(wxWindow* parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = 0); + long style = 0); bool AddPage(wxWindow* page, const wxString& caption, bool select = false, const wxBitmap& bitmap = wxNullBitmap); - + bool InsertPage(size_t page_idx, wxWindow* page, const wxString& caption, bool select = false, const wxBitmap& bitmap = wxNullBitmap); - + bool DeletePage(size_t page); bool RemovePage(size_t page); - + bool SetPageText(size_t page, const wxString& text); size_t SetSelection(size_t new_page); int GetSelection() const; size_t GetPageCount() const; wxWindow* GetPage(size_t page_idx) const; - + protected: - + wxAuiTabCtrl* GetTabCtrlFromPoint(const wxPoint& pt); wxWindow* GetTabFrameFromTabCtrl(wxWindow* tab_ctrl); wxAuiTabCtrl* GetActiveTabCtrl(); bool FindTab(wxWindow* page, wxAuiTabCtrl** ctrl, int* idx); void RemoveEmptyTabFrames(); - + protected: void DoSizing(); void InitNotebook(); - + void OnChildFocus(wxChildFocusEvent& evt); void OnRender(wxFrameManagerEvent& evt); void OnEraseBackground(wxEraseEvent& evt); @@ -249,11 +253,14 @@ protected: int m_curpage; int m_tab_id_counter; wxWindow* m_dummy_wnd; - + wxFont m_selected_font; wxFont m_normal_font; - + int m_tab_ctrl_height; + +#ifndef SWIG DECLARE_EVENT_TABLE() +#endif }; @@ -289,12 +296,25 @@ typedef void (wxEvtHandler::*wxAuiNotebookEventFunction)(wxAuiNotebookEvent&); wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, winid, wxAuiNotebookEventHandler(fn)) #define EVT_AUINOTEBOOK_DRAG_MOTION(winid, fn) \ wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, winid, wxAuiNotebookEventHandler(fn)) - + #else // wxpython/swig event work - - +%constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED; +%constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING; +%constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_BUTTON; +%constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG; +%constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_END_DRAG; +%constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION; + +%pythoncode { + EVT_AUINOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, 1 ) + EVT_AUINOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, 1 ) + EVT_AUINOTEBOOK_BUTTON = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_BUTTON, 1 ) + EVT_AUINOTEBOOK_BEGIN_DRAG = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, 1 ) + EVT_AUINOTEBOOK_END_DRAG = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, 1 ) + EVT_AUINOTEBOOK_DRAG_MOTION = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, 1 ) +} #endif