added test for changing toolbar on the fly

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3678 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-09-15 16:15:50 +00:00
parent 93840b31b9
commit 7fb233050c
2 changed files with 148 additions and 101 deletions

View File

@@ -11,42 +11,52 @@
// Define a new application
class MyApp: public wxApp
{
public:
bool OnInit(void);
bool InitToolbar(wxToolBar* toolBar);
};
class MyTimer : public wxTimer
{
public:
MyTimer(wxFrame *frame) { m_frame = frame; }
virtual void Notify() { wxLogStatus(m_frame, _T("Timer arrived!") ); }
private:
wxFrame *m_frame;
bool OnInit();
bool InitToolbar(wxToolBar* toolBar, bool small = FALSE);
};
// Define a new frame
class MyFrame: public wxFrame
{
public:
MyFrame(wxFrame *parent, wxWindowID id = -1, const wxString& title = "wxToolBar Sample",
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_FRAME_STYLE);
MyFrame(wxFrame *parent,
wxWindowID id = -1,
const wxString& title = "wxToolBar Sample",
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_FRAME_STYLE);
void OnCloseWindow(wxCloseEvent& event);
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void OnToggleToolbar(wxCommandEvent& event);
void OnEnablePrint(wxCommandEvent& event) { DoEnablePrint(); }
void OnToggleHelp(wxCommandEvent& event) { DoToggleHelp(); }
void OnToolLeftClick(wxCommandEvent& event);
void OnToolEnter(wxCommandEvent& event);
private:
void DoEnablePrint();
void DoToggleHelp();
bool m_smallToolbar;
wxTextCtrl* m_textWindow;
DECLARE_EVENT_TABLE()
};
#define ID_TOOLBAR 500
// ----------------------------------------------------------------------------
// constants
// ----------------------------------------------------------------------------
const int ID_TOOLBAR = 500;
enum
{
IDM_TOOLBAR_TOGGLETOOLBAR = 200,
IDM_TOOLBAR_ENABLEPRINT,
IDM_TOOLBAR_TOGGLEHELP
};