]> git.saurik.com Git - wxWidgets.git/blob - include/wx/notebook.h
added wxPowerEvent; moved power functions stubs to common/powercmn.cpp
[wxWidgets.git] / include / wx / notebook.h
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$
8 // Copyright: (c) 1996-2000 Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_NOTEBOOK_H_BASE_
13 #define _WX_NOTEBOOK_H_BASE_
14
15 // ----------------------------------------------------------------------------
16 // headers
17 // ----------------------------------------------------------------------------
18
19 #include "wx/defs.h"
20
21 #if wxUSE_NOTEBOOK
22
23 #include "wx/bookctrl.h"
24
25 // ----------------------------------------------------------------------------
26 // constants
27 // ----------------------------------------------------------------------------
28
29 // wxNotebook hit results
30 enum
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
38 typedef wxWindow wxNotebookPage; // so far, any window can be a page
39
40 extern WXDLLEXPORT_DATA(const wxChar) wxNotebookNameStr[];
41
42 #if WXWIN_COMPATIBILITY_2_4
43 #define wxNOTEBOOK_NAME wxNotebookNameStr
44 #endif
45
46 // ----------------------------------------------------------------------------
47 // wxNotebookBase: define wxNotebook interface
48 // ----------------------------------------------------------------------------
49
50 class WXDLLEXPORT wxNotebookBase : public wxBookCtrlBase
51 {
52 public:
53 // ctors
54 // -----
55
56 wxNotebookBase() { }
57
58 wxNotebookBase(wxWindow *parent,
59 wxWindowID winid,
60 const wxPoint& pos = wxDefaultPosition,
61 const wxSize& size = wxDefaultSize,
62 long style = 0,
63 const wxString& name = wxNotebookNameStr) ;
64
65 // wxNotebook-specific additions to wxBookCtrlBase interface
66 // ---------------------------------------------------------
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
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
78
79
80 // implement some base class functions
81 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
82
83 // On platforms that support it, get the theme page background colour, else invalid colour
84 virtual wxColour GetThemeBackgroundColour() const { return wxNullColour; }
85
86 protected:
87 DECLARE_NO_COPY_CLASS(wxNotebookBase)
88 };
89
90 // ----------------------------------------------------------------------------
91 // notebook event class and related stuff
92 // ----------------------------------------------------------------------------
93
94 class WXDLLEXPORT wxNotebookEvent : public wxBookCtrlBaseEvent
95 {
96 public:
97 wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int winid = 0,
98 int nSel = -1, int nOldSel = -1)
99 : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
100 {
101 }
102
103 wxNotebookEvent(const wxNotebookEvent& event)
104 : wxBookCtrlBaseEvent(event)
105 {
106 }
107
108 virtual wxEvent *Clone() const { return new wxNotebookEvent(*this); }
109
110 private:
111 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotebookEvent)
112 };
113
114 BEGIN_DECLARE_EVENT_TYPES()
115 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802)
116 DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803)
117 END_DECLARE_EVENT_TYPES()
118
119 typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
120
121 #define wxNotebookEventHandler(func) \
122 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotebookEventFunction, &func)
123
124 #define EVT_NOTEBOOK_PAGE_CHANGED(winid, fn) \
125 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, winid, wxNotebookEventHandler(fn))
126
127 #define EVT_NOTEBOOK_PAGE_CHANGING(winid, fn) \
128 wx__DECLARE_EVT1(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, winid, wxNotebookEventHandler(fn))
129
130 // ----------------------------------------------------------------------------
131 // wxNotebook class itself
132 // ----------------------------------------------------------------------------
133
134 #if defined(__WXUNIVERSAL__)
135 #include "wx/univ/notebook.h"
136 #elif defined(__WXMSW__)
137 #include "wx/msw/notebook.h"
138 #elif defined(__WXMOTIF__)
139 #include "wx/generic/notebook.h"
140 #elif defined(__WXGTK20__)
141 #include "wx/gtk/notebook.h"
142 #elif defined(__WXGTK__)
143 #include "wx/gtk1/notebook.h"
144 #elif defined(__WXMAC__)
145 #include "wx/mac/notebook.h"
146 #elif defined(__WXCOCOA__)
147 #include "wx/cocoa/notebook.h"
148 #elif defined(__WXPM__)
149 #include "wx/os2/notebook.h"
150 #endif
151
152 #endif // wxUSE_NOTEBOOK
153
154 #endif
155 // _WX_NOTEBOOK_H_BASE_