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
35 #include "wx/button.h"
36 #include "wx/checkbox.h"
37 #include "wx/listbox.h"
38 #include "wx/statbox.h"
39 #include "wx/stattext.h"
40 #include "wx/textctrl.h"
41 #include "wx/msgdlg.h"
44 #include "wx/sysopt.h"
45 #include "wx/bookctrl.h"
46 #include "wx/treebook.h"
48 #include "wx/colordlg.h"
49 #include "wx/fontdlg.h"
50 #include "wx/textdlg.h"
51 #include "wx/imaglist.h"
52 #include "wx/wupdlock.h"
54 #include "wx/persist/toplevel.h"
55 #include "wx/persist/treebook.h"
59 #include "../sample.xpm"
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
68 Widgets_ClearLog
= 100,
75 #endif // wxUSE_TOOLTIPS
87 Widgets_BorderDefault
,
89 Widgets_GlobalBusyCursor
,
93 Widgets_GoToPageLast
= Widgets_GoToPage
+ 100,
97 TextEntry_DisableAutoComplete
= TextEntry_Begin
,
98 TextEntry_AutoCompleteFixed
,
99 TextEntry_AutoCompleteFilenames
,
105 const wxChar
*WidgetsCategories
[MAX_PAGES
] = {
106 #if defined(__WXUNIVERSAL__)
120 // ----------------------------------------------------------------------------
122 // ----------------------------------------------------------------------------
124 // Define a new application type, each program should derive a class from wxApp
125 class WidgetsApp
: public wxApp
128 // override base class virtuals
129 // ----------------------------
131 // this one is called on application startup and is a good place for the app
132 // initialization (doing it here and not in the ctor allows to have an error
133 // return: if OnInit() returns false, the application terminates)
134 virtual bool OnInit();
137 // Define a new frame type: this is going to be our main frame
138 class WidgetsFrame
: public wxFrame
142 WidgetsFrame(const wxString
& title
);
143 virtual ~WidgetsFrame();
148 void OnButtonClearLog(wxCommandEvent
& event
);
150 void OnExit(wxCommandEvent
& event
);
153 void OnPageChanging(WidgetsBookCtrlEvent
& event
);
154 void OnPageChanged(WidgetsBookCtrlEvent
& event
);
155 void OnGoToPage(wxCommandEvent
& event
);
158 void OnSetTooltip(wxCommandEvent
& event
);
159 #endif // wxUSE_TOOLTIPS
160 void OnSetFgCol(wxCommandEvent
& event
);
161 void OnSetBgCol(wxCommandEvent
& event
);
162 void OnSetFont(wxCommandEvent
& event
);
163 void OnEnable(wxCommandEvent
& event
);
164 void OnSetBorder(wxCommandEvent
& event
);
166 void OnToggleGlobalBusyCursor(wxCommandEvent
& event
);
167 void OnToggleBusyCursor(wxCommandEvent
& event
);
169 // wxTextEntry-specific tests
170 void OnDisableAutoComplete(wxCommandEvent
& event
);
171 void OnAutoCompleteFixed(wxCommandEvent
& event
);
172 void OnAutoCompleteFilenames(wxCommandEvent
& event
);
174 void OnSetHint(wxCommandEvent
& event
);
176 void OnUpdateTextUI(wxUpdateUIEvent
& event
)
178 event
.Enable( CurrentPage()->GetTextEntry() != NULL
);
180 #endif // wxUSE_MENUS
182 // initialize the book: add all pages to it
185 // return the currently selected page (never NULL)
186 WidgetsPage
*CurrentPage();
189 // the panel containing everything
193 // the listbox for logging messages
194 wxListBox
*m_lboxLog
;
196 // the log target we use to redirect messages to the listbox
200 // the book containing the test pages
201 WidgetsBookCtrl
*m_book
;
204 // last chosen fg/bg colours and font
208 #endif // wxUSE_MENUS
210 // any class wishing to process wxWidgets events must use this macro
211 DECLARE_EVENT_TABLE()
215 // A log target which just redirects the messages to a listbox
216 class LboxLogger
: public wxLog
219 LboxLogger(wxListBox
*lbox
, wxLog
*logOld
)
222 //m_lbox->Disable(); -- looks ugly under MSW
226 virtual ~LboxLogger()
228 wxLog::SetActiveTarget(m_logOld
);
232 wxSUPPRESS_DOLOG_HIDE_WARNING()
233 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
235 // implement sink functions
236 virtual void DoLog(wxLogLevel level
, const wxString
& str
, time_t t
)
238 // don't put trace messages into listbox or we can get into infinite
240 if ( level
== wxLOG_Trace
)
244 // cast is needed to call protected method
245 ((LboxLogger
*)m_logOld
)->DoLog(level
, str
, t
);
250 wxLog::DoLog(level
, str
, t
);
254 virtual void DoLogString(const wxString
& str
, time_t WXUNUSED(t
))
260 #ifdef __WXUNIVERSAL__
261 m_lbox
->AppendAndEnsureVisible(msg
);
262 #else // other ports don't have this method yet
264 m_lbox
->SetFirstItem(m_lbox
->GetCount() - 1);
268 // the control we use
271 // the old log target
277 WX_DEFINE_ARRAY_PTR(WidgetsPage
*, ArrayWidgetsPage
);
279 // ----------------------------------------------------------------------------
281 // ----------------------------------------------------------------------------
283 IMPLEMENT_APP(WidgetsApp
)
285 // ----------------------------------------------------------------------------
287 // ----------------------------------------------------------------------------
289 BEGIN_EVENT_TABLE(WidgetsFrame
, wxFrame
)
291 EVT_BUTTON(Widgets_ClearLog
, WidgetsFrame::OnButtonClearLog
)
293 EVT_BUTTON(Widgets_Quit
, WidgetsFrame::OnExit
)
296 EVT_MENU(Widgets_SetTooltip
, WidgetsFrame::OnSetTooltip
)
297 #endif // wxUSE_TOOLTIPS
300 EVT_WIDGETS_PAGE_CHANGING(wxID_ANY
, WidgetsFrame::OnPageChanging
)
301 EVT_MENU_RANGE(Widgets_GoToPage
, Widgets_GoToPageLast
,
302 WidgetsFrame::OnGoToPage
)
304 EVT_MENU(Widgets_SetFgColour
, WidgetsFrame::OnSetFgCol
)
305 EVT_MENU(Widgets_SetBgColour
, WidgetsFrame::OnSetBgCol
)
306 EVT_MENU(Widgets_SetFont
, WidgetsFrame::OnSetFont
)
307 EVT_MENU(Widgets_Enable
, WidgetsFrame::OnEnable
)
309 EVT_MENU_RANGE(Widgets_BorderNone
, Widgets_BorderDefault
,
310 WidgetsFrame::OnSetBorder
)
312 EVT_MENU(Widgets_GlobalBusyCursor
, WidgetsFrame::OnToggleGlobalBusyCursor
)
313 EVT_MENU(Widgets_BusyCursor
, WidgetsFrame::OnToggleBusyCursor
)
315 EVT_MENU(TextEntry_DisableAutoComplete
, WidgetsFrame::OnDisableAutoComplete
)
316 EVT_MENU(TextEntry_AutoCompleteFixed
, WidgetsFrame::OnAutoCompleteFixed
)
317 EVT_MENU(TextEntry_AutoCompleteFilenames
, WidgetsFrame::OnAutoCompleteFilenames
)
319 EVT_MENU(TextEntry_SetHint
, WidgetsFrame::OnSetHint
)
321 EVT_UPDATE_UI_RANGE(TextEntry_Begin
, TextEntry_End
- 1,
322 WidgetsFrame::OnUpdateTextUI
)
324 EVT_MENU(wxID_EXIT
, WidgetsFrame::OnExit
)
325 #endif // wxUSE_MENUS
328 // ============================================================================
330 // ============================================================================
332 // ----------------------------------------------------------------------------
334 // ----------------------------------------------------------------------------
336 bool WidgetsApp::OnInit()
338 if ( !wxApp::OnInit() )
341 SetVendorName("wxWidgets_Samples");
343 // the reason for having these ifdef's is that I often run two copies of
344 // this sample side by side and it is useful to see which one is which
346 #if defined(__WXUNIVERSAL__)
347 title
= _T("wxUniv/");
350 #if defined(__WXMSW__)
351 title
+= _T("wxMSW");
352 #elif defined(__WXGTK__)
353 title
+= _T("wxGTK");
354 #elif defined(__WXMAC__)
355 title
+= _T("wxMAC");
356 #elif defined(__WXMOTIF__)
357 title
+= _T("wxMOTIF");
359 title
+= _T("wxPALMOS5");
361 title
+= _T("wxPALMOS6");
363 title
+= _T("wxWidgets");
366 wxFrame
*frame
= new WidgetsFrame(title
+ _T(" widgets demo"));
372 // ----------------------------------------------------------------------------
373 // WidgetsFrame construction
374 // ----------------------------------------------------------------------------
376 WidgetsFrame::WidgetsFrame(const wxString
& title
)
377 : wxFrame(NULL
, wxID_ANY
, title
)
380 const bool sizeSet
= wxPersistentRegisterAndRestore(this);
382 // set the frame icon
383 SetIcon(wxICON(sample
));
393 // create the menubar
394 wxMenuBar
*mbar
= new wxMenuBar
;
395 wxMenu
*menuWidget
= new wxMenu
;
397 menuWidget
->Append(Widgets_SetTooltip
, _T("Set &tooltip...\tCtrl-T"));
398 menuWidget
->AppendSeparator();
399 #endif // wxUSE_TOOLTIPS
400 menuWidget
->Append(Widgets_SetFgColour
, _T("Set &foreground...\tCtrl-F"));
401 menuWidget
->Append(Widgets_SetBgColour
, _T("Set &background...\tCtrl-B"));
402 menuWidget
->Append(Widgets_SetFont
, _T("Set f&ont...\tCtrl-O"));
403 menuWidget
->AppendCheckItem(Widgets_Enable
, _T("&Enable/disable\tCtrl-E"));
405 wxMenu
*menuBorders
= new wxMenu
;
406 menuBorders
->AppendRadioItem(Widgets_BorderDefault
, _T("De&fault\tCtrl-Shift-9"));
407 menuBorders
->AppendRadioItem(Widgets_BorderNone
, _T("&None\tCtrl-Shift-0"));
408 menuBorders
->AppendRadioItem(Widgets_BorderSimple
, _T("&Simple\tCtrl-Shift-1"));
409 menuBorders
->AppendRadioItem(Widgets_BorderDouble
, _T("&Double\tCtrl-Shift-2"));
410 menuBorders
->AppendRadioItem(Widgets_BorderStatic
, _T("Stati&c\tCtrl-Shift-3"));
411 menuBorders
->AppendRadioItem(Widgets_BorderRaised
, _T("&Raised\tCtrl-Shift-4"));
412 menuBorders
->AppendRadioItem(Widgets_BorderSunken
, _T("S&unken\tCtrl-Shift-5"));
413 menuWidget
->AppendSubMenu(menuBorders
, _T("Set &border"));
415 menuWidget
->AppendSeparator();
416 menuWidget
->AppendCheckItem(Widgets_GlobalBusyCursor
,
417 _T("Toggle &global busy cursor\tCtrl-Shift-U"));
418 menuWidget
->AppendCheckItem(Widgets_BusyCursor
,
419 _T("Toggle b&usy cursor\tCtrl-U"));
421 menuWidget
->AppendSeparator();
422 menuWidget
->Append(wxID_EXIT
, _T("&Quit\tCtrl-Q"));
423 mbar
->Append(menuWidget
, _T("&Widget"));
425 wxMenu
*menuTextEntry
= new wxMenu
;
426 menuTextEntry
->AppendRadioItem(TextEntry_DisableAutoComplete
,
427 _T("&Disable auto-completion"));
428 menuTextEntry
->AppendRadioItem(TextEntry_AutoCompleteFixed
,
429 _T("Fixed-&list auto-completion"));
430 menuTextEntry
->AppendRadioItem(TextEntry_AutoCompleteFilenames
,
431 _T("&Files names auto-completion"));
432 menuTextEntry
->AppendSeparator();
433 menuTextEntry
->Append(TextEntry_SetHint
, "Set help &hint");
435 mbar
->Append(menuTextEntry
, _T("&Text"));
439 mbar
->Check(Widgets_Enable
, true);
440 #endif // wxUSE_MENUS
443 m_panel
= new wxPanel(this, wxID_ANY
);
445 wxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
447 // we have 2 panes: book with pages demonstrating the controls in the
448 // upper one and the log window with some buttons in the lower
450 int style
= wxBK_DEFAULT
;
451 // Uncomment to suppress page theme (draw in solid colour)
452 //style |= wxNB_NOPAGETHEME;
454 m_book
= new WidgetsBookCtrl(m_panel
, Widgets_BookCtrl
,
455 wxDefaultPosition
, wxDefaultSize
,
460 #ifndef __WXHANDHELD__
461 // the lower one only has the log listbox and a button to clear it
463 wxSizer
*sizerDown
= new wxStaticBoxSizer(
464 new wxStaticBox( m_panel
, wxID_ANY
, _T("&Log window") ),
467 m_lboxLog
= new wxListBox(m_panel
, wxID_ANY
);
468 sizerDown
->Add(m_lboxLog
, 1, wxGROW
| wxALL
, 5);
469 sizerDown
->SetMinSize(100, 150);
471 wxSizer
*sizerDown
= new wxBoxSizer(wxVERTICAL
);
474 wxBoxSizer
*sizerBtns
= new wxBoxSizer(wxHORIZONTAL
);
477 btn
= new wxButton(m_panel
, Widgets_ClearLog
, _T("Clear &log"));
479 sizerBtns
->Add(10, 0); // spacer
481 btn
= new wxButton(m_panel
, Widgets_Quit
, _T("E&xit"));
483 sizerDown
->Add(sizerBtns
, 0, wxALL
| wxALIGN_RIGHT
, 5);
485 // put everything together
486 sizerTop
->Add(m_book
, 1, wxGROW
| (wxALL
& ~(wxTOP
| wxBOTTOM
)), 10);
487 sizerTop
->Add(0, 5, 0, wxGROW
); // spacer in between
488 sizerTop
->Add(sizerDown
, 0, wxGROW
| (wxALL
& ~wxTOP
), 10);
490 #else // !__WXHANDHELD__/__WXHANDHELD__
492 sizerTop
->Add(m_book
, 1, wxGROW
| wxALL
);
494 #endif // __WXHANDHELD__
496 m_panel
->SetSizer(sizerTop
);
498 const wxSize sizeMin
= m_panel
->GetBestSize();
500 SetClientSize(sizeMin
);
501 SetMinClientSize(sizeMin
);
503 #if USE_LOG && !defined(__WXCOCOA__)
504 // wxCocoa's listbox is too flakey to use for logging right now
505 // now that everything is created we can redirect the log messages to the
507 m_logTarget
= new LboxLogger(m_lboxLog
, wxLog::GetActiveTarget());
508 wxLog::SetActiveTarget(m_logTarget
);
512 void WidgetsFrame::InitBook()
514 #if USE_ICONS_IN_BOOK
515 wxImageList
*imageList
= new wxImageList(ICON_SIZE
, ICON_SIZE
);
517 wxImage
img(sample_xpm
);
518 imageList
->Add(wxBitmap(img
.Scale(ICON_SIZE
, ICON_SIZE
)));
520 wxImageList
*imageList
= NULL
;
524 WidgetsBookCtrl
*books
[MAX_PAGES
];
527 ArrayWidgetsPage pages
[MAX_PAGES
];
528 wxArrayString labels
[MAX_PAGES
];
530 wxMenu
*menuPages
= new wxMenu
;
531 unsigned int nPage
= 0, nFKey
= 0;
532 int cat
, imageId
= 1;
534 // we need to first create all pages and only then add them to the book
535 // as we need the image list first
537 // we also construct the pages menu during this first iteration
538 for ( cat
= 0; cat
< MAX_PAGES
; cat
++ )
541 nPage
++; // increase for parent page
543 books
[cat
] = new WidgetsBookCtrl(m_book
,
550 for ( WidgetsPageInfo
*info
= WidgetsPage::ms_widgetPages
;
552 info
= info
->GetNext() )
554 if( (info
->GetCategories() & ( 1 << cat
)) == 0)
557 WidgetsPage
*page
= (*info
->GetCtor())(
564 pages
[cat
].Add(page
);
566 labels
[cat
].Add(info
->GetLabel());
567 if ( cat
== ALL_PAGE
)
569 wxString
radioLabel(info
->GetLabel());
573 radioLabel
<< wxT("\tF" ) << nFKey
;
576 menuPages
->AppendRadioItem(
577 Widgets_GoToPage
+ nPage
,
581 // consider only for book in book architecture
587 // consider only for treebook architecture (with subpages)
593 GetMenuBar()->Append(menuPages
, _T("&Page"));
595 #if USE_ICONS_IN_BOOK
596 m_book
->AssignImageList(imageList
);
599 for ( cat
= 0; cat
< MAX_PAGES
; cat
++ )
602 m_book
->AddPage(NULL
,WidgetsCategories
[cat
],false,0);
604 m_book
->AddPage(books
[cat
],WidgetsCategories
[cat
],false,0);
605 #if USE_ICONS_IN_BOOK
606 books
[cat
]->SetImageList(imageList
);
611 size_t count
= pages
[cat
].GetCount();
612 for ( size_t n
= 0; n
< count
; n
++ )
622 false, // don't select
629 wxEVT_COMMAND_WIDGETS_PAGE_CHANGED
,
630 wxWidgetsbookEventHandler(WidgetsFrame::OnPageChanged
) );
632 const bool pageSet
= wxPersistentRegisterAndRestore(m_book
);
635 // for treebook page #0 is empty parent page only so select the first page
636 // with some contents
638 m_book
->SetSelection(1);
640 // but ensure that the top of the tree is shown nevertheless
641 wxTreeCtrl
* const tree
= m_book
->GetTreeCtrl();
643 wxTreeItemIdValue cookie
;
644 tree
->EnsureVisible(tree
->GetFirstChild(tree
->GetRootItem(), cookie
));
648 // for other books set selection twice to force connected event handler
649 // to force lazy creation of initial visible content
650 m_book
->SetSelection(1);
651 m_book
->SetSelection(0);
653 #endif // USE_TREEBOOK
656 WidgetsPage
*WidgetsFrame::CurrentPage()
658 wxWindow
*page
= m_book
->GetCurrentPage();
661 WidgetsBookCtrl
*subBook
= wxStaticCast(page
, WidgetsBookCtrl
);
662 wxCHECK_MSG( subBook
, NULL
, _T("no WidgetsBookCtrl?") );
664 page
= subBook
->GetCurrentPage();
665 #endif // !USE_TREEBOOK
667 return wxStaticCast(page
, WidgetsPage
);
670 WidgetsFrame::~WidgetsFrame()
677 // ----------------------------------------------------------------------------
678 // WidgetsFrame event handlers
679 // ----------------------------------------------------------------------------
681 void WidgetsFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
687 void WidgetsFrame::OnButtonClearLog(wxCommandEvent
& WXUNUSED(event
))
695 void WidgetsFrame::OnPageChanging(WidgetsBookCtrlEvent
& event
)
698 // don't allow selection of entries without pages (categories)
699 if ( !m_book
->GetPage(event
.GetSelection()) )
706 void WidgetsFrame::OnPageChanged(WidgetsBookCtrlEvent
& event
)
708 const int sel
= event
.GetSelection();
710 // adjust "Page" menu selection
711 wxMenuItem
*item
= GetMenuBar()->FindItem(Widgets_GoToPage
+ sel
);
715 GetMenuBar()->Check(Widgets_BusyCursor
, false);
717 // create the pages on demand, otherwise the sample startup is too slow as
718 // it creates hundreds of controls
719 WidgetsPage
*page
= CurrentPage();
720 if ( page
->GetChildren().empty() )
722 wxWindowUpdateLocker
noUpdates(page
);
723 page
->CreateContent();
725 page
->GetSizer()->Fit(page
);
727 WidgetsBookCtrl
*book
= wxStaticCast(page
->GetParent(), WidgetsBookCtrl
);
729 for ( size_t i
= 0; i
< book
->GetPageCount(); ++i
)
731 wxWindow
*page
= book
->GetPage(i
);
734 size
.IncTo(page
->GetSize());
743 void WidgetsFrame::OnGoToPage(wxCommandEvent
& event
)
746 m_book
->SetSelection(event
.GetId() - Widgets_GoToPage
);
748 m_book
->SetSelection(m_book
->GetPageCount()-1);
749 WidgetsBookCtrl
*book
= wxStaticCast(m_book
->GetCurrentPage(), WidgetsBookCtrl
);
750 book
->SetSelection(event
.GetId() - Widgets_GoToPage
);
756 void WidgetsFrame::OnSetTooltip(wxCommandEvent
& WXUNUSED(event
))
758 static wxString s_tip
= _T("This is a tooltip");
760 wxTextEntryDialog dialog
763 _T("Tooltip text (may use \\n, leave empty to remove): "),
764 _T("Widgets sample"),
768 if ( dialog
.ShowModal() != wxID_OK
)
771 s_tip
= dialog
.GetValue();
772 s_tip
.Replace(_T("\\n"), _T("\n"));
774 WidgetsPage
*page
= CurrentPage();
776 page
->GetWidget()->SetToolTip(s_tip
);
778 wxControl
*ctrl2
= page
->GetWidget2();
780 ctrl2
->SetToolTip(s_tip
);
783 #endif // wxUSE_TOOLTIPS
785 void WidgetsFrame::OnSetFgCol(wxCommandEvent
& WXUNUSED(event
))
788 // allow for debugging the default colour the first time this is called
789 WidgetsPage
*page
= CurrentPage();
792 m_colFg
= page
->GetForegroundColour();
794 wxColour col
= wxGetColourFromUser(this, m_colFg
);
800 page
->GetWidget()->SetForegroundColour(m_colFg
);
801 page
->GetWidget()->Refresh();
803 wxControl
*ctrl2
= page
->GetWidget2();
806 ctrl2
->SetForegroundColour(m_colFg
);
810 wxLogMessage(_T("Colour selection dialog not available in current build."));
814 void WidgetsFrame::OnSetBgCol(wxCommandEvent
& WXUNUSED(event
))
817 WidgetsPage
*page
= CurrentPage();
820 m_colBg
= page
->GetBackgroundColour();
822 wxColour col
= wxGetColourFromUser(this, m_colBg
);
828 page
->GetWidget()->SetBackgroundColour(m_colBg
);
829 page
->GetWidget()->Refresh();
831 wxControl
*ctrl2
= page
->GetWidget2();
834 ctrl2
->SetBackgroundColour(m_colFg
);
838 wxLogMessage(_T("Colour selection dialog not available in current build."));
842 void WidgetsFrame::OnSetFont(wxCommandEvent
& WXUNUSED(event
))
845 WidgetsPage
*page
= CurrentPage();
848 m_font
= page
->GetFont();
850 wxFont font
= wxGetFontFromUser(this, m_font
);
856 page
->GetWidget()->SetFont(m_font
);
857 page
->GetWidget()->Refresh();
859 wxControl
*ctrl2
= page
->GetWidget2();
862 ctrl2
->SetFont(m_font
);
866 wxLogMessage(_T("Font selection dialog not available in current build."));
870 void WidgetsFrame::OnEnable(wxCommandEvent
& event
)
872 CurrentPage()->GetWidget()->Enable(event
.IsChecked());
873 if (CurrentPage()->GetWidget2())
874 CurrentPage()->GetWidget2()->Enable(event
.IsChecked());
877 void WidgetsFrame::OnSetBorder(wxCommandEvent
& event
)
880 switch ( event
.GetId() )
882 case Widgets_BorderNone
: border
= wxBORDER_NONE
; break;
883 case Widgets_BorderStatic
: border
= wxBORDER_STATIC
; break;
884 case Widgets_BorderSimple
: border
= wxBORDER_SIMPLE
; break;
885 case Widgets_BorderRaised
: border
= wxBORDER_RAISED
; break;
886 case Widgets_BorderSunken
: border
= wxBORDER_SUNKEN
; break;
887 case Widgets_BorderDouble
: border
= wxBORDER_DOUBLE
; break;
890 wxFAIL_MSG( _T("unknown border style") );
893 case Widgets_BorderDefault
: border
= wxBORDER_DEFAULT
; break;
896 WidgetsPage::ms_defaultFlags
&= ~wxBORDER_MASK
;
897 WidgetsPage::ms_defaultFlags
|= border
;
899 WidgetsPage
*page
= CurrentPage();
901 page
->RecreateWidget();
904 void WidgetsFrame::OnToggleGlobalBusyCursor(wxCommandEvent
& event
)
906 if ( event
.IsChecked() )
912 void WidgetsFrame::OnToggleBusyCursor(wxCommandEvent
& event
)
914 CurrentPage()->GetWidget()->SetCursor(*(event
.IsChecked()
916 : wxSTANDARD_CURSOR
));
919 void WidgetsFrame::OnDisableAutoComplete(wxCommandEvent
& WXUNUSED(event
))
921 wxTextEntryBase
*entry
= CurrentPage()->GetTextEntry();
922 wxCHECK_RET( entry
, "menu item should be disabled" );
924 if ( entry
->AutoComplete(wxArrayString()) )
925 wxLogMessage("Disabled auto completion.");
927 wxLogMessage("AutoComplete() failed.");
930 void WidgetsFrame::OnAutoCompleteFixed(wxCommandEvent
& WXUNUSED(event
))
932 wxTextEntryBase
*entry
= CurrentPage()->GetTextEntry();
933 wxCHECK_RET( entry
, "menu item should be disabled" );
935 wxArrayString completion_choices
;
937 // add a few strings so a completion occurs on any letter typed
938 for ( char idxc
= 'a'; idxc
< 'z'; ++idxc
)
939 completion_choices
.push_back(wxString::Format("%c%c", idxc
, idxc
));
941 completion_choices
.push_back("is this string for test?");
942 completion_choices
.push_back("this is a test string");
943 completion_choices
.push_back("this is another test string");
944 completion_choices
.push_back("this string is for test");
946 if ( entry
->AutoComplete(completion_choices
) )
947 wxLogMessage("Enabled auto completion of a set of fixed strings.");
949 wxLogMessage("AutoComplete() failed.");
952 void WidgetsFrame::OnAutoCompleteFilenames(wxCommandEvent
& WXUNUSED(event
))
954 wxTextEntryBase
*entry
= CurrentPage()->GetTextEntry();
955 wxCHECK_RET( entry
, "menu item should be disabled" );
957 if ( entry
->AutoCompleteFileNames() )
958 wxLogMessage("Enable auto completion of file names.");
960 wxLogMessage("AutoCompleteFileNames() failed.");
963 void WidgetsFrame::OnSetHint(wxCommandEvent
& WXUNUSED(event
))
965 wxTextEntryBase
*entry
= CurrentPage()->GetTextEntry();
966 wxCHECK_RET( entry
, "menu item should be disabled" );
968 static wxString
s_hint("Type here");
970 hint
= wxGetTextFromUser("Text hint:", "Widgets sample", s_hint
, this);
976 if ( entry
->SetHint(hint
) )
977 wxLogMessage("Set hint to \"%s\".", hint
);
979 wxLogMessage("Text hints not supported.");
982 #endif // wxUSE_MENUS
984 // ----------------------------------------------------------------------------
986 // ----------------------------------------------------------------------------
988 WidgetsPageInfo::WidgetsPageInfo(Constructor ctor
, const wxChar
*label
, int categories
)
990 , m_categories(categories
)
996 // dummy sorting: add and immediately sort in the list according to label
997 if ( WidgetsPage::ms_widgetPages
)
999 WidgetsPageInfo
*node_prev
= WidgetsPage::ms_widgetPages
;
1000 if ( wxStrcmp(label
, node_prev
->GetLabel().c_str()) < 0 )
1004 WidgetsPage::ms_widgetPages
= this;
1008 WidgetsPageInfo
*node_next
;
1011 node_next
= node_prev
->GetNext();
1014 // add if between two
1015 if ( wxStrcmp(label
, node_next
->GetLabel().c_str()) < 0 )
1017 node_prev
->SetNext(this);
1019 // force to break loop
1026 node_prev
->SetNext(this);
1029 node_prev
= node_next
;
1031 while ( node_next
);
1037 WidgetsPage::ms_widgetPages
= this;
1041 // ----------------------------------------------------------------------------
1043 // ----------------------------------------------------------------------------
1045 int WidgetsPage::ms_defaultFlags
= wxBORDER_DEFAULT
;
1046 WidgetsPageInfo
*WidgetsPage::ms_widgetPages
= NULL
;
1048 WidgetsPage::WidgetsPage(WidgetsBookCtrl
*book
,
1049 wxImageList
*imaglist
,
1050 const char *const icon
[])
1051 : wxPanel(book
, wxID_ANY
,
1052 wxDefaultPosition
, wxDefaultSize
,
1053 wxNO_FULL_REPAINT_ON_RESIZE
|
1057 #if USE_ICONS_IN_BOOK
1058 imaglist
->Add(wxBitmap(wxImage(icon
).Scale(ICON_SIZE
, ICON_SIZE
)));
1060 wxUnusedVar(imaglist
);
1065 wxSizer
*WidgetsPage::CreateSizerWithText(wxControl
*control
,
1067 wxTextCtrl
**ppText
)
1069 wxSizer
*sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
1070 wxTextCtrl
*text
= new wxTextCtrl(this, id
, wxEmptyString
,
1071 wxDefaultPosition
, wxDefaultSize
, wxTE_PROCESS_ENTER
);
1073 sizerRow
->Add(control
, 0, wxRIGHT
| wxALIGN_CENTRE_VERTICAL
, 5);
1074 sizerRow
->Add(text
, 1, wxLEFT
| wxALIGN_CENTRE_VERTICAL
, 5);
1082 // create a sizer containing a label and a text ctrl
1083 wxSizer
*WidgetsPage::CreateSizerWithTextAndLabel(const wxString
& label
,
1085 wxTextCtrl
**ppText
)
1087 return CreateSizerWithText(new wxStaticText(this, wxID_ANY
, label
),
1091 // create a sizer containing a button and a text ctrl
1092 wxSizer
*WidgetsPage::CreateSizerWithTextAndButton(wxWindowID idBtn
,
1093 const wxString
& label
,
1095 wxTextCtrl
**ppText
)
1097 return CreateSizerWithText(new wxButton(this, idBtn
, label
), id
, ppText
);
1100 wxCheckBox
*WidgetsPage::CreateCheckBoxAndAddToSizer(wxSizer
*sizer
,
1101 const wxString
& label
,
1104 wxCheckBox
*checkbox
= new wxCheckBox(this, id
, label
);
1105 sizer
->Add(checkbox
, 0, wxLEFT
| wxRIGHT
, 5);
1106 sizer
->Add(0, 2, 0, wxGROW
); // spacer