]> git.saurik.com Git - wxWidgets.git/blame - include/wx/notebook.h
[ 1487463 ] XRC handler for wxOwnerDrawnComboBox.
[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
d0a84b63
VZ
35 wxNB_HITTEST_ONITEM = wxNB_HITTEST_ONICON | wxNB_HITTEST_ONLABEL,
36 wxNB_HITTEST_ONPAGE = 8 // not on tab control, but over the selected page
e450aa69
VZ
37};
38
1e6feb95
VZ
39typedef wxWindow wxNotebookPage; // so far, any window can be a page
40
63ec432b 41extern WXDLLEXPORT_DATA(const wxChar) wxNotebookNameStr[];
630ad6c6
WS
42
43#if WXWIN_COMPATIBILITY_2_4
44 #define wxNOTEBOOK_NAME wxNotebookNameStr
45#endif
1e6feb95
VZ
46
47// ----------------------------------------------------------------------------
48// wxNotebookBase: define wxNotebook interface
49// ----------------------------------------------------------------------------
50
61c083e7 51class WXDLLEXPORT wxNotebookBase : public wxBookCtrlBase
1e6feb95
VZ
52{
53public:
15aad3b9
VZ
54 // ctors
55 // -----
56
6463b9f5 57 wxNotebookBase() { }
15aad3b9
VZ
58
59 wxNotebookBase(wxWindow *parent,
aa6f64c7 60 wxWindowID winid,
15aad3b9
VZ
61 const wxPoint& pos = wxDefaultPosition,
62 const wxSize& size = wxDefaultSize,
63 long style = 0,
630ad6c6 64 const wxString& name = wxNotebookNameStr) ;
1e6feb95 65
61c083e7
WS
66 // wxNotebook-specific additions to wxBookCtrlBase interface
67 // ---------------------------------------------------------
1e6feb95
VZ
68
69 // get the number of rows for a control with wxNB_MULTILINE style (not all
70 // versions support it - they will always return 1 then)
71 virtual int GetRowCount() const { return 1; }
72
1e6feb95
VZ
73 // set the padding between tabs (in pixels)
74 virtual void SetPadding(const wxSize& padding) = 0;
75
76 // set the size of the tabs for wxNB_FIXEDWIDTH controls
77 virtual void SetTabSize(const wxSize& sz) = 0;
78
e450aa69 79
1e6feb95 80
15aad3b9
VZ
81 // implement some base class functions
82 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
22f3361e 83
25057aba
JS
84 // On platforms that support it, get the theme page background colour, else invalid colour
85 virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
86
15aad3b9 87protected:
22f3361e 88 DECLARE_NO_COPY_CLASS(wxNotebookBase)
1e6feb95 89};
4d0f3cd6
VZ
90
91// ----------------------------------------------------------------------------
15aad3b9 92// notebook event class and related stuff
4d0f3cd6
VZ
93// ----------------------------------------------------------------------------
94
61c083e7 95class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlBaseEvent
4d0f3cd6
VZ
96{
97public:
aa6f64c7 98 wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0,
4d0f3cd6 99 int nSel = -1, int nOldSel = -1)
61c083e7 100 : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
15aad3b9
VZ
101 {
102 }
4d0f3cd6 103
b2f8e75a
VZ
104 wxNotebookEvent(const wxNotebookEvent& event)
105 : wxBookCtrlBaseEvent(event)
106 {
107 }
108
109 virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); }
110
4d0f3cd6 111private:
b2f8e75a 112 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent)
4d0f3cd6
VZ
113};
114
2e4df4bf
VZ
115BEGIN_DECLARE_EVENT_TYPES()
116 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802)
117 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803)
118END_DECLARE_EVENT_TYPES()
119
4d0f3cd6
VZ
120typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
121
7fa03f04 122#define wxNotebookEventHandler(func) \
8bc3ec1f 123 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func)
7fa03f04
VZ
124
125#define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
126 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))
127
128#define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
129 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn))
4d0f3cd6
VZ
130
131// ----------------------------------------------------------------------------
132// wxNotebook class itself
133// ----------------------------------------------------------------------------
134
1e6feb95
VZ
135#if defined(__WXUNIVERSAL__)
136 #include "wx/univ/notebook.h"
137#elif defined(__WXMSW__)
aaace873 138 #include "wx/msw/notebook.h"
2049ba38 139#elif defined(__WXMOTIF__)
1e6feb95 140 #include "wx/generic/notebook.h"
1be7a35c 141#elif defined(__WXGTK20__)
1e6feb95 142 #include "wx/gtk/notebook.h"
1be7a35c
MR
143#elif defined(__WXGTK__)
144 #include "wx/gtk1/notebook.h"
34138703 145#elif defined(__WXMAC__)
1e6feb95 146 #include "wx/mac/notebook.h"
0201182b 147#elif defined(__WXCOCOA__)
0754a4b3 148 #include "wx/cocoa/notebook.h"
1777b9bb 149#elif defined(__WXPM__)
1e6feb95 150 #include "wx/os2/notebook.h"
53b28675
RR
151#endif
152
1e6feb95
VZ
153#endif // wxUSE_NOTEBOOK
154
53b28675 155#endif
34138703 156 // _WX_NOTEBOOK_H_BASE_