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 #if WXWIN_COMPATIBILITY_2_6
31 // wxNotebook hit results, use wxBK_HITTEST so other book controls can share them
32 // if wxUSE_NOTEBOOK is disabled
35 wxNB_HITTEST_NOWHERE
= wxBK_HITTEST_NOWHERE
,
36 wxNB_HITTEST_ONICON
= wxBK_HITTEST_ONICON
,
37 wxNB_HITTEST_ONLABEL
= wxBK_HITTEST_ONLABEL
,
38 wxNB_HITTEST_ONITEM
= wxBK_HITTEST_ONITEM
,
39 wxNB_HITTEST_ONPAGE
= wxBK_HITTEST_ONPAGE
42 #endif // WXWIN_COMPATIBILITY_2_6
44 typedef wxWindow wxNotebookPage
; // so far, any window can be a page
46 extern WXDLLEXPORT_DATA(const wxChar
) wxNotebookNameStr
[];
48 #if WXWIN_COMPATIBILITY_2_4
49 #define wxNOTEBOOK_NAME wxNotebookNameStr
52 // ----------------------------------------------------------------------------
53 // wxNotebookBase: define wxNotebook interface
54 // ----------------------------------------------------------------------------
56 class WXDLLEXPORT wxNotebookBase
: public wxBookCtrlBase
64 wxNotebookBase(wxWindow
*parent
,
66 const wxPoint
& pos
= wxDefaultPosition
,
67 const wxSize
& size
= wxDefaultSize
,
69 const wxString
& name
= wxNotebookNameStr
) ;
71 // wxNotebook-specific additions to wxBookCtrlBase interface
72 // ---------------------------------------------------------
74 // get the number of rows for a control with wxNB_MULTILINE style (not all
75 // versions support it - they will always return 1 then)
76 virtual int GetRowCount() const { return 1; }
78 // set the padding between tabs (in pixels)
79 virtual void SetPadding(const wxSize
& padding
) = 0;
81 // set the size of the tabs for wxNB_FIXEDWIDTH controls
82 virtual void SetTabSize(const wxSize
& sz
) = 0;
86 // implement some base class functions
87 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
89 // On platforms that support it, get the theme page background colour, else invalid colour
90 virtual wxColour
GetThemeBackgroundColour() const { return wxNullColour
; }
93 // send wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING/ED events
95 // returns false if the change to nPage is vetoed by the program
96 bool SendPageChangingEvent(int nPage
);
98 // sends the event about page change from old to new (or GetSelection() if
100 void SendPageChangedEvent(int nPageOld
, int nPageNew
= -1);
104 DECLARE_NO_COPY_CLASS(wxNotebookBase
)
107 // ----------------------------------------------------------------------------
108 // notebook event class and related stuff
109 // ----------------------------------------------------------------------------
111 class WXDLLEXPORT wxNotebookEvent
: public wxBookCtrlBaseEvent
114 wxNotebookEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0,
115 int nSel
= -1, int nOldSel
= -1)
116 : wxBookCtrlBaseEvent(commandType
, winid
, nSel
, nOldSel
)
120 wxNotebookEvent(const wxNotebookEvent
& event
)
121 : wxBookCtrlBaseEvent(event
)
125 virtual wxEvent
*Clone() const { return new wxNotebookEvent(*this); }
128 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent
)
131 BEGIN_DECLARE_EVENT_TYPES()
132 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 802)
133 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 803)
134 END_DECLARE_EVENT_TYPES()
136 typedef void (wxEvtHandler::*wxNotebookEventFunction
)(wxNotebookEvent
&);
138 #define wxNotebookEventHandler(func) \
139 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func)
141 #define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
142 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))
144 #define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
145 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn))
147 // ----------------------------------------------------------------------------
148 // wxNotebook class itself
149 // ----------------------------------------------------------------------------
151 #if defined(__WXUNIVERSAL__)
152 #include "wx/univ/notebook.h"
153 #elif defined(__WXMSW__)
154 #include "wx/msw/notebook.h"
155 #elif defined(__WXMOTIF__)
156 #include "wx/generic/notebook.h"
157 #elif defined(__WXGTK20__)
158 #include "wx/gtk/notebook.h"
159 #elif defined(__WXGTK__)
160 #include "wx/gtk1/notebook.h"
161 #elif defined(__WXMAC__)
162 #include "wx/mac/notebook.h"
163 #elif defined(__WXCOCOA__)
164 #include "wx/cocoa/notebook.h"
165 #elif defined(__WXPM__)
166 #include "wx/os2/notebook.h"
169 #endif // wxUSE_NOTEBOOK
172 // _WX_NOTEBOOK_H_BASE_