]> git.saurik.com Git - wxWidgets.git/blame - include/wx/notebook.h
implemented wxDC::DoGetSize() correctly for metafile DC classes
[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
29// wxNotebook hit results
30enum
31{
32 wxNB_HITTEST_NOWHERE = 1, // not on tab
33 wxNB_HITTEST_ONICON = 2, // on icon
34 wxNB_HITTEST_ONLABEL = 4, // on label
35 wxNB_HITTEST_ONITEM = wxNB_HITTEST_ONICON | wxNB_HITTEST_ONLABEL
36};
37
1e6feb95
VZ
38typedef wxWindow wxNotebookPage; // so far, any window can be a page
39
16cba29d 40extern WXDLLEXPORT_DATA(const wxChar*) wxNotebookNameStr;
630ad6c6
WS
41
42#if WXWIN_COMPATIBILITY_2_4
43 #define wxNOTEBOOK_NAME wxNotebookNameStr
44#endif
1e6feb95
VZ
45
46// ----------------------------------------------------------------------------
47// wxNotebookBase: define wxNotebook interface
48// ----------------------------------------------------------------------------
49
61c083e7 50class WXDLLEXPORT wxNotebookBase : public wxBookCtrlBase
1e6feb95
VZ
51{
52public:
15aad3b9
VZ
53 // ctors
54 // -----
55
6463b9f5 56 wxNotebookBase() { }
15aad3b9
VZ
57
58 wxNotebookBase(wxWindow *parent,
aa6f64c7 59 wxWindowID winid,
15aad3b9
VZ
60 const wxPoint& pos = wxDefaultPosition,
61 const wxSize& size = wxDefaultSize,
62 long style = 0,
630ad6c6 63 const wxString& name = wxNotebookNameStr) ;
1e6feb95 64
61c083e7
WS
65 // wxNotebook-specific additions to wxBookCtrlBase interface
66 // ---------------------------------------------------------
1e6feb95
VZ
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
1e6feb95
VZ
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
e450aa69
VZ
78 // hit test, returns which tab is hit and, optionally, where (icon, label)
79 // (not implemented on all platforms)
fc7a2a60
VZ
80 virtual int HitTest(const wxPoint& WXUNUSED(pt),
81 long * WXUNUSED(flags) = NULL) const
e450aa69
VZ
82 {
83 return wxNOT_FOUND;
84 }
85
1e6feb95 86
15aad3b9
VZ
87 // implement some base class functions
88 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
22f3361e 89
25057aba
JS
90 // On platforms that support it, get the theme page background colour, else invalid colour
91 virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
92
48710795
RR
93
94 // Reserved for future use
95 virtual void ReservedNotebookFunc1() {}
96 virtual void ReservedNotebookFunc2() {}
97 virtual void ReservedNotebookFunc3() {}
98 virtual void ReservedNotebookFunc4() {}
99 virtual void ReservedNotebookFunc5() {}
100
15aad3b9 101protected:
22f3361e 102 DECLARE_NO_COPY_CLASS(wxNotebookBase)
1e6feb95 103};
4d0f3cd6
VZ
104
105// ----------------------------------------------------------------------------
15aad3b9 106// notebook event class and related stuff
4d0f3cd6
VZ
107// ----------------------------------------------------------------------------
108
61c083e7 109class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlBaseEvent
4d0f3cd6
VZ
110{
111public:
aa6f64c7 112 wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0,
4d0f3cd6 113 int nSel = -1, int nOldSel = -1)
61c083e7 114 : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
15aad3b9
VZ
115 {
116 }
4d0f3cd6 117
b2f8e75a
VZ
118 wxNotebookEvent(const wxNotebookEvent& event)
119 : wxBookCtrlBaseEvent(event)
120 {
121 }
122
123 virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); }
124
4d0f3cd6 125private:
b2f8e75a 126 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent)
4d0f3cd6
VZ
127};
128
2e4df4bf
VZ
129BEGIN_DECLARE_EVENT_TYPES()
130 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802)
131 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803)
132END_DECLARE_EVENT_TYPES()
133
4d0f3cd6
VZ
134typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
135
7fa03f04 136#define wxNotebookEventHandler(func) \
8bc3ec1f 137 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func)
7fa03f04
VZ
138
139#define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
140 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))
141
142#define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
143 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn))
4d0f3cd6
VZ
144
145// ----------------------------------------------------------------------------
146// wxNotebook class itself
147// ----------------------------------------------------------------------------
148
1e6feb95
VZ
149#if defined(__WXUNIVERSAL__)
150 #include "wx/univ/notebook.h"
151#elif defined(__WXMSW__)
aaace873 152 #include "wx/msw/notebook.h"
2049ba38 153#elif defined(__WXMOTIF__)
1e6feb95 154 #include "wx/generic/notebook.h"
2049ba38 155#elif defined(__WXGTK__)
1e6feb95 156 #include "wx/gtk/notebook.h"
34138703 157#elif defined(__WXMAC__)
1e6feb95 158 #include "wx/mac/notebook.h"
0201182b 159#elif defined(__WXCOCOA__)
0754a4b3 160 #include "wx/cocoa/notebook.h"
1777b9bb 161#elif defined(__WXPM__)
1e6feb95 162 #include "wx/os2/notebook.h"
53b28675
RR
163#endif
164
1e6feb95
VZ
165#endif // wxUSE_NOTEBOOK
166
53b28675 167#endif
34138703 168 // _WX_NOTEBOOK_H_BASE_