]>
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 | ||
15 | class WXDLLEXPORT wxCheckBox; | |
61c083e7 | 16 | class WXDLLEXPORT wxBookCtrl; |
32b8ec41 VZ |
17 | class WXDLLEXPORT wxSizer; |
18 | class WXDLLEXPORT wxTextCtrl; | |
19 | ||
2b5f62a0 | 20 | class WidgetsPageInfo; |
32b8ec41 | 21 | |
0b90b51c GD |
22 | #include "wx/panel.h" |
23 | ||
32b8ec41 VZ |
24 | // all source files use wxImageList |
25 | #include "wx/imaglist.h" | |
26 | ||
49abcb2f WS |
27 | #if wxUSE_LOG && !defined(__SMARTPHONE__) |
28 | #define USE_LOG 1 | |
29 | #else | |
30 | #define USE_LOG 0 | |
31 | #endif | |
32 | ||
32b8ec41 | 33 | // ---------------------------------------------------------------------------- |
61c083e7 | 34 | // WidgetsPage: a book page demonstrating some widget |
32b8ec41 VZ |
35 | // ---------------------------------------------------------------------------- |
36 | ||
37 | class WidgetsPage : public wxPanel | |
38 | { | |
39 | public: | |
61c083e7 | 40 | WidgetsPage(wxBookCtrl *book); |
32b8ec41 | 41 | |
195df7a7 VZ |
42 | // return the control shown by this page |
43 | virtual wxControl *GetWidget() const = 0; | |
44 | ||
32b8ec41 VZ |
45 | protected: |
46 | // several helper functions for page creation | |
47 | ||
48 | // create a horz sizer containing the given control and the text ctrl | |
49 | // (pointer to which will be saved in the provided variable if not NULL) | |
50 | // with the specified id | |
51 | wxSizer *CreateSizerWithText(wxControl *control, | |
206d3a16 | 52 | wxWindowID id = wxID_ANY, |
32b8ec41 VZ |
53 | wxTextCtrl **ppText = NULL); |
54 | ||
55 | // create a sizer containing a label and a text ctrl | |
56 | wxSizer *CreateSizerWithTextAndLabel(const wxString& label, | |
206d3a16 | 57 | wxWindowID id = wxID_ANY, |
32b8ec41 VZ |
58 | wxTextCtrl **ppText = NULL); |
59 | ||
60 | // create a sizer containing a button and a text ctrl | |
61 | wxSizer *CreateSizerWithTextAndButton(wxWindowID idBtn, | |
62 | const wxString& labelBtn, | |
206d3a16 | 63 | wxWindowID id = wxID_ANY, |
32b8ec41 VZ |
64 | wxTextCtrl **ppText = NULL); |
65 | ||
66 | // create a checkbox and add it to the sizer | |
67 | wxCheckBox *CreateCheckBoxAndAddToSizer(wxSizer *sizer, | |
68 | const wxString& label, | |
206d3a16 | 69 | wxWindowID id = wxID_ANY); |
32b8ec41 VZ |
70 | |
71 | public: | |
72 | // the head of the linked list containinginfo about all pages | |
73 | static WidgetsPageInfo *ms_widgetPages; | |
74 | }; | |
75 | ||
76 | // ---------------------------------------------------------------------------- | |
77 | // dynamic WidgetsPage creation helpers | |
78 | // ---------------------------------------------------------------------------- | |
79 | ||
2b5f62a0 | 80 | class WidgetsPageInfo |
32b8ec41 VZ |
81 | { |
82 | public: | |
61c083e7 | 83 | typedef WidgetsPage *(*Constructor)(wxBookCtrl *book, |
32b8ec41 VZ |
84 | wxImageList *imaglist); |
85 | ||
86 | // our ctor | |
87 | WidgetsPageInfo(Constructor ctor, const wxChar *label); | |
88 | ||
89 | // accessors | |
90 | const wxString& GetLabel() const { return m_label; } | |
91 | Constructor GetCtor() const { return m_ctor; } | |
92 | WidgetsPageInfo *GetNext() const { return m_next; } | |
93 | ||
2673bcb0 DS |
94 | void SetNext(WidgetsPageInfo *next) { m_next = next; } |
95 | ||
32b8ec41 VZ |
96 | private: |
97 | // the label of the page | |
98 | wxString m_label; | |
99 | ||
100 | // the function to create this page | |
101 | Constructor m_ctor; | |
102 | ||
103 | // next node in the linked list or NULL | |
104 | WidgetsPageInfo *m_next; | |
105 | }; | |
106 | ||
107 | // to declare a page, this macro must be used in the class declaration | |
108 | #define DECLARE_WIDGETS_PAGE(classname) \ | |
109 | private: \ | |
110 | static WidgetsPageInfo ms_info##classname; \ | |
111 | public: \ | |
112 | const WidgetsPageInfo *GetPageInfo() const \ | |
113 | { return &ms_info##classname; } | |
114 | ||
115 | // and this one must be inserted somewhere in the source file | |
116 | #define IMPLEMENT_WIDGETS_PAGE(classname, label) \ | |
61c083e7 | 117 | WidgetsPage *wxCtorFor##classname(wxBookCtrl *book, \ |
32b8ec41 | 118 | wxImageList *imaglist) \ |
61c083e7 | 119 | { return new classname(book, imaglist); } \ |
32b8ec41 VZ |
120 | WidgetsPageInfo classname:: \ |
121 | ms_info##classname(wxCtorFor##classname, label) | |
122 | ||
123 | #endif // _WX_SAMPLE_WIDGETS_H_ |