]>
Commit | Line | Data |
---|---|---|
1e6feb95 VZ |
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$ | |
99d80019 | 8 | // Copyright: (c) 1996-2000 Vadim Zeitlin |
65571936 | 9 | // Licence: wxWindows licence |
1e6feb95 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_NOTEBOOK_H_BASE_ |
13 | #define _WX_NOTEBOOK_H_BASE_ | |
53b28675 | 14 | |
4d0f3cd6 VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
1e6feb95 VZ |
19 | #include "wx/defs.h" |
20 | ||
21 | #if wxUSE_NOTEBOOK | |
22 | ||
15aad3b9 | 23 | #include "wx/bookctrl.h" |
1e6feb95 | 24 | |
e450aa69 VZ |
25 | // ---------------------------------------------------------------------------- |
26 | // constants | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
9804d540 WS |
29 | #if WXWIN_COMPATIBILITY_2_6 |
30 | ||
31 | // wxNotebook hit results, use wxBK_HITTEST so other book controls can share them | |
32 | // if wxUSE_NOTEBOOK is disabled | |
e450aa69 VZ |
33 | enum |
34 | { | |
9804d540 WS |
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 | |
e450aa69 VZ |
40 | }; |
41 | ||
9804d540 WS |
42 | #endif // WXWIN_COMPATIBILITY_2_6 |
43 | ||
1e6feb95 VZ |
44 | typedef wxWindow wxNotebookPage; // so far, any window can be a page |
45 | ||
63ec432b | 46 | extern WXDLLEXPORT_DATA(const wxChar) wxNotebookNameStr[]; |
630ad6c6 WS |
47 | |
48 | #if WXWIN_COMPATIBILITY_2_4 | |
49 | #define wxNOTEBOOK_NAME wxNotebookNameStr | |
50 | #endif | |
1e6feb95 VZ |
51 | |
52 | // ---------------------------------------------------------------------------- | |
53 | // wxNotebookBase: define wxNotebook interface | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
61c083e7 | 56 | class WXDLLEXPORT wxNotebookBase : public wxBookCtrlBase |
1e6feb95 VZ |
57 | { |
58 | public: | |
15aad3b9 VZ |
59 | // ctors |
60 | // ----- | |
61 | ||
6463b9f5 | 62 | wxNotebookBase() { } |
15aad3b9 VZ |
63 | |
64 | wxNotebookBase(wxWindow *parent, | |
aa6f64c7 | 65 | wxWindowID winid, |
15aad3b9 VZ |
66 | const wxPoint& pos = wxDefaultPosition, |
67 | const wxSize& size = wxDefaultSize, | |
68 | long style = 0, | |
630ad6c6 | 69 | const wxString& name = wxNotebookNameStr) ; |
1e6feb95 | 70 | |
61c083e7 WS |
71 | // wxNotebook-specific additions to wxBookCtrlBase interface |
72 | // --------------------------------------------------------- | |
1e6feb95 VZ |
73 | |
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; } | |
77 | ||
1e6feb95 VZ |
78 | // set the padding between tabs (in pixels) |
79 | virtual void SetPadding(const wxSize& padding) = 0; | |
80 | ||
81 | // set the size of the tabs for wxNB_FIXEDWIDTH controls | |
82 | virtual void SetTabSize(const wxSize& sz) = 0; | |
83 | ||
e450aa69 | 84 | |
1e6feb95 | 85 | |
15aad3b9 VZ |
86 | // implement some base class functions |
87 | virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const; | |
22f3361e | 88 | |
25057aba JS |
89 | // On platforms that support it, get the theme page background colour, else invalid colour |
90 | virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; } | |
91 | ||
a570e8f8 VZ |
92 | |
93 | // send wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING/ED events | |
94 | ||
95 | // returns false if the change to nPage is vetoed by the program | |
96 | bool SendPageChangingEvent(int nPage); | |
97 | ||
98 | // sends the event about page change from old to new (or GetSelection() if | |
99 | // new is -1) | |
100 | void SendPageChangedEvent(int nPageOld, int nPageNew = -1); | |
101 | ||
102 | ||
15aad3b9 | 103 | protected: |
22f3361e | 104 | DECLARE_NO_COPY_CLASS(wxNotebookBase) |
1e6feb95 | 105 | }; |
4d0f3cd6 VZ |
106 | |
107 | // ---------------------------------------------------------------------------- | |
15aad3b9 | 108 | // notebook event class and related stuff |
4d0f3cd6 VZ |
109 | // ---------------------------------------------------------------------------- |
110 | ||
61c083e7 | 111 | class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlBaseEvent |
4d0f3cd6 VZ |
112 | { |
113 | public: | |
aa6f64c7 | 114 | wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0, |
4d0f3cd6 | 115 | int nSel = -1, int nOldSel = -1) |
61c083e7 | 116 | : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel) |
15aad3b9 VZ |
117 | { |
118 | } | |
4d0f3cd6 | 119 | |
b2f8e75a VZ |
120 | wxNotebookEvent(const wxNotebookEvent& event) |
121 | : wxBookCtrlBaseEvent(event) | |
122 | { | |
123 | } | |
124 | ||
125 | virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); } | |
126 | ||
4d0f3cd6 | 127 | private: |
b2f8e75a | 128 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent) |
4d0f3cd6 VZ |
129 | }; |
130 | ||
2e4df4bf VZ |
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() | |
135 | ||
4d0f3cd6 VZ |
136 | typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&); |
137 | ||
7fa03f04 | 138 | #define wxNotebookEventHandler(func) \ |
8bc3ec1f | 139 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func) |
7fa03f04 VZ |
140 | |
141 | #define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \ | |
142 | wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn)) | |
143 | ||
144 | #define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \ | |
145 | wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn)) | |
4d0f3cd6 VZ |
146 | |
147 | // ---------------------------------------------------------------------------- | |
148 | // wxNotebook class itself | |
149 | // ---------------------------------------------------------------------------- | |
150 | ||
1e6feb95 VZ |
151 | #if defined(__WXUNIVERSAL__) |
152 | #include "wx/univ/notebook.h" | |
153 | #elif defined(__WXMSW__) | |
aaace873 | 154 | #include "wx/msw/notebook.h" |
2049ba38 | 155 | #elif defined(__WXMOTIF__) |
1e6feb95 | 156 | #include "wx/generic/notebook.h" |
1be7a35c | 157 | #elif defined(__WXGTK20__) |
1e6feb95 | 158 | #include "wx/gtk/notebook.h" |
1be7a35c MR |
159 | #elif defined(__WXGTK__) |
160 | #include "wx/gtk1/notebook.h" | |
34138703 | 161 | #elif defined(__WXMAC__) |
1e6feb95 | 162 | #include "wx/mac/notebook.h" |
0201182b | 163 | #elif defined(__WXCOCOA__) |
0754a4b3 | 164 | #include "wx/cocoa/notebook.h" |
1777b9bb | 165 | #elif defined(__WXPM__) |
1e6feb95 | 166 | #include "wx/os2/notebook.h" |
53b28675 RR |
167 | #endif |
168 | ||
1e6feb95 VZ |
169 | #endif // wxUSE_NOTEBOOK |
170 | ||
53b28675 | 171 | #endif |
34138703 | 172 | // _WX_NOTEBOOK_H_BASE_ |