X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/916eabe60eee4adb05387bbf1eaf1915ae5eac18..a17305ea876e64131467348b24f25929f98986d7:/samples/widgets/static.cpp diff --git a/samples/widgets/static.cpp b/samples/widgets/static.cpp index 7987424ac1..a2a363c6d5 100644 --- a/samples/widgets/static.cpp +++ b/samples/widgets/static.cpp @@ -6,7 +6,7 @@ // Created: 11.04.01 // Id: $Id$ // Copyright: (c) 2001 Vadim Zeitlin -// License: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -94,6 +94,20 @@ public: virtual ~StaticWidgetsPage(){}; virtual wxControl *GetWidget() const { return m_statText; } + virtual Widgets GetWidgets() const + { + Widgets widgets; + widgets.push_back(m_sizerStatBox->GetStaticBox()); + widgets.push_back(m_statText); +#if wxUSE_MARKUP + widgets.push_back(m_statMarkup); +#endif // wxUSE_MARKUP +#if wxUSE_STATLINE + widgets.push_back(m_statLine); +#endif // wxUSE_STATLINE + + return widgets; + } virtual void RecreateWidget() { CreateStatic(); } // lazy creation of the content @@ -106,7 +120,9 @@ protected: void OnButtonReset(wxCommandEvent& event); void OnButtonBoxText(wxCommandEvent& event); void OnButtonLabelText(wxCommandEvent& event); +#if wxUSE_MARKUP void OnButtonLabelWithMarkupText(wxCommandEvent& event); +#endif // wxUSE_MARKUP void OnMouseEvent(wxMouseEvent& event); // reset all parameters @@ -122,9 +138,12 @@ protected: wxCheckBox *m_chkVert, *m_chkGeneric, *m_chkAutoResize, - *m_chkEllipsize, - *m_chkMarkup, + *m_chkEllipsize; + +#if wxUSE_MARKUP + wxCheckBox *m_chkMarkup, *m_chkGreen; +#endif // wxUSE_MARKUP wxRadioBox *m_radioHAlign, *m_radioVAlign, @@ -132,8 +151,12 @@ protected: // the controls and the sizer containing them wxStaticBoxSizer *m_sizerStatBox; - wxStaticTextBase *m_statText, - *m_statMarkup; + wxStaticTextBase *m_statText; + +#if wxUSE_MARKUP + wxStaticTextBase *m_statMarkup; +#endif // wxUSE_MARKUP + #if wxUSE_STATLINE wxStaticLine *m_statLine; #endif // wxUSE_STATLINE @@ -141,8 +164,11 @@ protected: // the text entries for command parameters wxTextCtrl *m_textBox, - *m_textLabel, - *m_textLabelWithMarkup; + *m_textLabel; + +#if wxUSE_MARKUP + wxTextCtrl *m_textLabelWithMarkup; +#endif // wxUSE_MARKUP private: DECLARE_EVENT_TABLE() @@ -156,7 +182,9 @@ private: BEGIN_EVENT_TABLE(StaticWidgetsPage, WidgetsPage) EVT_BUTTON(StaticPage_Reset, StaticWidgetsPage::OnButtonReset) EVT_BUTTON(StaticPage_LabelText, StaticWidgetsPage::OnButtonLabelText) +#if wxUSE_MARKUP EVT_BUTTON(StaticPage_LabelTextWithMarkup, StaticWidgetsPage::OnButtonLabelWithMarkupText) +#endif // wxUSE_MARKUP EVT_BUTTON(StaticPage_BoxText, StaticWidgetsPage::OnButtonBoxText) EVT_CHECKBOX(wxID_ANY, StaticWidgetsPage::OnCheckOrRadioBox) @@ -167,7 +195,7 @@ END_EVENT_TABLE() // implementation // ============================================================================ -IMPLEMENT_WIDGETS_PAGE(StaticWidgetsPage, _T("Static"), +IMPLEMENT_WIDGETS_PAGE(StaticWidgetsPage, wxT("Static"), (int)wxPlatform(GENERIC_CTRLS).If(wxOS_WINDOWS,NATIVE_CTRLS) ); @@ -177,9 +205,12 @@ StaticWidgetsPage::StaticWidgetsPage(WidgetsBookCtrl *book, { // init everything m_chkVert = - m_chkAutoResize = (wxCheckBox *)NULL; - m_chkGeneric = NULL; - m_chkGreen = NULL; + m_chkAutoResize = + m_chkGeneric = +#if wxUSE_MARKUP + m_chkGreen = +#endif // wxUSE_MARKUP + NULL; m_radioHAlign = m_radioVAlign = (wxRadioBox *)NULL; @@ -187,12 +218,19 @@ StaticWidgetsPage::StaticWidgetsPage(WidgetsBookCtrl *book, #if wxUSE_STATLINE m_statLine = (wxStaticLine *)NULL; #endif // wxUSE_STATLINE +#if wxUSE_MARKUP m_statText = m_statMarkup = NULL; +#endif // wxUSE_MARKUP m_sizerStatBox = (wxStaticBoxSizer *)NULL; m_sizerStatic = (wxSizer *)NULL; - m_textBox = m_textLabel = m_textLabelWithMarkup = NULL; + m_textBox = + m_textLabel = +#if wxUSE_MARKUP + m_textLabelWithMarkup = +#endif // wxUSE_MARKUP + NULL; } void StaticWidgetsPage::CreateContent() @@ -204,29 +242,28 @@ void StaticWidgetsPage::CreateContent() m_chkGeneric = CreateCheckBoxAndAddToSizer(sizerLeft, "&Generic wxStaticText"); - m_chkMarkup = CreateCheckBoxAndAddToSizer(sizerLeft, "Support &markup"); m_chkVert = CreateCheckBoxAndAddToSizer(sizerLeft, "&Vertical line"); m_chkAutoResize = CreateCheckBoxAndAddToSizer(sizerLeft, "&Fit to text"); sizerLeft->Add(5, 5, 0, wxGROW | wxALL, 5); // spacer static const wxString halign[] = { - _T("left"), - _T("centre"), - _T("right"), + wxT("left"), + wxT("centre"), + wxT("right"), }; static const wxString valign[] = { - _T("top"), - _T("centre"), - _T("bottom"), + wxT("top"), + wxT("centre"), + wxT("bottom"), }; - m_radioHAlign = new wxRadioBox(this, wxID_ANY, _T("&Horz alignment"), + m_radioHAlign = new wxRadioBox(this, wxID_ANY, wxT("&Horz alignment"), wxDefaultPosition, wxDefaultSize, WXSIZEOF(halign), halign, 3); - m_radioVAlign = new wxRadioBox(this, wxID_ANY, _T("&Vert alignment"), + m_radioVAlign = new wxRadioBox(this, wxID_ANY, wxT("&Vert alignment"), wxDefaultPosition, wxDefaultSize, WXSIZEOF(valign), valign, 3); @@ -236,23 +273,23 @@ void StaticWidgetsPage::CreateContent() sizerLeft->Add(5, 5, 0, wxGROW | wxALL, 5); // spacer - m_chkEllipsize = CreateCheckBoxAndAddToSizer(sizerLeft, _T("&Ellipsize")); + m_chkEllipsize = CreateCheckBoxAndAddToSizer(sizerLeft, wxT("&Ellipsize")); static const wxString ellipsizeMode[] = { - _T("&start"), - _T("&middle"), - _T("&end"), + wxT("&start"), + wxT("&middle"), + wxT("&end"), }; - m_radioEllipsize = new wxRadioBox(this, wxID_ANY, _T("&Ellipsize mode"), + m_radioEllipsize = new wxRadioBox(this, wxID_ANY, wxT("&Ellipsize mode"), wxDefaultPosition, wxDefaultSize, WXSIZEOF(ellipsizeMode), ellipsizeMode, 3); sizerLeft->Add(m_radioEllipsize, 0, wxGROW | wxALL, 5); - wxButton *btn = new wxButton(this, StaticPage_Reset, _T("&Reset")); + wxButton *btn = new wxButton(this, StaticPage_Reset, wxT("&Reset")); sizerLeft->Add(btn, 0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15); // middle pane @@ -277,6 +314,7 @@ void StaticWidgetsPage::CreateContent() sizerMiddle->Add(m_textLabel, 0, wxEXPAND|wxALL, 5); sizerMiddle->Add(b2, 0, wxLEFT|wxBOTTOM, 5); +#if wxUSE_MARKUP m_textLabelWithMarkup = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxHSCROLL); @@ -290,19 +328,23 @@ void StaticWidgetsPage::CreateContent() m_chkGreen = CreateCheckBoxAndAddToSizer(sizerLeft, "Decorated label on g&reen"); + sizerMiddle->Add(m_chkGreen, 0, wxALL, 5); +#endif // wxUSE_MARKUP // final initializations // NB: must be done _before_ calling CreateStatic() Reset(); - m_textBox->SetValue(_T("This is a box")); - m_textLabel->SetValue(_T("And this is a\n\tlabel inside the box with a &mnemonic.\n") - _T("Only this text is affected by the ellipsize settings.")); - m_textLabelWithMarkup->SetValue(_T("Another label, this time decorated ") - _T("with markup; here you need entities ") - _T("for the symbols: < > & ' " ") - _T(" but you can still place &mnemonics...")); + m_textBox->SetValue(wxT("This is a &box")); + m_textLabel->SetValue(wxT("And this is a\n\tlabel inside the box with a &mnemonic.\n") + wxT("Only this text is affected by the ellipsize settings.")); +#if wxUSE_MARKUP + m_textLabelWithMarkup->SetValue(wxT("Another label, this time decorated ") + wxT("with markup; here you need entities ") + wxT("for the symbols: < > & ' " ") + wxT(" but you can still place &mnemonics...")); +#endif // wxUSE_MARKUP // right pane wxSizer *sizerRight = new wxBoxSizer(wxHORIZONTAL); @@ -329,7 +371,6 @@ void StaticWidgetsPage::Reset() m_chkVert->SetValue(false); m_chkAutoResize->SetValue(true); m_chkEllipsize->SetValue(true); - m_chkMarkup->SetValue(true); m_radioHAlign->SetSelection(StaticHAlign_Left); m_radioVAlign->SetSelection(StaticVAlign_Top); @@ -344,7 +385,9 @@ void StaticWidgetsPage::CreateStatic() // delete m_sizerStatBox; -- deleted by Remove() m_sizerStatic->Remove(m_sizerStatBox); delete m_statText; +#if wxUSE_MARKUP delete m_statMarkup; +#endif // wxUSE_MARKUP #if wxUSE_STATLINE delete m_statLine; #endif // wxUSE_STATLINE @@ -360,17 +403,11 @@ void StaticWidgetsPage::CreateStatic() flagsDummyText |= wxST_NO_AUTORESIZE; } - if ( m_chkMarkup->GetValue() ) - { - flagsText |= wxST_MARKUP; - flagsDummyText |= wxST_MARKUP; - } - int align = 0; switch ( m_radioHAlign->GetSelection() ) { default: - wxFAIL_MSG(_T("unexpected radiobox selection")); + wxFAIL_MSG(wxT("unexpected radiobox selection")); // fall through case StaticHAlign_Left: @@ -389,7 +426,7 @@ void StaticWidgetsPage::CreateStatic() switch ( m_radioVAlign->GetSelection() ) { default: - wxFAIL_MSG(_T("unexpected radiobox selection")); + wxFAIL_MSG(wxT("unexpected radiobox selection")); // fall through case StaticVAlign_Top: @@ -410,7 +447,7 @@ void StaticWidgetsPage::CreateStatic() switch ( m_radioEllipsize->GetSelection() ) { default: - wxFAIL_MSG(_T("unexpected radiobox selection")); + wxFAIL_MSG(wxT("unexpected radiobox selection")); // fall through case StaticEllipsize_Start: @@ -444,10 +481,12 @@ void StaticWidgetsPage::CreateStatic() m_textLabel->GetValue(), wxDefaultPosition, wxDefaultSize, flagsDummyText); +#if wxUSE_MARKUP m_statMarkup = new wxGenericStaticText(this, wxID_ANY, - m_textLabelWithMarkup->GetValue(), + wxString(), wxDefaultPosition, wxDefaultSize, flagsText); +#endif // wxUSE_MARKUP } else // use native versions { @@ -455,13 +494,21 @@ void StaticWidgetsPage::CreateStatic() m_textLabel->GetValue(), wxDefaultPosition, wxDefaultSize, flagsDummyText); +#if wxUSE_MARKUP m_statMarkup = new wxStaticText(this, wxID_ANY, - m_textLabelWithMarkup->GetValue(), + wxString(), wxDefaultPosition, wxDefaultSize, flagsText); +#endif // wxUSE_MARKUP } + +#if wxUSE_MARKUP + m_statMarkup->SetLabelMarkup(m_textLabelWithMarkup->GetValue()); + if ( m_chkGreen->GetValue() ) m_statMarkup->SetBackgroundColour(*wxGREEN); +#endif // wxUSE_MARKUP + #if wxUSE_STATLINE m_statLine = new wxStaticLine(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, @@ -472,7 +519,9 @@ void StaticWidgetsPage::CreateStatic() #if wxUSE_STATLINE m_sizerStatBox->Add(m_statLine, 0, wxGROW | wxALL, 5); #endif // wxUSE_STATLINE +#if wxUSE_MARKUP m_sizerStatBox->Add(m_statMarkup, 1, wxGROW | wxALL, 5); +#endif // wxUSE_MARKUP m_sizerStatic->Add(m_sizerStatBox, 1, wxGROW); @@ -499,7 +548,7 @@ void StaticWidgetsPage::OnButtonReset(wxCommandEvent& WXUNUSED(event)) void StaticWidgetsPage::OnCheckOrRadioBox(wxCommandEvent& event) { - if (event.GetEventObject() == wx_static_cast(wxObject*, m_chkEllipsize)) + if (event.GetEventObject() == static_cast(m_chkEllipsize)) { m_radioEllipsize->Enable(event.IsChecked()); } @@ -525,9 +574,10 @@ void StaticWidgetsPage::OnButtonLabelText(wxCommandEvent& WXUNUSED(event)) m_statText->GetLabelText()); } +#if wxUSE_MARKUP void StaticWidgetsPage::OnButtonLabelWithMarkupText(wxCommandEvent& WXUNUSED(event)) { - m_statMarkup->SetLabel(m_textLabelWithMarkup->GetValue()); + m_statMarkup->SetLabelMarkup(m_textLabelWithMarkup->GetValue()); // test GetLabel() and GetLabelText(); the first should return the // label as it is written in the relative text control; the second should @@ -537,12 +587,17 @@ void StaticWidgetsPage::OnButtonLabelWithMarkupText(wxCommandEvent& WXUNUSED(eve wxLogMessage(wxT("The label text is '%s'"), m_statMarkup->GetLabelText()); } +#endif // wxUSE_MARKUP void StaticWidgetsPage::OnMouseEvent(wxMouseEvent& event) { if ( event.GetEventObject() == m_statText ) + { wxLogMessage("Clicked on static text"); + } else + { wxLogMessage("Clicked on static box"); + } }