1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxNotebook interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1996-2000 Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_NOTEBOOK_H_BASE_
13 #define _WX_NOTEBOOK_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
23 #include "wx/bookctrl.h"
25 // ----------------------------------------------------------------------------
27 // ----------------------------------------------------------------------------
29 // wxNotebook hit results
32 wxNB_HITTEST_NOWHERE
= 1, // not on tab
33 wxNB_HITTEST_ONICON
= 2, // on icon
34 wxNB_HITTEST_ONLABEL
= 4, // on label
35 wxNB_HITTEST_ONITEM
= wxNB_HITTEST_ONICON
| wxNB_HITTEST_ONLABEL
,
36 wxNB_HITTEST_ONPAGE
= 8 // not on tab control, but over the selected page
39 typedef wxWindow wxNotebookPage
; // so far, any window can be a page
41 extern WXDLLEXPORT_DATA(const wxChar
) wxNotebookNameStr
[];
43 #if WXWIN_COMPATIBILITY_2_4
44 #define wxNOTEBOOK_NAME wxNotebookNameStr
47 // ----------------------------------------------------------------------------
48 // wxNotebookBase: define wxNotebook interface
49 // ----------------------------------------------------------------------------
51 class WXDLLEXPORT wxNotebookBase
: public wxBookCtrlBase
59 wxNotebookBase(wxWindow
*parent
,
61 const wxPoint
& pos
= wxDefaultPosition
,
62 const wxSize
& size
= wxDefaultSize
,
64 const wxString
& name
= wxNotebookNameStr
) ;
66 // wxNotebook-specific additions to wxBookCtrlBase interface
67 // ---------------------------------------------------------
69 // get the number of rows for a control with wxNB_MULTILINE style (not all
70 // versions support it - they will always return 1 then)
71 virtual int GetRowCount() const { return 1; }
73 // set the padding between tabs (in pixels)
74 virtual void SetPadding(const wxSize
& padding
) = 0;
76 // set the size of the tabs for wxNB_FIXEDWIDTH controls
77 virtual void SetTabSize(const wxSize
& sz
) = 0;
81 // implement some base class functions
82 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
84 // On platforms that support it, get the theme page background colour, else invalid colour
85 virtual wxColour
GetThemeBackgroundColour() const { return wxNullColour
; }
88 DECLARE_NO_COPY_CLASS(wxNotebookBase
)
91 // ----------------------------------------------------------------------------
92 // notebook event class and related stuff
93 // ----------------------------------------------------------------------------
95 class WXDLLEXPORT wxNotebookEvent
: public wxBookCtrlBaseEvent
98 wxNotebookEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0,
99 int nSel
= -1, int nOldSel
= -1)
100 : wxBookCtrlBaseEvent(commandType
, winid
, nSel
, nOldSel
)
104 wxNotebookEvent(const wxNotebookEvent
& event
)
105 : wxBookCtrlBaseEvent(event
)
109 virtual wxEvent
*Clone() const { return new wxNotebookEvent(*this); }
112 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent
)
115 BEGIN_DECLARE_EVENT_TYPES()
116 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 802)
117 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 803)
118 END_DECLARE_EVENT_TYPES()
120 typedef void (wxEvtHandler::*wxNotebookEventFunction
)(wxNotebookEvent
&);
122 #define wxNotebookEventHandler(func) \
123 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func)
125 #define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
126 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))
128 #define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
129 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn))
131 // ----------------------------------------------------------------------------
132 // wxNotebook class itself
133 // ----------------------------------------------------------------------------
135 #if defined(__WXUNIVERSAL__)
136 #include "wx/univ/notebook.h"
137 #elif defined(__WXMSW__)
138 #include "wx/msw/notebook.h"
139 #elif defined(__WXMOTIF__)
140 #include "wx/generic/notebook.h"
141 #elif defined(__WXGTK20__)
142 #include "wx/gtk/notebook.h"
143 #elif defined(__WXGTK__)
144 #include "wx/gtk1/notebook.h"
145 #elif defined(__WXMAC__)
146 #include "wx/mac/notebook.h"
147 #elif defined(__WXCOCOA__)
148 #include "wx/cocoa/notebook.h"
149 #elif defined(__WXPM__)
150 #include "wx/os2/notebook.h"
153 #endif // wxUSE_NOTEBOOK
156 // _WX_NOTEBOOK_H_BASE_