Generate the button clicks in GTK version of wxInfoBar.

Also add an example of handling info bar buttons events to the sample and
mention that this must be done using Connect() or by deriving from wxInfoBar
in the documentation.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62279 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-10-05 22:55:32 +00:00
parent cc7033c2f5
commit c0945eb234
4 changed files with 43 additions and 8 deletions

View File

@@ -528,21 +528,33 @@ MyFrame::MyFrame(const wxString& title)
// an info bar can be created very simply and used without any extra effort
m_infoBarSimple = new wxInfoBar(this);
// or it can also be customized
// or it can also be customized by
m_infoBarAdvanced = new wxInfoBar(this);
// ... adding extra buttons (but more than two will usually be too many)
m_infoBarAdvanced->AddButton(wxID_UNDO);
m_infoBarAdvanced->AddButton(wxID_REDO);
m_infoBarAdvanced->Connect(wxID_REDO, wxEVT_COMMAND_BUTTON_CLICKED,
wxCommandEventHandler(MyFrame::OnInfoBarRedo),
NULL,
this);
// adding and removing a button immediately doesn't make sense here, of
// course, it's done just to show that it is possible
m_infoBarAdvanced->AddButton(wxID_EXIT);
m_infoBarAdvanced->RemoveButton(wxID_EXIT);
// ... changing the colours and/or fonts
m_infoBarAdvanced->SetOwnBackgroundColour(0xc8ffff);
m_infoBarAdvanced->SetFont(GetFont().Bold().Larger());
// ... and changing the effect (only does anything under MSW currently)
m_infoBarAdvanced->SetShowHideEffects(wxSHOW_EFFECT_EXPAND,
wxSHOW_EFFECT_EXPAND);
m_infoBarAdvanced->SetEffectDuration(1500);
// to use the info bars we need to use sizer for the window layout
wxBoxSizer * const sizer = new wxBoxSizer(wxVERTICAL);
sizer->Add(m_infoBarSimple, wxSizerFlags().Expand());
@@ -709,6 +721,11 @@ void MyFrame::InfoBarAdvanced(wxCommandEvent& WXUNUSED(event))
m_infoBarAdvanced->ShowMessage("Sorry, it didn't work out.", wxICON_WARNING);
}
void MyFrame::OnInfoBarRedo(wxCommandEvent& WXUNUSED(event))
{
m_infoBarAdvanced->ShowMessage("Still no, sorry again.", wxICON_ERROR);
}
#endif // wxUSE_INFOBAR