]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
be5a51fb | 2 | // Program: wxWidgets Widgets Sample |
32b8ec41 VZ |
3 | // Name: widgets.h |
4 | // Purpose: Common stuff for all widgets project files | |
5 | // Author: Vadim Zeitlin | |
6 | // Created: 27.03.01 | |
7 | // Id: $Id$ | |
8 | // Copyright: (c) 2001 Vadim Zeitlin | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_SAMPLE_WIDGETS_H_ | |
13 | #define _WX_SAMPLE_WIDGETS_H_ | |
14 | ||
fe5dc33d | 15 | #if wxUSE_TREEBOOK && !defined(__WXHANDHELD__) |
f2fdc4d5 WS |
16 | #include "wx/treebook.h" |
17 | #define USE_TREEBOOK 1 | |
18 | #define WidgetsBookCtrl wxTreebook | |
19 | #define WidgetsBookCtrlEvent wxTreebookEvent | |
3e859739 | 20 | #define EVT_WIDGETS_PAGE_CHANGING(id,func) EVT_TREEBOOK_PAGE_CHANGING(id,func) |
0cebbfc2 WS |
21 | #define wxEVT_COMMAND_WIDGETS_PAGE_CHANGED wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED |
22 | #define wxWidgetsbookEventHandler(func) wxTreebookEventHandler(func) | |
f2fdc4d5 WS |
23 | #else |
24 | #include "wx/bookctrl.h" | |
25 | #define USE_TREEBOOK 0 | |
26 | #define WidgetsBookCtrl wxBookCtrl | |
27 | #define WidgetsBookCtrlEvent wxBookCtrlEvent | |
3e859739 | 28 | #define EVT_WIDGETS_PAGE_CHANGING(id,func) EVT_BOOKCTRL_PAGE_CHANGING(id,func) |
0cebbfc2 | 29 | #define wxEVT_COMMAND_WIDGETS_PAGE_CHANGED wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED |
d3d256ef | 30 | #define wxWidgetsbookEventHandler(func) wxBookCtrlEventHandler(func) |
f2fdc4d5 WS |
31 | #endif |
32 | ||
261357eb | 33 | #if wxUSE_LOG && !defined(__WXHANDHELD__) |
f2fdc4d5 WS |
34 | #define USE_LOG 1 |
35 | #else | |
36 | #define USE_LOG 0 | |
37 | #endif | |
38 | ||
261357eb WS |
39 | #if defined(__WXHANDHELD__) |
40 | #define USE_ICONS_IN_BOOK 0 | |
41 | #else | |
42 | #define USE_ICONS_IN_BOOK 1 | |
993b016d | 43 | #define ICON_SIZE 16 |
261357eb WS |
44 | #endif |
45 | ||
7742ea6a PC |
46 | class WXDLLIMPEXP_FWD_CORE wxCheckBox; |
47 | class WXDLLIMPEXP_FWD_CORE wxSizer; | |
48 | class WXDLLIMPEXP_FWD_CORE wxImageList; | |
49 | class WXDLLIMPEXP_FWD_CORE wxTextCtrl; | |
50 | class WXDLLIMPEXP_FWD_CORE WidgetsBookCtrl; | |
32b8ec41 | 51 | |
2b5f62a0 | 52 | class WidgetsPageInfo; |
32b8ec41 | 53 | |
0b90b51c | 54 | #include "wx/panel.h" |
ca288f2a | 55 | #include "wx/vector.h" |
0b90b51c | 56 | |
f2fdc4d5 WS |
57 | // INTRODUCING NEW PAGES DON'T FORGET TO ADD ENTRIES TO 'WidgetsCategories' |
58 | enum | |
59 | { | |
d8d07a79 WS |
60 | // On wxUniversal-based build (wxX11, wxMGL, wxMSWUniv, wxGTKUniv, etc.) |
61 | // 'native' means 'made with wxUniv port renderer' | |
f2fdc4d5 | 62 | NATIVE_PAGE = 0, |
d8d07a79 | 63 | UNIVERSAL_PAGE = NATIVE_PAGE, |
f2fdc4d5 WS |
64 | GENERIC_PAGE, |
65 | PICKER_PAGE, | |
66 | COMBO_PAGE, | |
67 | WITH_ITEMS_PAGE, | |
68 | EDITABLE_PAGE, | |
69 | BOOK_PAGE, | |
70 | ALL_PAGE, | |
71 | MAX_PAGES | |
72 | }; | |
73 | ||
74 | enum | |
75 | { | |
76 | NATIVE_CTRLS = 1 << NATIVE_PAGE, | |
d8d07a79 | 77 | UNIVERSAL_CTRLS = NATIVE_CTRLS, |
f2fdc4d5 WS |
78 | GENERIC_CTRLS = 1 << GENERIC_PAGE, |
79 | PICKER_CTRLS = 1 << PICKER_PAGE, | |
80 | COMBO_CTRLS = 1 << COMBO_PAGE, | |
81 | WITH_ITEMS_CTRLS = 1 << WITH_ITEMS_PAGE, | |
82 | EDITABLE_CTRLS = 1 << EDITABLE_PAGE, | |
83 | BOOK_CTRLS = 1 << BOOK_PAGE, | |
84 | ALL_CTRLS = 1 << ALL_PAGE | |
85 | }; | |
49abcb2f | 86 | |
ca288f2a VZ |
87 | typedef wxVector<wxControl *> Widgets; |
88 | ||
32b8ec41 | 89 | // ---------------------------------------------------------------------------- |
61c083e7 | 90 | // WidgetsPage: a book page demonstrating some widget |
32b8ec41 VZ |
91 | // ---------------------------------------------------------------------------- |
92 | ||
93 | class WidgetsPage : public wxPanel | |
94 | { | |
95 | public: | |
261357eb WS |
96 | WidgetsPage(WidgetsBookCtrl *book, |
97 | wxImageList *imaglist, | |
747d7d7c | 98 | const char *const icon[]); |
32b8ec41 | 99 | |
195df7a7 VZ |
100 | // return the control shown by this page |
101 | virtual wxControl *GetWidget() const = 0; | |
102 | ||
6a8d7937 VZ |
103 | // return the control shown by this page, if it supports text entry interface |
104 | virtual wxTextEntryBase *GetTextEntry() const { return NULL; } | |
105 | ||
453535a7 WS |
106 | // lazy creation of the content |
107 | virtual void CreateContent() = 0; | |
108 | ||
ca288f2a VZ |
109 | // some pages show additional controls, in this case override this one to |
110 | // return all of them (including the one returned by GetWidget()) | |
111 | virtual Widgets GetWidgets() const | |
112 | { | |
113 | Widgets widgets; | |
114 | widgets.push_back(GetWidget()); | |
115 | return widgets; | |
116 | } | |
1c01dd16 | 117 | |
1301e228 VZ |
118 | // recreate the control shown by this page |
119 | // | |
120 | // this is currently used only to take into account the border flags | |
121 | virtual void RecreateWidget() = 0; | |
122 | ||
123 | // the default flags for the widget, currently only contains border flags | |
124 | static int ms_defaultFlags; | |
125 | ||
32b8ec41 VZ |
126 | protected: |
127 | // several helper functions for page creation | |
128 | ||
129 | // create a horz sizer containing the given control and the text ctrl | |
130 | // (pointer to which will be saved in the provided variable if not NULL) | |
131 | // with the specified id | |
132 | wxSizer *CreateSizerWithText(wxControl *control, | |
206d3a16 | 133 | wxWindowID id = wxID_ANY, |
32b8ec41 VZ |
134 | wxTextCtrl **ppText = NULL); |
135 | ||
136 | // create a sizer containing a label and a text ctrl | |
137 | wxSizer *CreateSizerWithTextAndLabel(const wxString& label, | |
206d3a16 | 138 | wxWindowID id = wxID_ANY, |
32b8ec41 VZ |
139 | wxTextCtrl **ppText = NULL); |
140 | ||
141 | // create a sizer containing a button and a text ctrl | |
142 | wxSizer *CreateSizerWithTextAndButton(wxWindowID idBtn, | |
143 | const wxString& labelBtn, | |
206d3a16 | 144 | wxWindowID id = wxID_ANY, |
32b8ec41 VZ |
145 | wxTextCtrl **ppText = NULL); |
146 | ||
147 | // create a checkbox and add it to the sizer | |
148 | wxCheckBox *CreateCheckBoxAndAddToSizer(wxSizer *sizer, | |
149 | const wxString& label, | |
206d3a16 | 150 | wxWindowID id = wxID_ANY); |
32b8ec41 VZ |
151 | |
152 | public: | |
153 | // the head of the linked list containinginfo about all pages | |
154 | static WidgetsPageInfo *ms_widgetPages; | |
155 | }; | |
156 | ||
157 | // ---------------------------------------------------------------------------- | |
158 | // dynamic WidgetsPage creation helpers | |
159 | // ---------------------------------------------------------------------------- | |
160 | ||
2b5f62a0 | 161 | class WidgetsPageInfo |
32b8ec41 VZ |
162 | { |
163 | public: | |
f2fdc4d5 | 164 | typedef WidgetsPage *(*Constructor)(WidgetsBookCtrl *book, |
32b8ec41 VZ |
165 | wxImageList *imaglist); |
166 | ||
167 | // our ctor | |
f2fdc4d5 | 168 | WidgetsPageInfo(Constructor ctor, const wxChar *label, int categories); |
32b8ec41 VZ |
169 | |
170 | // accessors | |
171 | const wxString& GetLabel() const { return m_label; } | |
f2fdc4d5 | 172 | int GetCategories() const { return m_categories; } |
32b8ec41 VZ |
173 | Constructor GetCtor() const { return m_ctor; } |
174 | WidgetsPageInfo *GetNext() const { return m_next; } | |
175 | ||
2673bcb0 DS |
176 | void SetNext(WidgetsPageInfo *next) { m_next = next; } |
177 | ||
32b8ec41 VZ |
178 | private: |
179 | // the label of the page | |
180 | wxString m_label; | |
181 | ||
f2fdc4d5 WS |
182 | // the list (flags) for sharing page between categories |
183 | int m_categories; | |
184 | ||
32b8ec41 VZ |
185 | // the function to create this page |
186 | Constructor m_ctor; | |
187 | ||
188 | // next node in the linked list or NULL | |
189 | WidgetsPageInfo *m_next; | |
190 | }; | |
191 | ||
192 | // to declare a page, this macro must be used in the class declaration | |
193 | #define DECLARE_WIDGETS_PAGE(classname) \ | |
194 | private: \ | |
195 | static WidgetsPageInfo ms_info##classname; \ | |
196 | public: \ | |
197 | const WidgetsPageInfo *GetPageInfo() const \ | |
198 | { return &ms_info##classname; } | |
199 | ||
200 | // and this one must be inserted somewhere in the source file | |
f2fdc4d5 WS |
201 | #define IMPLEMENT_WIDGETS_PAGE(classname, label, categories) \ |
202 | WidgetsPage *wxCtorFor##classname(WidgetsBookCtrl *book, \ | |
32b8ec41 | 203 | wxImageList *imaglist) \ |
61c083e7 | 204 | { return new classname(book, imaglist); } \ |
32b8ec41 | 205 | WidgetsPageInfo classname:: \ |
f2fdc4d5 | 206 | ms_info##classname(wxCtorFor##classname, label, ALL_CTRLS | categories) |
32b8ec41 VZ |
207 | |
208 | #endif // _WX_SAMPLE_WIDGETS_H_ |