1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
3 // Name: samples/widgets/widgets.cpp
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
34 #include "wx/button.h"
35 #include "wx/checkbox.h"
36 #include "wx/listbox.h"
37 #include "wx/statbox.h"
38 #include "wx/stattext.h"
39 #include "wx/textctrl.h"
40 #include "wx/msgdlg.h"
43 #include "wx/sysopt.h"
44 #include "wx/bookctrl.h"
45 #include "wx/treebook.h"
47 #include "wx/colordlg.h"
48 #include "wx/fontdlg.h"
49 #include "wx/textdlg.h"
50 #include "wx/imaglist.h"
51 #include "wx/wupdlock.h"
55 #include "../sample.xpm"
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
64 Widgets_ClearLog
= 100,
71 #endif // wxUSE_TOOLTIPS
83 Widgets_BorderDefault
,
85 Widgets_GlobalBusyCursor
,
89 Widgets_GoToPageLast
= Widgets_GoToPage
+ 100
92 const wxChar
*WidgetsCategories
[MAX_PAGES
] = {
93 #if defined(__WXUNIVERSAL__)
107 // ----------------------------------------------------------------------------
109 // ----------------------------------------------------------------------------
111 // Define a new application type, each program should derive a class from wxApp
112 class WidgetsApp
: public wxApp
115 // override base class virtuals
116 // ----------------------------
118 // this one is called on application startup and is a good place for the app
119 // initialization (doing it here and not in the ctor allows to have an error
120 // return: if OnInit() returns false, the application terminates)
121 virtual bool OnInit();
124 // Define a new frame type: this is going to be our main frame
125 class WidgetsFrame
: public wxFrame
129 WidgetsFrame(const wxString
& title
);
130 virtual ~WidgetsFrame();
135 void OnButtonClearLog(wxCommandEvent
& event
);
137 void OnExit(wxCommandEvent
& event
);
140 void OnPageChanging(WidgetsBookCtrlEvent
& event
);
141 void OnPageChanged(WidgetsBookCtrlEvent
& event
);
142 void OnGoToPage(wxCommandEvent
& event
);
145 void OnSetTooltip(wxCommandEvent
& event
);
146 #endif // wxUSE_TOOLTIPS
147 void OnSetFgCol(wxCommandEvent
& event
);
148 void OnSetBgCol(wxCommandEvent
& event
);
149 void OnSetFont(wxCommandEvent
& event
);
150 void OnEnable(wxCommandEvent
& event
);
151 void OnSetBorder(wxCommandEvent
& event
);
153 void OnToggleGlobalBusyCursor(wxCommandEvent
& event
);
154 void OnToggleBusyCursor(wxCommandEvent
& event
);
155 #endif // wxUSE_MENUS
157 // initialize the book: add all pages to it
160 // return the currently selected page (never NULL)
161 WidgetsPage
*CurrentPage();
164 // the panel containing everything
168 // the listbox for logging messages
169 wxListBox
*m_lboxLog
;
171 // the log target we use to redirect messages to the listbox
175 // the book containing the test pages
176 WidgetsBookCtrl
*m_book
;
179 // last chosen fg/bg colours and font
183 #endif // wxUSE_MENUS
185 // any class wishing to process wxWidgets events must use this macro
186 DECLARE_EVENT_TABLE()
190 // A log target which just redirects the messages to a listbox
191 class LboxLogger
: public wxLog
194 LboxLogger(wxListBox
*lbox
, wxLog
*logOld
)
197 //m_lbox->Disable(); -- looks ugly under MSW
201 virtual ~LboxLogger()
203 wxLog::SetActiveTarget(m_logOld
);
207 // implement sink functions
208 virtual void DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
)
210 // don't put trace messages into listbox or we can get into infinite
212 if ( level
== wxLOG_Trace
)
216 // cast is needed to call protected method
217 ((LboxLogger
*)m_logOld
)->DoLog(level
, szString
, t
);
222 wxLog::DoLog(level
, szString
, t
);
226 virtual void DoLogString(const wxChar
*szString
, time_t WXUNUSED(t
))
232 #ifdef __WXUNIVERSAL__
233 m_lbox
->AppendAndEnsureVisible(msg
);
234 #else // other ports don't have this method yet
236 m_lbox
->SetFirstItem(m_lbox
->GetCount() - 1);
240 // the control we use
243 // the old log target
249 WX_DEFINE_ARRAY_PTR(WidgetsPage
*, ArrayWidgetsPage
);
251 // ----------------------------------------------------------------------------
253 // ----------------------------------------------------------------------------
255 IMPLEMENT_APP(WidgetsApp
)
257 // ----------------------------------------------------------------------------
259 // ----------------------------------------------------------------------------
261 BEGIN_EVENT_TABLE(WidgetsFrame
, wxFrame
)
263 EVT_BUTTON(Widgets_ClearLog
, WidgetsFrame::OnButtonClearLog
)
265 EVT_BUTTON(Widgets_Quit
, WidgetsFrame::OnExit
)
268 EVT_MENU(Widgets_SetTooltip
, WidgetsFrame::OnSetTooltip
)
269 #endif // wxUSE_TOOLTIPS
272 EVT_WIDGETS_PAGE_CHANGING(wxID_ANY
, WidgetsFrame::OnPageChanging
)
273 EVT_WIDGETS_PAGE_CHANGED(wxID_ANY
, WidgetsFrame::OnPageChanged
)
274 EVT_MENU_RANGE(Widgets_GoToPage
, Widgets_GoToPageLast
,
275 WidgetsFrame::OnGoToPage
)
277 EVT_MENU(Widgets_SetFgColour
, WidgetsFrame::OnSetFgCol
)
278 EVT_MENU(Widgets_SetBgColour
, WidgetsFrame::OnSetBgCol
)
279 EVT_MENU(Widgets_SetFont
, WidgetsFrame::OnSetFont
)
280 EVT_MENU(Widgets_Enable
, WidgetsFrame::OnEnable
)
282 EVT_MENU_RANGE(Widgets_BorderNone
, Widgets_BorderDefault
,
283 WidgetsFrame::OnSetBorder
)
285 EVT_MENU(Widgets_GlobalBusyCursor
, WidgetsFrame::OnToggleGlobalBusyCursor
)
286 EVT_MENU(Widgets_BusyCursor
, WidgetsFrame::OnToggleBusyCursor
)
288 EVT_MENU(wxID_EXIT
, WidgetsFrame::OnExit
)
289 #endif // wxUSE_MENUS
292 // ============================================================================
294 // ============================================================================
296 // ----------------------------------------------------------------------------
298 // ----------------------------------------------------------------------------
300 bool WidgetsApp::OnInit()
302 if ( !wxApp::OnInit() )
305 // the reason for having these ifdef's is that I often run two copies of
306 // this sample side by side and it is useful to see which one is which
308 #if defined(__WXUNIVERSAL__)
309 title
= _T("wxUniv/");
312 #if defined(__WXMSW__)
313 title
+= _T("wxMSW");
314 #elif defined(__WXGTK__)
315 title
+= _T("wxGTK");
316 #elif defined(__WXMAC__)
317 title
+= _T("wxMAC");
318 #elif defined(__WXMOTIF__)
319 title
+= _T("wxMOTIF");
321 title
+= _T("wxWidgets");
324 wxFrame
*frame
= new WidgetsFrame(title
+ _T(" widgets demo"));
327 //wxLog::AddTraceMask(_T("listbox"));
328 //wxLog::AddTraceMask(_T("scrollbar"));
329 //wxLog::AddTraceMask(_T("focus"));
334 // ----------------------------------------------------------------------------
335 // WidgetsFrame construction
336 // ----------------------------------------------------------------------------
338 WidgetsFrame::WidgetsFrame(const wxString
& title
)
339 : wxFrame(NULL
, wxID_ANY
, title
)
341 // set the frame icon
342 SetIcon(wxICON(sample
));
346 m_lboxLog
= (wxListBox
*)NULL
;
347 m_logTarget
= (wxLog
*)NULL
;
349 m_book
= (WidgetsBookCtrl
*)NULL
;
352 // create the menubar
353 wxMenuBar
*mbar
= new wxMenuBar
;
354 wxMenu
*menuWidget
= new wxMenu
;
356 menuWidget
->Append(Widgets_SetTooltip
, _T("Set &tooltip...\tCtrl-T"));
357 menuWidget
->AppendSeparator();
358 #endif // wxUSE_TOOLTIPS
359 menuWidget
->Append(Widgets_SetFgColour
, _T("Set &foreground...\tCtrl-F"));
360 menuWidget
->Append(Widgets_SetBgColour
, _T("Set &background...\tCtrl-B"));
361 menuWidget
->Append(Widgets_SetFont
, _T("Set f&ont...\tCtrl-O"));
362 menuWidget
->AppendCheckItem(Widgets_Enable
, _T("&Enable/disable\tCtrl-E"));
364 wxMenu
*menuBorders
= new wxMenu
;
365 menuBorders
->AppendRadioItem(Widgets_BorderDefault
, _T("De&fault\tCtrl-Shift-9"));
366 menuBorders
->AppendRadioItem(Widgets_BorderNone
, _T("&None\tCtrl-Shift-0"));
367 menuBorders
->AppendRadioItem(Widgets_BorderSimple
, _T("&Simple\tCtrl-Shift-1"));
368 menuBorders
->AppendRadioItem(Widgets_BorderDouble
, _T("&Double\tCtrl-Shift-2"));
369 menuBorders
->AppendRadioItem(Widgets_BorderStatic
, _T("Stati&c\tCtrl-Shift-3"));
370 menuBorders
->AppendRadioItem(Widgets_BorderRaised
, _T("&Raised\tCtrl-Shift-4"));
371 menuBorders
->AppendRadioItem(Widgets_BorderSunken
, _T("S&unken\tCtrl-Shift-5"));
372 menuWidget
->AppendSubMenu(menuBorders
, _T("Set &border"));
374 menuWidget
->AppendSeparator();
375 menuWidget
->AppendCheckItem(Widgets_GlobalBusyCursor
,
376 _T("Toggle &global busy cursor\tCtrl-Shift-U"));
377 menuWidget
->AppendCheckItem(Widgets_BusyCursor
,
378 _T("Toggle b&usy cursor\tCtrl-U"));
380 menuWidget
->AppendSeparator();
381 menuWidget
->Append(wxID_EXIT
, _T("&Quit\tCtrl-Q"));
382 mbar
->Append(menuWidget
, _T("&Widget"));
385 mbar
->Check(Widgets_Enable
, true);
386 #endif // wxUSE_MENUS
389 m_panel
= new wxPanel(this, wxID_ANY
);
391 wxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
393 // we have 2 panes: book with pages demonstrating the controls in the
394 // upper one and the log window with some buttons in the lower
396 int style
= wxBK_DEFAULT
;
397 // Uncomment to suppress page theme (draw in solid colour)
398 //style |= wxNB_NOPAGETHEME;
400 m_book
= new WidgetsBookCtrl(m_panel
, Widgets_BookCtrl
, wxDefaultPosition
,
402 wxSize(500, wxDefaultCoord
), // under Motif, height is a function of the width...
409 #ifndef __WXHANDHELD__
410 // the lower one only has the log listbox and a button to clear it
412 wxSizer
*sizerDown
= new wxStaticBoxSizer(
413 new wxStaticBox( m_panel
, wxID_ANY
, _T("&Log window") ),
416 m_lboxLog
= new wxListBox(m_panel
, wxID_ANY
);
417 sizerDown
->Add(m_lboxLog
, 1, wxGROW
| wxALL
, 5);
418 sizerDown
->SetMinSize(100, 150);
420 wxSizer
*sizerDown
= new wxBoxSizer(wxVERTICAL
);
423 wxBoxSizer
*sizerBtns
= new wxBoxSizer(wxHORIZONTAL
);
426 btn
= new wxButton(m_panel
, Widgets_ClearLog
, _T("Clear &log"));
428 sizerBtns
->Add(10, 0); // spacer
430 btn
= new wxButton(m_panel
, Widgets_Quit
, _T("E&xit"));
432 sizerDown
->Add(sizerBtns
, 0, wxALL
| wxALIGN_RIGHT
, 5);
434 // put everything together
435 sizerTop
->Add(m_book
, 1, wxGROW
| (wxALL
& ~(wxTOP
| wxBOTTOM
)), 10);
436 sizerTop
->Add(0, 5, 0, wxGROW
); // spacer in between
437 sizerTop
->Add(sizerDown
, 0, wxGROW
| (wxALL
& ~wxTOP
), 10);
439 #else // !__WXHANDHELD__/__WXHANDHELD__
441 sizerTop
->Add(m_book
, 1, wxGROW
| wxALL
);
443 #endif // __WXHANDHELD__
445 m_panel
->SetSizer(sizerTop
);
448 sizerTop
->SetSizeHints(this);
450 #if USE_LOG && !defined(__WXCOCOA__)
451 // wxCocoa's listbox is too flakey to use for logging right now
452 // now that everything is created we can redirect the log messages to the
454 m_logTarget
= new LboxLogger(m_lboxLog
, wxLog::GetActiveTarget());
455 wxLog::SetActiveTarget(m_logTarget
);
459 void WidgetsFrame::InitBook()
461 #if USE_ICONS_IN_BOOK
462 wxImageList
*imageList
= new wxImageList(32, 32);
464 imageList
->Add(wxBitmap(sample_xpm
));
466 wxImageList
*imageList
= NULL
;
470 WidgetsBookCtrl
*books
[MAX_PAGES
];
473 ArrayWidgetsPage pages
[MAX_PAGES
];
474 wxArrayString labels
[MAX_PAGES
];
476 wxMenu
*menuPages
= new wxMenu
;
477 unsigned int nPage
= 0, nFKey
= 0;
478 int cat
, imageId
= 1;
480 // we need to first create all pages and only then add them to the book
481 // as we need the image list first
483 // we also construct the pages menu during this first iteration
484 for ( cat
= 0; cat
< MAX_PAGES
; cat
++ )
487 nPage
++; // increase for parent page
489 books
[cat
] = new WidgetsBookCtrl(m_book
,
496 for ( WidgetsPageInfo
*info
= WidgetsPage::ms_widgetPages
;
498 info
= info
->GetNext() )
500 if( (info
->GetCategories() & ( 1 << cat
)) == 0)
503 WidgetsPage
*page
= (*info
->GetCtor())(
510 pages
[cat
].Add(page
);
512 labels
[cat
].Add(info
->GetLabel());
513 if ( cat
== ALL_PAGE
)
515 wxString
radioLabel(info
->GetLabel());
519 radioLabel
<< wxT("\tF" ) << nFKey
;
522 menuPages
->AppendRadioItem(
523 Widgets_GoToPage
+ nPage
,
527 // consider only for book in book architecture
533 // consider only for treebook architecture (with subpages)
539 GetMenuBar()->Append(menuPages
, _T("&Page"));
541 #if USE_ICONS_IN_BOOK
542 m_book
->AssignImageList(imageList
);
545 for ( cat
= 0; cat
< MAX_PAGES
; cat
++ )
548 m_book
->AddPage(NULL
,WidgetsCategories
[cat
],false,0);
550 m_book
->AddPage(books
[cat
],WidgetsCategories
[cat
],false,0);
551 #if USE_ICONS_IN_BOOK
552 books
[cat
]->SetImageList(imageList
);
557 size_t count
= pages
[cat
].GetCount();
558 for ( size_t n
= 0; n
< count
; n
++ )
568 false, // don't select
575 // for treebook page #0 is empty parent page only so select the first page
576 // with some contents
577 m_book
->SetSelection(1);
579 // but ensure that the top of the tree is shown nevertheless
580 wxTreeCtrl
* const tree
= m_book
->GetTreeCtrl();
582 wxTreeItemIdValue cookie
;
583 tree
->EnsureVisible(tree
->GetFirstChild(tree
->GetRootItem(), cookie
));
584 #endif // USE_TREEBOOK
587 WidgetsPage
*WidgetsFrame::CurrentPage()
589 wxWindow
*page
= m_book
->GetCurrentPage();
592 WidgetsBookCtrl
*subBook
= wxStaticCast(page
, WidgetsBookCtrl
);
593 wxCHECK_MSG( subBook
, NULL
, _T("no WidgetsBookCtrl?") );
595 page
= subBook
->GetCurrentPage();
596 #endif // !USE_TREEBOOK
598 return wxStaticCast(page
, WidgetsPage
);
601 WidgetsFrame::~WidgetsFrame()
608 // ----------------------------------------------------------------------------
609 // WidgetsFrame event handlers
610 // ----------------------------------------------------------------------------
612 void WidgetsFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
618 void WidgetsFrame::OnButtonClearLog(wxCommandEvent
& WXUNUSED(event
))
626 void WidgetsFrame::OnPageChanging(WidgetsBookCtrlEvent
& event
)
628 if ( !m_book
->GetPage(event
.GetSelection()) )
632 void WidgetsFrame::OnPageChanged(WidgetsBookCtrlEvent
& event
)
634 const int sel
= event
.GetSelection();
636 // adjust "Page" menu selection
637 wxMenuItem
*item
= GetMenuBar()->FindItem(Widgets_GoToPage
+ sel
);
641 GetMenuBar()->Check(Widgets_BusyCursor
, false);
643 // lazy creation of the pages
644 WidgetsPage
*page
= CurrentPage();
645 if ( page
->GetChildren().empty() )
647 wxWindowUpdateLocker
noUpdates(page
);
648 page
->CreateContent();
649 WidgetsBookCtrl
*book
= wxStaticCast(page
->GetParent(), WidgetsBookCtrl
);
651 for ( size_t i
= 0; i
< book
->GetPageCount(); ++i
)
653 wxWindow
*page
= book
->GetPage(i
);
656 size
.IncTo(page
->GetSize());
665 void WidgetsFrame::OnGoToPage(wxCommandEvent
& event
)
668 m_book
->SetSelection(event
.GetId() - Widgets_GoToPage
);
670 m_book
->SetSelection(m_book
->GetPageCount()-1);
671 WidgetsBookCtrl
*book
= wxStaticCast(m_book
->GetCurrentPage(), WidgetsBookCtrl
);
672 book
->SetSelection(event
.GetId() - Widgets_GoToPage
);
678 void WidgetsFrame::OnSetTooltip(wxCommandEvent
& WXUNUSED(event
))
680 static wxString s_tip
= _T("This is a tooltip");
682 wxTextEntryDialog dialog
685 _T("Tooltip text (may use \\n, leave empty to remove): "),
686 _T("Widgets sample"),
690 if ( dialog
.ShowModal() != wxID_OK
)
693 s_tip
= dialog
.GetValue();
694 s_tip
.Replace(_T("\\n"), _T("\n"));
696 WidgetsPage
*page
= CurrentPage();
698 page
->GetWidget()->SetToolTip(s_tip
);
700 wxControl
*ctrl2
= page
->GetWidget2();
702 ctrl2
->SetToolTip(s_tip
);
705 #endif // wxUSE_TOOLTIPS
707 void WidgetsFrame::OnSetFgCol(wxCommandEvent
& WXUNUSED(event
))
710 // allow for debugging the default colour the first time this is called
711 WidgetsPage
*page
= CurrentPage();
714 m_colFg
= page
->GetForegroundColour();
716 wxColour col
= wxGetColourFromUser(this, m_colFg
);
722 page
->GetWidget()->SetForegroundColour(m_colFg
);
723 page
->GetWidget()->Refresh();
725 wxControl
*ctrl2
= page
->GetWidget2();
728 ctrl2
->SetForegroundColour(m_colFg
);
732 wxLogMessage(_T("Colour selection dialog not available in current build."));
736 void WidgetsFrame::OnSetBgCol(wxCommandEvent
& WXUNUSED(event
))
739 WidgetsPage
*page
= CurrentPage();
742 m_colBg
= page
->GetBackgroundColour();
744 wxColour col
= wxGetColourFromUser(this, m_colBg
);
750 page
->GetWidget()->SetBackgroundColour(m_colBg
);
751 page
->GetWidget()->Refresh();
753 wxControl
*ctrl2
= page
->GetWidget2();
756 ctrl2
->SetBackgroundColour(m_colFg
);
760 wxLogMessage(_T("Colour selection dialog not available in current build."));
764 void WidgetsFrame::OnSetFont(wxCommandEvent
& WXUNUSED(event
))
767 WidgetsPage
*page
= CurrentPage();
770 m_font
= page
->GetFont();
772 wxFont font
= wxGetFontFromUser(this, m_font
);
778 page
->GetWidget()->SetFont(m_font
);
779 page
->GetWidget()->Refresh();
781 wxControl
*ctrl2
= page
->GetWidget2();
784 ctrl2
->SetFont(m_font
);
788 wxLogMessage(_T("Font selection dialog not available in current build."));
792 void WidgetsFrame::OnEnable(wxCommandEvent
& event
)
794 CurrentPage()->GetWidget()->Enable(event
.IsChecked());
797 void WidgetsFrame::OnSetBorder(wxCommandEvent
& event
)
800 switch ( event
.GetId() )
802 case Widgets_BorderNone
: border
= wxBORDER_NONE
; break;
803 case Widgets_BorderStatic
: border
= wxBORDER_STATIC
; break;
804 case Widgets_BorderSimple
: border
= wxBORDER_SIMPLE
; break;
805 case Widgets_BorderRaised
: border
= wxBORDER_RAISED
; break;
806 case Widgets_BorderSunken
: border
= wxBORDER_SUNKEN
; break;
807 case Widgets_BorderDouble
: border
= wxBORDER_DOUBLE
; break;
810 wxFAIL_MSG( _T("unknown border style") );
813 case Widgets_BorderDefault
: border
= wxBORDER_DEFAULT
; break;
816 WidgetsPage::ms_defaultFlags
&= ~wxBORDER_MASK
;
817 WidgetsPage::ms_defaultFlags
|= border
;
819 WidgetsPage
*page
= CurrentPage();
821 page
->RecreateWidget();
824 void WidgetsFrame::OnToggleGlobalBusyCursor(wxCommandEvent
& event
)
826 if ( event
.IsChecked() )
832 void WidgetsFrame::OnToggleBusyCursor(wxCommandEvent
& event
)
834 CurrentPage()->GetWidget()->SetCursor(*(event
.IsChecked()
836 : wxSTANDARD_CURSOR
));
839 #endif // wxUSE_MENUS
841 // ----------------------------------------------------------------------------
843 // ----------------------------------------------------------------------------
845 WidgetsPageInfo::WidgetsPageInfo(Constructor ctor
, const wxChar
*label
, int categories
)
847 , m_categories(categories
)
853 // dummy sorting: add and immediately sort in the list according to label
854 if ( WidgetsPage::ms_widgetPages
)
856 WidgetsPageInfo
*node_prev
= WidgetsPage::ms_widgetPages
;
857 if ( wxStrcmp(label
, node_prev
->GetLabel().c_str()) < 0 )
861 WidgetsPage::ms_widgetPages
= this;
865 WidgetsPageInfo
*node_next
;
868 node_next
= node_prev
->GetNext();
871 // add if between two
872 if ( wxStrcmp(label
, node_next
->GetLabel().c_str()) < 0 )
874 node_prev
->SetNext(this);
876 // force to break loop
883 node_prev
->SetNext(this);
886 node_prev
= node_next
;
894 WidgetsPage::ms_widgetPages
= this;
898 // ----------------------------------------------------------------------------
900 // ----------------------------------------------------------------------------
902 int WidgetsPage::ms_defaultFlags
= wxBORDER_DEFAULT
;
903 WidgetsPageInfo
*WidgetsPage::ms_widgetPages
= NULL
;
905 WidgetsPage::WidgetsPage(WidgetsBookCtrl
*book
,
906 wxImageList
*imaglist
,
908 : wxPanel(book
, wxID_ANY
,
909 wxDefaultPosition
, wxDefaultSize
,
910 wxNO_FULL_REPAINT_ON_RESIZE
|
914 #if USE_ICONS_IN_BOOK
915 imaglist
->Add(wxBitmap(icon
));
917 wxUnusedVar(imaglist
);
922 wxSizer
*WidgetsPage::CreateSizerWithText(wxControl
*control
,
926 wxSizer
*sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
927 wxTextCtrl
*text
= new wxTextCtrl(this, id
, wxEmptyString
,
928 wxDefaultPosition
, wxDefaultSize
, wxTE_PROCESS_ENTER
);
930 sizerRow
->Add(control
, 0, wxRIGHT
| wxALIGN_CENTRE_VERTICAL
, 5);
931 sizerRow
->Add(text
, 1, wxLEFT
| wxALIGN_CENTRE_VERTICAL
, 5);
939 // create a sizer containing a label and a text ctrl
940 wxSizer
*WidgetsPage::CreateSizerWithTextAndLabel(const wxString
& label
,
944 return CreateSizerWithText(new wxStaticText(this, wxID_ANY
, label
),
948 // create a sizer containing a button and a text ctrl
949 wxSizer
*WidgetsPage::CreateSizerWithTextAndButton(wxWindowID idBtn
,
950 const wxString
& label
,
954 return CreateSizerWithText(new wxButton(this, idBtn
, label
), id
, ppText
);
957 wxCheckBox
*WidgetsPage::CreateCheckBoxAndAddToSizer(wxSizer
*sizer
,
958 const wxString
& label
,
961 wxCheckBox
*checkbox
= new wxCheckBox(this, id
, label
);
962 sizer
->Add(checkbox
, 0, wxLEFT
| wxRIGHT
, 5);
963 sizer
->Add(0, 2, 0, wxGROW
); // spacer