#include "wx/clrpicker.h"
#include "wx/filepicker.h"
#include "wx/fontpicker.h"
+#include "wx/aboutdlg.h"
// ----------------------------------------------------------------------------
// constants
PANE_EXPAND,
PANE_SETLABEL,
PANE_SHOWDLG,
+ PANE_ABOUT = wxID_ABOUT,
PANE_QUIT = wxID_EXIT
};
void OnSetLabel(wxCommandEvent& event);
void OnShowDialog(wxCommandEvent& event);
void Quit(wxCommandEvent& event);
+ void OnAbout(wxCommandEvent& event);
- // Menu command update functions
- void UpdateUI(wxUpdateUIEvent& event);
+ // UI update handlers
+ void OnCollapseUpdateUI(wxUpdateUIEvent& event);
+ void OnExpandUpdateUI(wxUpdateUIEvent& event);
private:
wxCollapsiblePane *m_collPane;
public:
MyDialog(wxFrame *parent);
void OnToggleStatus(wxCommandEvent& WXUNUSED(ev));
+ void OnPaneChanged(wxCollapsiblePaneEvent& event);
private:
wxCollapsiblePane *m_collPane;
bool MyApp::OnInit()
{
+ if ( !wxApp::OnInit() )
+ return false;
+
// create and show the main frame
MyFrame* frame = new MyFrame;
EVT_MENU(PANE_EXPAND, MyFrame::OnExpand)
EVT_MENU(PANE_SETLABEL, MyFrame::OnSetLabel)
EVT_MENU(PANE_SHOWDLG, MyFrame::OnShowDialog)
+ EVT_MENU(PANE_ABOUT, MyFrame::OnAbout)
EVT_MENU(PANE_QUIT, MyFrame::Quit)
- EVT_UPDATE_UI(wxID_ANY, MyFrame::UpdateUI)
+ EVT_UPDATE_UI(PANE_COLLAPSE, MyFrame::OnCollapseUpdateUI)
+ EVT_UPDATE_UI(PANE_EXPAND, MyFrame::OnExpandUpdateUI)
END_EVENT_TABLE()
// My frame constructor
paneMenu->Append(PANE_COLLAPSE, _T("Collapse\tCtrl-C"));
paneMenu->Append(PANE_EXPAND, _T("Expand\tCtrl-E"));
paneMenu->AppendSeparator();
- paneMenu->Append(PANE_SETLABEL, _T("Set label...\tCtrl-S"));
+ paneMenu->Append(PANE_SETLABEL, _T("Set label...\tCtrl-L"));
paneMenu->AppendSeparator();
paneMenu->Append(PANE_SHOWDLG, _T("Show dialog...\tCtrl-S"));
paneMenu->AppendSeparator();
paneMenu->Append(PANE_QUIT);
+ wxMenu *helpMenu = new wxMenu;
+ helpMenu->Append(PANE_ABOUT);
+
wxMenuBar *menuBar = new wxMenuBar;
menuBar->Append(paneMenu, _T("&Pane"));
+ menuBar->Append(helpMenu, _T("&Help"));
SetMenuBar(menuBar);
m_collPane = new wxCollapsiblePane(this, -1, wxT("test!"));
void MyFrame::OnSetLabel(wxCommandEvent& WXUNUSED(event) )
{
- wxString text = wxGetTextFromUser(wxT("Input the new label"));
+ wxString text = wxGetTextFromUser
+ (
+ wxT("Enter new label"),
+ wxGetTextFromUserPromptStr,
+ m_collPane->GetLabel()
+ );
m_collPane->SetLabel(text);
}
dlg.ShowModal();
}
-void MyFrame::UpdateUI(wxUpdateUIEvent& event)
+void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
+{
+ wxAboutDialogInfo info;
+ info.SetName(_("wxCollapsiblePane sample"));
+ info.SetDescription(_("This sample program demonstrates usage of wxCollapsiblePane"));
+ info.SetCopyright(_T("(C) 2006 Francesco Montorsi <frm@users.sourceforge.net>"));
+
+ wxAboutBox(info);
+}
+
+void MyFrame::OnCollapseUpdateUI(wxUpdateUIEvent& event)
+{
+ event.Enable(!m_collPane->IsCollapsed());
+}
+
+void MyFrame::OnExpandUpdateUI(wxUpdateUIEvent& event)
{
- GetMenuBar()->Enable(PANE_COLLAPSE, !m_collPane->IsCollapsed());
- GetMenuBar()->Enable(PANE_EXPAND, m_collPane->IsCollapsed());
+ event.Enable(m_collPane->IsCollapsed());
}
+
// ----------------------------------------------------------------------------
// MyDialog
// ----------------------------------------------------------------------------
BEGIN_EVENT_TABLE(MyDialog, wxDialog)
EVT_BUTTON(PANEDLG_TOGGLESTATUS_BTN, MyDialog::OnToggleStatus)
+ EVT_COLLAPSIBLEPANE_CHANGED(wxID_ANY, MyDialog::OnPaneChanged)
END_EVENT_TABLE()
MyDialog::MyDialog(wxFrame *parent)
wxRESIZE_BORDER|wxDEFAULT_DIALOG_STYLE )
{
wxSizer *sz = new wxBoxSizer(wxVERTICAL);
- sz->Add(new wxStaticText(this, -1,
+ sz->Add(new wxStaticText(this, -1,
wxT("This dialog allows you to test the wxCollapsiblePane control")),
0, wxALL, 5);
- sz->Add(new wxButton(this, PANEDLG_TOGGLESTATUS_BTN, wxT("Change status")),
+ sz->Add(new wxButton(this, PANEDLG_TOGGLESTATUS_BTN, wxT("Change status")),
1, wxGROW|wxALL, 5);
-
+
m_collPane = new wxCollapsiblePane(this, -1, wxT("Click here for a surprise"));
- sz->Add(m_collPane, 1, wxGROW|wxALL, 5);
+ sz->Add(m_collPane, 0, wxGROW|wxALL, 5);
sz->Add(new wxTextCtrl(this, -1, wxT("just a test")), 0, wxGROW|wxALL, 5);
sz->AddSpacer(10);
sz->Add(new wxButton(this, wxID_OK), 0, wxALIGN_RIGHT|wxALL, 5);
m_collPane->Collapse(!m_collPane->IsCollapsed());
}
+void MyDialog::OnPaneChanged(wxCollapsiblePaneEvent &event)
+{
+ wxLogDebug(wxT("The pane has just been %s by the user"),
+ event.GetCollapsed() ? wxT("collapsed") : wxT("expanded"));
+}
+