]>
git.saurik.com Git - wxWidgets.git/blob - samples/widgets/widgets.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWindows Widgets Sample
4 // Purpose: Sample showing most of the simple wxWindows widgets
5 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // License: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers
33 #include "wx/button.h"
34 #include "wx/checkbox.h"
35 #include "wx/listbox.h"
36 #include "wx/statbox.h"
37 #include "wx/stattext.h"
38 #include "wx/textctrl.h"
41 #include "wx/notebook.h"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
53 Widgets_ClearLog
= 100,
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 // Define a new application type, each program should derive a class from wxApp
62 class WidgetsApp
: public wxApp
65 // override base class virtuals
66 // ----------------------------
68 // this one is called on application startup and is a good place for the app
69 // initialization (doing it here and not in the ctor allows to have an error
70 // return: if OnInit() returns false, the application terminates)
71 virtual bool OnInit();
74 // Define a new frame type: this is going to be our main frame
75 class WidgetsFrame
: public wxFrame
79 WidgetsFrame(const wxString
& title
);
80 virtual ~WidgetsFrame();
84 void OnButtonClearLog(wxCommandEvent
& event
);
85 void OnButtonQuit(wxCommandEvent
& event
);
87 // initialize the notebook: add all pages to it
91 // the panel containing everything
94 // the listbox for logging messages
97 // the log target we use to redirect messages to the listbox
100 // the notebook containing the test pages
101 wxNotebook
*m_notebook
;
103 // and the image list for it
104 wxImageList
*m_imaglist
;
106 // any class wishing to process wxWindows events must use this macro
107 DECLARE_EVENT_TABLE()
110 // A log target which just redirects the messages to a listbox
111 class LboxLogger
: public wxLog
114 LboxLogger(wxListBox
*lbox
, wxLog
*logOld
)
117 //m_lbox->Disable(); -- looks ugly under MSW
121 virtual ~LboxLogger()
123 wxLog::SetActiveTarget(m_logOld
);
127 // implement sink functions
128 virtual void DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
)
130 // don't put trace messages into listbox or we can get into infinite
132 if ( level
== wxLOG_Trace
)
136 // cast is needed to call protected method
137 ((LboxLogger
*)m_logOld
)->DoLog(level
, szString
, t
);
142 wxLog::DoLog(level
, szString
, t
);
146 virtual void DoLogString(const wxChar
*szString
, time_t t
)
152 #ifdef __WXUNIVERSAL__
153 m_lbox
->AppendAndEnsureVisible(msg
);
154 #else // other ports don't have this method yet
156 m_lbox
->SetFirstItem(m_lbox
->GetCount() - 1);
160 // the control we use
163 // the old log target
168 WX_DEFINE_ARRAY(WidgetsPage
*, ArrayWidgetsPage
);
170 // ----------------------------------------------------------------------------
172 // ----------------------------------------------------------------------------
174 IMPLEMENT_APP(WidgetsApp
)
176 #ifdef __WXUNIVERSAL__
177 #include "wx/univ/theme.h"
181 #endif // __WXUNIVERSAL__
183 // ----------------------------------------------------------------------------
185 // ----------------------------------------------------------------------------
187 BEGIN_EVENT_TABLE(WidgetsFrame
, wxFrame
)
188 EVT_BUTTON(Widgets_ClearLog
, WidgetsFrame::OnButtonClearLog
)
189 EVT_BUTTON(Widgets_Quit
, WidgetsFrame::OnButtonQuit
)
192 // ============================================================================
194 // ============================================================================
196 // ----------------------------------------------------------------------------
198 // ----------------------------------------------------------------------------
200 bool WidgetsApp::OnInit()
202 // the reason for having these ifdef's is that I often run two copies of
203 // this sample side by side and it is useful to see which one is which
205 #if defined(__WXUNIVERSAL__)
207 #elif defined(__WXMSW__)
209 #elif defined(__WXGTK__)
216 wxFrame
*frame
= new WidgetsFrame(title
+ _T(" widgets demo"));
219 //wxLog::AddTraceMask(_T("listbox"));
220 //wxLog::AddTraceMask(_T("scrollbar"));
225 // ----------------------------------------------------------------------------
226 // WidgetsFrame construction
227 // ----------------------------------------------------------------------------
229 WidgetsFrame::WidgetsFrame(const wxString
& title
)
230 : wxFrame(NULL
, -1, title
, wxPoint(0, 50))
233 m_lboxLog
= (wxListBox
*)NULL
;
234 m_logTarget
= (wxLog
*)NULL
;
235 m_notebook
= (wxNotebook
*)NULL
;
236 m_imaglist
= (wxImageList
*)NULL
;
239 m_panel
= new wxPanel(this, -1);
241 wxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
243 // we have 2 panes: notebook which pages demonstrating the controls in the
244 // upper one and the log window with some buttons in the lower
246 m_notebook
= new wxNotebook(m_panel
, -1);
248 wxSizer
*sizerUp
= new wxNotebookSizer(m_notebook
);
250 // the lower one only has the log listbox and a button to clear it
251 wxSizer
*sizerDown
= new wxStaticBoxSizer
253 new wxStaticBox(m_panel
, -1, _T("&Log window")),
256 m_lboxLog
= new wxListBox(m_panel
, -1);
257 sizerDown
->Add(m_lboxLog
, 1, wxGROW
| wxALL
, 5);
258 wxBoxSizer
*sizerBtns
= new wxBoxSizer(wxHORIZONTAL
);
259 wxButton
*btn
= new wxButton(m_panel
, Widgets_ClearLog
, _T("Clear &log"));
261 sizerBtns
->Add(10, 0); // spacer
262 btn
= new wxButton(m_panel
, Widgets_Quit
, _T("E&xit"));
264 sizerDown
->Add(sizerBtns
, 0, wxALL
| wxALIGN_RIGHT
, 5);
266 // put everything together
267 sizerTop
->Add(sizerUp
, 1, wxGROW
| (wxALL
& ~(wxTOP
| wxBOTTOM
)), 10);
268 sizerTop
->Add(0, 5, 0, wxGROW
); // spacer in between
269 sizerTop
->Add(sizerDown
, 0, wxGROW
| (wxALL
& ~wxTOP
), 10);
271 m_panel
->SetAutoLayout(TRUE
);
272 m_panel
->SetSizer(sizerTop
);
275 sizerTop
->SetSizeHints(this);
277 // now that everything is created we can redirect the log messages to the
279 m_logTarget
= new LboxLogger(m_lboxLog
, wxLog::GetActiveTarget());
280 wxLog::SetActiveTarget(m_logTarget
);
283 void WidgetsFrame::InitNotebook()
285 m_imaglist
= new wxImageList(32, 32);
287 ArrayWidgetsPage pages
;
288 wxArrayString labels
;
290 // we need to first create all pages and only then add them to the notebook
291 // as we need the image list first
292 WidgetsPageInfo
*info
= WidgetsPage::ms_widgetPages
;
295 WidgetsPage
*page
= (*info
->GetCtor())(m_notebook
, m_imaglist
);
298 labels
.Add(info
->GetLabel());
300 info
= info
->GetNext();
303 m_notebook
->SetImageList(m_imaglist
);
306 size_t count
= pages
.GetCount();
307 for ( size_t n
= 0; n
< count
; n
++ )
312 FALSE
, // don't select
318 WidgetsFrame::~WidgetsFrame()
324 // ----------------------------------------------------------------------------
325 // WidgetsFrame event handlers
326 // ----------------------------------------------------------------------------
328 void WidgetsFrame::OnButtonQuit(wxCommandEvent
& WXUNUSED(event
))
333 void WidgetsFrame::OnButtonClearLog(wxCommandEvent
& event
)
338 // ----------------------------------------------------------------------------
340 // ----------------------------------------------------------------------------
342 WidgetsPageInfo
*WidgetsPage::ms_widgetPages
= NULL
;
344 WidgetsPageInfo::WidgetsPageInfo(Constructor ctor
, const wxChar
*label
)
349 m_next
= WidgetsPage::ms_widgetPages
;
350 WidgetsPage::ms_widgetPages
= this;
353 // ----------------------------------------------------------------------------
355 // ----------------------------------------------------------------------------
357 WidgetsPage::WidgetsPage(wxNotebook
*notebook
)
358 : wxPanel(notebook
, -1)
362 wxSizer
*WidgetsPage::CreateSizerWithText(wxControl
*control
,
366 wxSizer
*sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
367 wxTextCtrl
*text
= new wxTextCtrl(this, id
, _T(""));
368 sizerRow
->Add(control
, 0, wxRIGHT
| wxALIGN_CENTRE_VERTICAL
, 5);
369 sizerRow
->Add(text
, 1, wxLEFT
| wxALIGN_CENTRE_VERTICAL
, 5);
377 // create a sizer containing a label and a text ctrl
378 wxSizer
*WidgetsPage::CreateSizerWithTextAndLabel(const wxString
& label
,
382 return CreateSizerWithText(new wxStaticText(this, -1, label
), id
, ppText
);
385 // create a sizer containing a button and a text ctrl
386 wxSizer
*WidgetsPage::CreateSizerWithTextAndButton(wxWindowID idBtn
,
387 const wxString
& label
,
391 return CreateSizerWithText(new wxButton(this, idBtn
, label
), id
, ppText
);
394 wxCheckBox
*WidgetsPage::CreateCheckBoxAndAddToSizer(wxSizer
*sizer
,
395 const wxString
& label
,
398 wxCheckBox
*checkbox
= new wxCheckBox(this, id
, label
);
399 sizer
->Add(checkbox
, 0, wxLEFT
| wxRIGHT
, 5);
400 sizer
->Add(0, 2, 0, wxGROW
); // spacer