]> git.saurik.com Git - wxWidgets.git/blob - include/wx/notebook.h
ef5419d80747412afbd8534e5868d1f3597b328e
[wxWidgets.git] / include / wx / notebook.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/notebook.h
3 // Purpose: wxNotebook interface
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 01.02.01
7 // RCS-ID: $Id$
8 // Copyright: (c) 1996-2000 wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_NOTEBOOK_H_BASE_
13 #define _WX_NOTEBOOK_H_BASE_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "notebookbase.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // headers
21 // ----------------------------------------------------------------------------
22
23 #include "wx/defs.h"
24
25 #if wxUSE_NOTEBOOK
26
27 #include "wx/bookctrl.h"
28
29 // ----------------------------------------------------------------------------
30 // constants
31 // ----------------------------------------------------------------------------
32
33 // wxNotebook hit results
34 enum
35 {
36 wxNB_HITTEST_NOWHERE = 1, // not on tab
37 wxNB_HITTEST_ONICON = 2, // on icon
38 wxNB_HITTEST_ONLABEL = 4, // on label
39 wxNB_HITTEST_ONITEM = wxNB_HITTEST_ONICON | wxNB_HITTEST_ONLABEL
40 };
41
42 typedef wxWindow wxNotebookPage; // so far, any window can be a page
43
44 #define wxNOTEBOOK_NAME _T("notebook")
45
46 // ----------------------------------------------------------------------------
47 // wxNotebookBase: define wxNotebook interface
48 // ----------------------------------------------------------------------------
49
50 class WXDLLEXPORT wxNotebookBase : public wxBookCtrl
51 {
52 public:
53 // ctors
54 // -----
55
56 wxNotebookBase() { }
57
58 wxNotebookBase(wxWindow *parent,
59 wxWindowID winid,
60 const wxPoint& pos = wxDefaultPosition,
61 const wxSize& size = wxDefaultSize,
62 long style = 0,
63 const wxString& name = wxNOTEBOOK_NAME) ;
64
65 // wxNotebook-specific additions to wxBookCtrl interface
66 // -----------------------------------------------------
67
68 // get the number of rows for a control with wxNB_MULTILINE style (not all
69 // versions support it - they will always return 1 then)
70 virtual int GetRowCount() const { return 1; }
71
72 // set the padding between tabs (in pixels)
73 virtual void SetPadding(const wxSize& padding) = 0;
74
75 // set the size of the tabs for wxNB_FIXEDWIDTH controls
76 virtual void SetTabSize(const wxSize& sz) = 0;
77
78 // hit test, returns which tab is hit and, optionally, where (icon, label)
79 // (not implemented on all platforms)
80 virtual int HitTest(const wxPoint& WXUNUSED(pt),
81 long * WXUNUSED(flags) = NULL) const
82 {
83 return wxNOT_FOUND;
84 }
85
86
87 // implement some base class functions
88 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
89 virtual bool CanApplyParentThemeBackground() const { return true; }
90
91 protected:
92 DECLARE_NO_COPY_CLASS(wxNotebookBase)
93 };
94
95 // ----------------------------------------------------------------------------
96 // notebook event class and related stuff
97 // ----------------------------------------------------------------------------
98
99 class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlEvent
100 {
101 public:
102 wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0,
103 int nSel = -1, int nOldSel = -1)
104 : wxBookCtrlEvent(commandType, winid, nSel, nOldSel)
105 {
106 }
107
108 private:
109 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebookEvent)
110 };
111
112 BEGIN_DECLARE_EVENT_TYPES()
113 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802)
114 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803)
115 END_DECLARE_EVENT_TYPES()
116
117 typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
118
119 #define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
120 DECLARE_EVENT_TABLE_ENTRY( \
121 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, \
122 winid, \
123 -1, \
124 (wxObjectEventFunction)(wxEventFunction) wxStaticCastEvent( wxNotebookEventFunction, &fn ), \
125 NULL \
126 ),
127
128 #define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
129 DECLARE_EVENT_TABLE_ENTRY( \
130 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, \
131 winid, \
132 -1, \
133 (wxObjectEventFunction)(wxEventFunction) wxStaticCastEvent( wxNotebookEventFunction, &fn ), \
134 NULL \
135 ),
136
137 // ----------------------------------------------------------------------------
138 // wxNotebook class itself
139 // ----------------------------------------------------------------------------
140
141 #if defined(__WXUNIVERSAL__)
142 #include "wx/univ/notebook.h"
143 #elif defined(__WXMSW__)
144 #include "wx/msw/notebook.h"
145 #elif defined(__WXMOTIF__)
146 #include "wx/generic/notebook.h"
147 #elif defined(__WXGTK__)
148 #include "wx/gtk/notebook.h"
149 #elif defined(__WXMAC__)
150 #include "wx/mac/notebook.h"
151 #elif defined(__WXCOCOA__)
152 #include "wx/generic/notebook.h"
153 #elif defined(__WXPM__)
154 #include "wx/os2/notebook.h"
155 #endif
156
157 #endif // wxUSE_NOTEBOOK
158
159 #endif
160 // _WX_NOTEBOOK_H_BASE_