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 class WXDLLEXPORT wxCheckBox
;
16 class WXDLLEXPORT wxBookCtrlBase
;
17 class WXDLLEXPORT wxSizer
;
18 class WXDLLEXPORT wxTextCtrl
;
20 class WidgetsPageInfo
;
24 // all source files use wxImageList
25 #include "wx/imaglist.h"
27 #if wxUSE_LOG && !defined(__SMARTPHONE__)
33 // ----------------------------------------------------------------------------
34 // WidgetsPage: a book page demonstrating some widget
35 // ----------------------------------------------------------------------------
37 class WidgetsPage
: public wxPanel
40 WidgetsPage(wxBookCtrlBase
*book
);
42 // return the control shown by this page
43 virtual wxControl
*GetWidget() const = 0;
45 // some pages show 2 controls, in this case override this one as well
46 virtual wxControl
*GetWidget2() const { return NULL
; }
48 // recreate the control shown by this page
50 // this is currently used only to take into account the border flags
51 virtual void RecreateWidget() = 0;
53 // the default flags for the widget, currently only contains border flags
54 static int ms_defaultFlags
;
57 // several helper functions for page creation
59 // create a horz sizer containing the given control and the text ctrl
60 // (pointer to which will be saved in the provided variable if not NULL)
61 // with the specified id
62 wxSizer
*CreateSizerWithText(wxControl
*control
,
63 wxWindowID id
= wxID_ANY
,
64 wxTextCtrl
**ppText
= NULL
);
66 // create a sizer containing a label and a text ctrl
67 wxSizer
*CreateSizerWithTextAndLabel(const wxString
& label
,
68 wxWindowID id
= wxID_ANY
,
69 wxTextCtrl
**ppText
= NULL
);
71 // create a sizer containing a button and a text ctrl
72 wxSizer
*CreateSizerWithTextAndButton(wxWindowID idBtn
,
73 const wxString
& labelBtn
,
74 wxWindowID id
= wxID_ANY
,
75 wxTextCtrl
**ppText
= NULL
);
77 // create a checkbox and add it to the sizer
78 wxCheckBox
*CreateCheckBoxAndAddToSizer(wxSizer
*sizer
,
79 const wxString
& label
,
80 wxWindowID id
= wxID_ANY
);
83 // the head of the linked list containinginfo about all pages
84 static WidgetsPageInfo
*ms_widgetPages
;
87 // ----------------------------------------------------------------------------
88 // dynamic WidgetsPage creation helpers
89 // ----------------------------------------------------------------------------
94 typedef WidgetsPage
*(*Constructor
)(wxBookCtrlBase
*book
,
95 wxImageList
*imaglist
);
98 WidgetsPageInfo(Constructor ctor
, const wxChar
*label
);
101 const wxString
& GetLabel() const { return m_label
; }
102 Constructor
GetCtor() const { return m_ctor
; }
103 WidgetsPageInfo
*GetNext() const { return m_next
; }
105 void SetNext(WidgetsPageInfo
*next
) { m_next
= next
; }
108 // the label of the page
111 // the function to create this page
114 // next node in the linked list or NULL
115 WidgetsPageInfo
*m_next
;
118 // to declare a page, this macro must be used in the class declaration
119 #define DECLARE_WIDGETS_PAGE(classname) \
121 static WidgetsPageInfo ms_info##classname; \
123 const WidgetsPageInfo *GetPageInfo() const \
124 { return &ms_info##classname; }
126 // and this one must be inserted somewhere in the source file
127 #define IMPLEMENT_WIDGETS_PAGE(classname, label) \
128 WidgetsPage *wxCtorFor##classname(wxBookCtrlBase *book, \
129 wxImageList *imaglist) \
130 { return new classname(book, imaglist); } \
131 WidgetsPageInfo classname:: \
132 ms_info##classname(wxCtorFor##classname, label)
134 #endif // _WX_SAMPLE_WIDGETS_H_