1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Sample showing most of the simple wxWidgets 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
32 #include "wx/button.h"
33 #include "wx/checkbox.h"
34 #include "wx/listbox.h"
35 #include "wx/statbox.h"
36 #include "wx/stattext.h"
37 #include "wx/textctrl.h"
40 #include "wx/notebook.h"
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
52 Widgets_ClearLog
= 100,
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 // Define a new application type, each program should derive a class from wxApp
61 class WidgetsApp
: public wxApp
64 // override base class virtuals
65 // ----------------------------
67 // this one is called on application startup and is a good place for the app
68 // initialization (doing it here and not in the ctor allows to have an error
69 // return: if OnInit() returns false, the application terminates)
70 virtual bool OnInit();
73 // Define a new frame type: this is going to be our main frame
74 class WidgetsFrame
: public wxFrame
78 WidgetsFrame(const wxString
& title
);
79 virtual ~WidgetsFrame();
83 void OnButtonClearLog(wxCommandEvent
& event
);
84 void OnButtonQuit(wxCommandEvent
& event
);
86 // initialize the notebook: add all pages to it
90 // the panel containing everything
93 // the listbox for logging messages
96 // the log target we use to redirect messages to the listbox
99 // the notebook containing the test pages
100 wxNotebook
*m_notebook
;
102 // and the image list for it
103 wxImageList
*m_imaglist
;
105 // any class wishing to process wxWidgets events must use this macro
106 DECLARE_EVENT_TABLE()
109 // A log target which just redirects the messages to a listbox
110 class LboxLogger
: public wxLog
113 LboxLogger(wxListBox
*lbox
, wxLog
*logOld
)
116 //m_lbox->Disable(); -- looks ugly under MSW
120 virtual ~LboxLogger()
122 wxLog::SetActiveTarget(m_logOld
);
126 // implement sink functions
127 virtual void DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
)
129 // don't put trace messages into listbox or we can get into infinite
131 if ( level
== wxLOG_Trace
)
135 // cast is needed to call protected method
136 ((LboxLogger
*)m_logOld
)->DoLog(level
, szString
, t
);
141 wxLog::DoLog(level
, szString
, t
);
145 virtual void DoLogString(const wxChar
*szString
, time_t WXUNUSED(t
))
151 #ifdef __WXUNIVERSAL__
152 m_lbox
->AppendAndEnsureVisible(msg
);
153 #else // other ports don't have this method yet
155 m_lbox
->SetFirstItem(m_lbox
->GetCount() - 1);
159 // the control we use
162 // the old log target
167 WX_DEFINE_ARRAY_PTR(WidgetsPage
*, ArrayWidgetsPage
);
169 // ----------------------------------------------------------------------------
171 // ----------------------------------------------------------------------------
173 IMPLEMENT_APP(WidgetsApp
)
175 // ----------------------------------------------------------------------------
177 // ----------------------------------------------------------------------------
179 BEGIN_EVENT_TABLE(WidgetsFrame
, wxFrame
)
180 EVT_BUTTON(Widgets_ClearLog
, WidgetsFrame::OnButtonClearLog
)
181 EVT_BUTTON(Widgets_Quit
, WidgetsFrame::OnButtonQuit
)
184 // ============================================================================
186 // ============================================================================
188 // ----------------------------------------------------------------------------
190 // ----------------------------------------------------------------------------
192 bool WidgetsApp::OnInit()
194 if ( !wxApp::OnInit() )
197 // the reason for having these ifdef's is that I often run two copies of
198 // this sample side by side and it is useful to see which one is which
200 #if defined(__WXUNIVERSAL__)
201 title
= _T("wxUniv/");
204 #if defined(__WXMSW__)
205 title
+= _T("wxMSW");
206 #elif defined(__WXGTK__)
207 title
+= _T("wxGTK");
208 #elif defined(__WXMAC__)
209 title
+= _T("wxMAC");
210 #elif defined(__WXMOTIF__)
211 title
+= _T("wxMOTIF");
213 title
+= _T("wxWidgets");
216 wxFrame
*frame
= new WidgetsFrame(title
+ _T(" widgets demo"));
219 //wxLog::AddTraceMask(_T("listbox"));
220 //wxLog::AddTraceMask(_T("scrollbar"));
221 //wxLog::AddTraceMask(_T("focus"));
226 // ----------------------------------------------------------------------------
227 // WidgetsFrame construction
228 // ----------------------------------------------------------------------------
230 WidgetsFrame::WidgetsFrame(const wxString
& title
)
231 : wxFrame(NULL
, wxID_ANY
, title
,
232 wxPoint(0, 50), wxDefaultSize
,
233 wxDEFAULT_FRAME_STYLE
|
234 wxNO_FULL_REPAINT_ON_RESIZE
|
239 m_lboxLog
= (wxListBox
*)NULL
;
240 m_logTarget
= (wxLog
*)NULL
;
241 m_notebook
= (wxNotebook
*)NULL
;
242 m_imaglist
= (wxImageList
*)NULL
;
245 m_panel
= new wxPanel(this, wxID_ANY
,
246 wxDefaultPosition
, wxDefaultSize
, wxCLIP_CHILDREN
);
248 wxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
250 // we have 2 panes: notebook which pages demonstrating the controls in the
251 // upper one and the log window with some buttons in the lower
253 m_notebook
= new wxNotebook(m_panel
, wxID_ANY
, wxDefaultPosition
,
254 wxDefaultSize
, wxNO_FULL_REPAINT_ON_RESIZE
|wxCLIP_CHILDREN
);
257 // the lower one only has the log listbox and a button to clear it
258 wxSizer
*sizerDown
= new wxStaticBoxSizer(
259 new wxStaticBox( m_panel
, wxID_ANY
, _T("&Log window") ),
262 m_lboxLog
= new wxListBox(m_panel
, wxID_ANY
);
263 sizerDown
->Add(m_lboxLog
, 1, wxGROW
| wxALL
, 5);
264 sizerDown
->SetMinSize(100, 150);
266 wxBoxSizer
*sizerBtns
= new wxBoxSizer(wxHORIZONTAL
);
267 wxButton
*btn
= new wxButton(m_panel
, Widgets_ClearLog
, _T("Clear &log"));
269 sizerBtns
->Add(10, 0); // spacer
270 btn
= new wxButton(m_panel
, Widgets_Quit
, _T("E&xit"));
272 sizerDown
->Add(sizerBtns
, 0, wxALL
| wxALIGN_RIGHT
, 5);
274 // put everything together
275 sizerTop
->Add(m_notebook
, 1, wxGROW
| (wxALL
& ~(wxTOP
| wxBOTTOM
)), 10);
276 sizerTop
->Add(0, 5, 0, wxGROW
); // spacer in between
277 sizerTop
->Add(sizerDown
, 0, wxGROW
| (wxALL
& ~wxTOP
), 10);
279 m_panel
->SetSizer(sizerTop
);
282 sizerTop
->SetSizeHints(this);
284 // wxCocoa's listbox is too flakey to use for logging right now
285 #if !defined(__WXCOCOA__)
286 // now that everything is created we can redirect the log messages to the
288 m_logTarget
= new LboxLogger(m_lboxLog
, wxLog::GetActiveTarget());
289 wxLog::SetActiveTarget(m_logTarget
);
293 void WidgetsFrame::InitNotebook()
295 m_imaglist
= new wxImageList(32, 32);
297 ArrayWidgetsPage pages
;
298 wxArrayString labels
;
300 // we need to first create all pages and only then add them to the notebook
301 // as we need the image list first
302 WidgetsPageInfo
*info
= WidgetsPage::ms_widgetPages
;
305 WidgetsPage
*page
= (*info
->GetCtor())(m_notebook
, m_imaglist
);
308 labels
.Add(info
->GetLabel());
310 info
= info
->GetNext();
313 m_notebook
->SetImageList(m_imaglist
);
316 size_t count
= pages
.GetCount();
317 for ( size_t n
= 0; n
< count
; n
++ )
322 false, // don't select
328 WidgetsFrame::~WidgetsFrame()
334 // ----------------------------------------------------------------------------
335 // WidgetsFrame event handlers
336 // ----------------------------------------------------------------------------
338 void WidgetsFrame::OnButtonQuit(wxCommandEvent
& WXUNUSED(event
))
343 void WidgetsFrame::OnButtonClearLog(wxCommandEvent
& WXUNUSED(event
))
348 // ----------------------------------------------------------------------------
350 // ----------------------------------------------------------------------------
352 WidgetsPageInfo
*WidgetsPage::ms_widgetPages
= NULL
;
354 WidgetsPageInfo::WidgetsPageInfo(Constructor ctor
, const wxChar
*label
)
361 // dummy sorting: add and immediately sort on list according to label
363 if(WidgetsPage::ms_widgetPages
)
365 WidgetsPageInfo
*node_prev
= WidgetsPage::ms_widgetPages
;
366 if(wxStrcmp(label
,node_prev
->GetLabel().c_str())<0)
370 WidgetsPage::ms_widgetPages
= this;
374 WidgetsPageInfo
*node_next
;
377 node_next
= node_prev
->GetNext();
380 // add if between two
381 if(wxStrcmp(label
,node_next
->GetLabel().c_str())<0)
383 node_prev
->SetNext(this);
385 // force to break loop
392 node_prev
->SetNext(this);
395 node_prev
= node_next
;
403 WidgetsPage::ms_widgetPages
= this;
409 // ----------------------------------------------------------------------------
411 // ----------------------------------------------------------------------------
413 WidgetsPage::WidgetsPage(wxNotebook
*notebook
)
414 : wxPanel(notebook
, wxID_ANY
,
415 wxDefaultPosition
, wxDefaultSize
,
416 wxNO_FULL_REPAINT_ON_RESIZE
|
422 wxSizer
*WidgetsPage::CreateSizerWithText(wxControl
*control
,
426 wxSizer
*sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
427 wxTextCtrl
*text
= new wxTextCtrl(this, id
, wxEmptyString
,
428 wxDefaultPosition
, wxDefaultSize
, wxTE_PROCESS_ENTER
);
430 sizerRow
->Add(control
, 0, wxRIGHT
| wxALIGN_CENTRE_VERTICAL
, 5);
431 sizerRow
->Add(text
, 1, wxLEFT
| wxALIGN_CENTRE_VERTICAL
, 5);
439 // create a sizer containing a label and a text ctrl
440 wxSizer
*WidgetsPage::CreateSizerWithTextAndLabel(const wxString
& label
,
444 return CreateSizerWithText(new wxStaticText(this, wxID_ANY
, label
),
448 // create a sizer containing a button and a text ctrl
449 wxSizer
*WidgetsPage::CreateSizerWithTextAndButton(wxWindowID idBtn
,
450 const wxString
& label
,
454 return CreateSizerWithText(new wxButton(this, idBtn
, label
), id
, ppText
);
457 wxCheckBox
*WidgetsPage::CreateCheckBoxAndAddToSizer(wxSizer
*sizer
,
458 const wxString
& label
,
461 wxCheckBox
*checkbox
= new wxCheckBox(this, id
, label
);
462 sizer
->Add(checkbox
, 0, wxLEFT
| wxRIGHT
, 5);
463 sizer
->Add(0, 2, 0, wxGROW
); // spacer