]> git.saurik.com Git - wxWidgets.git/blame - include/wx/notebook.h
Make wxChoice and wxComboBox behaviour same as in native controls in wxMSW.
[wxWidgets.git] / include / wx / notebook.h
CommitLineData
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// wxNotebook hit results, use wxBK_HITTEST so other book controls can share them
30// if wxUSE_NOTEBOOK is disabled
e450aa69
VZ
31enum
32{
9804d540
WS
33 wxNB_HITTEST_NOWHERE = wxBK_HITTEST_NOWHERE,
34 wxNB_HITTEST_ONICON = wxBK_HITTEST_ONICON,
35 wxNB_HITTEST_ONLABEL = wxBK_HITTEST_ONLABEL,
36 wxNB_HITTEST_ONITEM = wxBK_HITTEST_ONITEM,
37 wxNB_HITTEST_ONPAGE = wxBK_HITTEST_ONPAGE
e450aa69
VZ
38};
39
90c0f63a
VZ
40// wxNotebook flags
41
42// use common book wxBK_* flags for describing alignment
43#define wxNB_DEFAULT wxBK_DEFAULT
44#define wxNB_TOP wxBK_TOP
45#define wxNB_BOTTOM wxBK_BOTTOM
46#define wxNB_LEFT wxBK_LEFT
47#define wxNB_RIGHT wxBK_RIGHT
48
49#define wxNB_FIXEDWIDTH 0x0100
50#define wxNB_MULTILINE 0x0200
51#define wxNB_NOPAGETHEME 0x0400
52#define wxNB_FLAT 0x0800
53
9804d540 54
1e6feb95
VZ
55typedef wxWindow wxNotebookPage; // so far, any window can be a page
56
53a2db12 57extern WXDLLIMPEXP_DATA_CORE(const char) wxNotebookNameStr[];
630ad6c6 58
28953245
SC
59#if wxUSE_EXTENDED_RTTI
60
61// ----------------------------------------------------------------------------
62// XTI accessor
63// ----------------------------------------------------------------------------
64
65class WXDLLEXPORT wxNotebookPageInfo : public wxObject
66{
67public:
68 wxNotebookPageInfo() { m_page = NULL; m_imageId = -1; m_selected = false; }
69 virtual ~wxNotebookPageInfo() { }
70
71 bool Create(wxNotebookPage *page,
72 const wxString& text,
73 bool selected,
74 int imageId)
75 {
76 m_page = page;
77 m_text = text;
78 m_selected = selected;
79 m_imageId = imageId;
80 return true;
81 }
82
83 wxNotebookPage* GetPage() const { return m_page; }
84 wxString GetText() const { return m_text; }
85 bool GetSelected() const { return m_selected; }
86 int GetImageId() const { return m_imageId; }
87
88private:
89 wxNotebookPage *m_page;
90 wxString m_text;
91 bool m_selected;
92 int m_imageId;
93
94 DECLARE_DYNAMIC_CLASS(wxNotebookPageInfo)
95};
96
97WX_DECLARE_EXPORTED_LIST(wxNotebookPageInfo, wxNotebookPageInfoList );
98
99#endif
100
1e6feb95
VZ
101// ----------------------------------------------------------------------------
102// wxNotebookBase: define wxNotebook interface
103// ----------------------------------------------------------------------------
104
53a2db12 105class WXDLLIMPEXP_CORE wxNotebookBase : public wxBookCtrlBase
1e6feb95
VZ
106{
107public:
15aad3b9
VZ
108 // ctors
109 // -----
110
6463b9f5 111 wxNotebookBase() { }
15aad3b9 112
61c083e7
WS
113 // wxNotebook-specific additions to wxBookCtrlBase interface
114 // ---------------------------------------------------------
1e6feb95
VZ
115
116 // get the number of rows for a control with wxNB_MULTILINE style (not all
117 // versions support it - they will always return 1 then)
118 virtual int GetRowCount() const { return 1; }
119
1e6feb95
VZ
120 // set the padding between tabs (in pixels)
121 virtual void SetPadding(const wxSize& padding) = 0;
122
123 // set the size of the tabs for wxNB_FIXEDWIDTH controls
124 virtual void SetTabSize(const wxSize& sz) = 0;
125
e450aa69 126
1e6feb95 127
15aad3b9
VZ
128 // implement some base class functions
129 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
22f3361e 130
25057aba
JS
131 // On platforms that support it, get the theme page background colour, else invalid colour
132 virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
133
a570e8f8
VZ
134
135 // send wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING/ED events
136
137 // returns false if the change to nPage is vetoed by the program
138 bool SendPageChangingEvent(int nPage);
139
140 // sends the event about page change from old to new (or GetSelection() if
7e837615
VZ
141 // new is wxNOT_FOUND)
142 void SendPageChangedEvent(int nPageOld, int nPageNew = wxNOT_FOUND);
a570e8f8 143
6b81fbd8
VZ
144 // wxBookCtrlBase overrides this method to return false but we do need
145 // focus because we have tabs
146 virtual bool AcceptsFocus() const { return wxControl::AcceptsFocus(); }
a570e8f8 147
28953245
SC
148#if wxUSE_EXTENDED_RTTI
149 // XTI accessors
150 virtual void AddPageInfo( wxNotebookPageInfo* info );
151 virtual const wxNotebookPageInfoList& GetPageInfos() const;
152#endif
153
15aad3b9 154protected:
28953245
SC
155#if wxUSE_EXTENDED_RTTI
156 wxNotebookPageInfoList m_pageInfos;
157#endif
c0c133e1 158 wxDECLARE_NO_COPY_CLASS(wxNotebookBase);
1e6feb95 159};
4d0f3cd6
VZ
160
161// ----------------------------------------------------------------------------
15aad3b9 162// notebook event class and related stuff
4d0f3cd6
VZ
163// ----------------------------------------------------------------------------
164
856b41f9
VZ
165// wxNotebookEvent is obsolete and defined for compatibility only (notice that
166// we use #define and not typedef to also keep compatibility with the existing
167// code which forward declares it)
168#define wxNotebookEvent wxBookCtrlEvent
3e97a905
VZ
169typedef wxBookCtrlEventFunction wxNotebookEventFunction;
170#define wxNotebookEventHandler(func) wxBookCtrlEventHandler(func)
4d0f3cd6 171
9b11752c
VZ
172wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, wxBookCtrlEvent );
173wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, wxBookCtrlEvent );
2e4df4bf 174
7fa03f04 175#define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
3e97a905 176 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxBookCtrlEventHandler(fn))
7fa03f04
VZ
177
178#define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
3e97a905 179 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxBookCtrlEventHandler(fn))
4d0f3cd6
VZ
180
181// ----------------------------------------------------------------------------
182// wxNotebook class itself
183// ----------------------------------------------------------------------------
184
1e6feb95
VZ
185#if defined(__WXUNIVERSAL__)
186 #include "wx/univ/notebook.h"
187#elif defined(__WXMSW__)
aaace873 188 #include "wx/msw/notebook.h"
2049ba38 189#elif defined(__WXMOTIF__)
1e6feb95 190 #include "wx/generic/notebook.h"
1be7a35c 191#elif defined(__WXGTK20__)
1e6feb95 192 #include "wx/gtk/notebook.h"
1be7a35c
MR
193#elif defined(__WXGTK__)
194 #include "wx/gtk1/notebook.h"
34138703 195#elif defined(__WXMAC__)
ef0e9220 196 #include "wx/osx/notebook.h"
0201182b 197#elif defined(__WXCOCOA__)
0754a4b3 198 #include "wx/cocoa/notebook.h"
1777b9bb 199#elif defined(__WXPM__)
1e6feb95 200 #include "wx/os2/notebook.h"
53b28675
RR
201#endif
202
1e6feb95
VZ
203#endif // wxUSE_NOTEBOOK
204
53b28675 205#endif
34138703 206 // _WX_NOTEBOOK_H_BASE_