]> git.saurik.com Git - wxWidgets.git/blame - include/wx/notebook.h
use LLONG_MIN instead of -1 (which is a valid time value corresponding to 1ms before...
[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
63ec432b 57extern WXDLLEXPORT_DATA(const wxChar) wxNotebookNameStr[];
630ad6c6
WS
58
59#if WXWIN_COMPATIBILITY_2_4
60 #define wxNOTEBOOK_NAME wxNotebookNameStr
61#endif
1e6feb95
VZ
62
63// ----------------------------------------------------------------------------
64// wxNotebookBase: define wxNotebook interface
65// ----------------------------------------------------------------------------
66
61c083e7 67class WXDLLEXPORT wxNotebookBase : public wxBookCtrlBase
1e6feb95
VZ
68{
69public:
15aad3b9
VZ
70 // ctors
71 // -----
72
6463b9f5 73 wxNotebookBase() { }
15aad3b9
VZ
74
75 wxNotebookBase(wxWindow *parent,
aa6f64c7 76 wxWindowID winid,
15aad3b9
VZ
77 const wxPoint& pos = wxDefaultPosition,
78 const wxSize& size = wxDefaultSize,
79 long style = 0,
630ad6c6 80 const wxString& name = wxNotebookNameStr) ;
1e6feb95 81
61c083e7
WS
82 // wxNotebook-specific additions to wxBookCtrlBase interface
83 // ---------------------------------------------------------
1e6feb95
VZ
84
85 // get the number of rows for a control with wxNB_MULTILINE style (not all
86 // versions support it - they will always return 1 then)
87 virtual int GetRowCount() const { return 1; }
88
1e6feb95
VZ
89 // set the padding between tabs (in pixels)
90 virtual void SetPadding(const wxSize& padding) = 0;
91
92 // set the size of the tabs for wxNB_FIXEDWIDTH controls
93 virtual void SetTabSize(const wxSize& sz) = 0;
94
e450aa69 95
1e6feb95 96
15aad3b9
VZ
97 // implement some base class functions
98 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
22f3361e 99
25057aba
JS
100 // On platforms that support it, get the theme page background colour, else invalid colour
101 virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
102
a570e8f8
VZ
103
104 // send wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING/ED events
105
106 // returns false if the change to nPage is vetoed by the program
107 bool SendPageChangingEvent(int nPage);
108
109 // sends the event about page change from old to new (or GetSelection() if
110 // new is -1)
111 void SendPageChangedEvent(int nPageOld, int nPageNew = -1);
112
113
15aad3b9 114protected:
22f3361e 115 DECLARE_NO_COPY_CLASS(wxNotebookBase)
1e6feb95 116};
4d0f3cd6
VZ
117
118// ----------------------------------------------------------------------------
15aad3b9 119// notebook event class and related stuff
4d0f3cd6
VZ
120// ----------------------------------------------------------------------------
121
61c083e7 122class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlBaseEvent
4d0f3cd6
VZ
123{
124public:
aa6f64c7 125 wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0,
4d0f3cd6 126 int nSel = -1, int nOldSel = -1)
61c083e7 127 : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
15aad3b9
VZ
128 {
129 }
4d0f3cd6 130
b2f8e75a
VZ
131 wxNotebookEvent(const wxNotebookEvent& event)
132 : wxBookCtrlBaseEvent(event)
133 {
134 }
135
136 virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); }
137
4d0f3cd6 138private:
b2f8e75a 139 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent)
4d0f3cd6
VZ
140};
141
2e4df4bf
VZ
142BEGIN_DECLARE_EVENT_TYPES()
143 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802)
144 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803)
145END_DECLARE_EVENT_TYPES()
146
4d0f3cd6
VZ
147typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
148
7fa03f04 149#define wxNotebookEventHandler(func) \
8bc3ec1f 150 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func)
7fa03f04
VZ
151
152#define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
153 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))
154
155#define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
156 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn))
4d0f3cd6
VZ
157
158// ----------------------------------------------------------------------------
159// wxNotebook class itself
160// ----------------------------------------------------------------------------
161
1e6feb95
VZ
162#if defined(__WXUNIVERSAL__)
163 #include "wx/univ/notebook.h"
164#elif defined(__WXMSW__)
aaace873 165 #include "wx/msw/notebook.h"
2049ba38 166#elif defined(__WXMOTIF__)
1e6feb95 167 #include "wx/generic/notebook.h"
1be7a35c 168#elif defined(__WXGTK20__)
1e6feb95 169 #include "wx/gtk/notebook.h"
1be7a35c
MR
170#elif defined(__WXGTK__)
171 #include "wx/gtk1/notebook.h"
34138703 172#elif defined(__WXMAC__)
1e6feb95 173 #include "wx/mac/notebook.h"
0201182b 174#elif defined(__WXCOCOA__)
0754a4b3 175 #include "wx/cocoa/notebook.h"
1777b9bb 176#elif defined(__WXPM__)
1e6feb95 177 #include "wx/os2/notebook.h"
53b28675
RR
178#endif
179
1e6feb95
VZ
180#endif // wxUSE_NOTEBOOK
181
53b28675 182#endif
34138703 183 // _WX_NOTEBOOK_H_BASE_