1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Common stuff for all widgets project files
5 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_SAMPLE_WIDGETS_H_
13 #define _WX_SAMPLE_WIDGETS_H_
15 #if wxUSE_TREEBOOK && !defined(__WXHANDHELD__)
16 #include "wx/treebook.h"
17 #define USE_TREEBOOK 1
18 #define WidgetsBookCtrl wxTreebook
19 #define WidgetsBookCtrlEvent wxTreebookEvent
20 #define EVT_WIDGETS_PAGE_CHANGED(id,func) EVT_TREEBOOK_PAGE_CHANGED(id,func)
21 #define WidgetBookStyle (wxBK_DEFAULT)
23 #include "wx/bookctrl.h"
24 #define USE_TREEBOOK 0
25 #define WidgetsBookCtrl wxBookCtrl
26 #define WidgetsBookCtrlEvent wxBookCtrlEvent
27 #define EVT_WIDGETS_PAGE_CHANGED(id,func) EVT_BOOKCTRL_PAGE_CHANGED(id,func)
29 #define WidgetBookStyle (wxBK_BOTTOM|wxNB_FLAT)
31 #define WidgetBookStyle (wxBK_DEFAULT)
35 #if wxUSE_LOG && !defined(__WXHANDHELD__)
41 #if defined(__WXHANDHELD__)
42 #define USE_ICONS_IN_BOOK 0
44 #define USE_ICONS_IN_BOOK 1
47 class WXDLLEXPORT wxCheckBox
;
48 class WXDLLEXPORT wxSizer
;
49 class WXDLLEXPORT wxImageList
;
50 class WXDLLEXPORT wxTextCtrl
;
51 class WXDLLEXPORT WidgetsBookCtrl
;
53 class WidgetsPageInfo
;
57 // INTRODUCING NEW PAGES DON'T FORGET TO ADD ENTRIES TO 'WidgetsCategories'
60 // On wxUniversal-based build (wxX11, wxMGL, wxMSWUniv, wxGTKUniv, etc.)
61 // 'native' means 'made with wxUniv port renderer'
63 UNIVERSAL_PAGE
= NATIVE_PAGE
,
76 NATIVE_CTRLS
= 1 << NATIVE_PAGE
,
77 UNIVERSAL_CTRLS
= NATIVE_CTRLS
,
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
87 // ----------------------------------------------------------------------------
88 // WidgetsPage: a book page demonstrating some widget
89 // ----------------------------------------------------------------------------
91 class WidgetsPage
: public wxPanel
94 WidgetsPage(WidgetsBookCtrl
*book
,
95 wxImageList
*imaglist
,
98 // return the control shown by this page
99 virtual wxControl
*GetWidget() const = 0;
101 // some pages show 2 controls, in this case override this one as well
102 virtual wxControl
*GetWidget2() const { return NULL
; }
104 // recreate the control shown by this page
106 // this is currently used only to take into account the border flags
107 virtual void RecreateWidget() = 0;
109 // the default flags for the widget, currently only contains border flags
110 static int ms_defaultFlags
;
113 // several helper functions for page creation
115 // create a horz sizer containing the given control and the text ctrl
116 // (pointer to which will be saved in the provided variable if not NULL)
117 // with the specified id
118 wxSizer
*CreateSizerWithText(wxControl
*control
,
119 wxWindowID id
= wxID_ANY
,
120 wxTextCtrl
**ppText
= NULL
);
122 // create a sizer containing a label and a text ctrl
123 wxSizer
*CreateSizerWithTextAndLabel(const wxString
& label
,
124 wxWindowID id
= wxID_ANY
,
125 wxTextCtrl
**ppText
= NULL
);
127 // create a sizer containing a button and a text ctrl
128 wxSizer
*CreateSizerWithTextAndButton(wxWindowID idBtn
,
129 const wxString
& labelBtn
,
130 wxWindowID id
= wxID_ANY
,
131 wxTextCtrl
**ppText
= NULL
);
133 // create a checkbox and add it to the sizer
134 wxCheckBox
*CreateCheckBoxAndAddToSizer(wxSizer
*sizer
,
135 const wxString
& label
,
136 wxWindowID id
= wxID_ANY
);
139 // the head of the linked list containinginfo about all pages
140 static WidgetsPageInfo
*ms_widgetPages
;
143 // ----------------------------------------------------------------------------
144 // dynamic WidgetsPage creation helpers
145 // ----------------------------------------------------------------------------
147 class WidgetsPageInfo
150 typedef WidgetsPage
*(*Constructor
)(WidgetsBookCtrl
*book
,
151 wxImageList
*imaglist
);
154 WidgetsPageInfo(Constructor ctor
, const wxChar
*label
, int categories
);
157 const wxString
& GetLabel() const { return m_label
; }
158 int GetCategories() const { return m_categories
; }
159 Constructor
GetCtor() const { return m_ctor
; }
160 WidgetsPageInfo
*GetNext() const { return m_next
; }
162 void SetNext(WidgetsPageInfo
*next
) { m_next
= next
; }
165 // the label of the page
168 // the list (flags) for sharing page between categories
171 // the function to create this page
174 // next node in the linked list or NULL
175 WidgetsPageInfo
*m_next
;
178 // to declare a page, this macro must be used in the class declaration
179 #define DECLARE_WIDGETS_PAGE(classname) \
181 static WidgetsPageInfo ms_info##classname; \
183 const WidgetsPageInfo *GetPageInfo() const \
184 { return &ms_info##classname; }
186 // and this one must be inserted somewhere in the source file
187 #define IMPLEMENT_WIDGETS_PAGE(classname, label, categories) \
188 WidgetsPage *wxCtorFor##classname(WidgetsBookCtrl *book, \
189 wxImageList *imaglist) \
190 { return new classname(book, imaglist); } \
191 WidgetsPageInfo classname:: \
192 ms_info##classname(wxCtorFor##classname, label, ALL_CTRLS | categories)
194 #endif // _WX_SAMPLE_WIDGETS_H_