1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindows sample demonstrating different event usage
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 // DO NOT use event.cpp here, it breaks statics initialization in
22 // src/common/event.cpp and nothing works at all then!
23 #pragma implementation "eventsample.cpp"
24 #pragma interface "eventsample.cpp"
27 // For compilers that support precompilation, includes "wx/wx.h".
28 #include "wx/wxprec.h"
34 // for all others, include the necessary headers (this file is usually all you
35 // need because it includes almost all "standard" wxWindows headers)
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 // declare a custom event type
46 // note that in wxWin 2.3+ these macros expand simply into the following code:
48 // extern const wxEventType wxEVT_MY_CUSTOM_COMMAND;
50 // const wxEventType wxEVT_MY_CUSTOM_COMMAND = wxNewEventType();
52 // and you may use this code directly if you don't care about 2.2 compatibility
53 BEGIN_DECLARE_EVENT_TYPES()
54 DECLARE_EVENT_TYPE(wxEVT_MY_CUSTOM_COMMAND
, 7777)
55 END_DECLARE_EVENT_TYPES()
57 DEFINE_EVENT_TYPE(wxEVT_MY_CUSTOM_COMMAND
)
59 // it may also be convenient to define an event table macro for this event type
60 #define EVT_MY_CUSTOM_COMMAND(id, fn) \
61 DECLARE_EVENT_TABLE_ENTRY( \
62 wxEVT_MY_CUSTOM_COMMAND, id, -1, \
63 (wxObjectEventFunction)(wxEventFunction)(wxCommandEventFunction)&fn, \
67 // ----------------------------------------------------------------------------
69 // ----------------------------------------------------------------------------
71 // Define a new application type, each program should derive a class from wxApp
72 class MyApp
: public wxApp
75 // override base class virtuals
76 // ----------------------------
78 // this one is called on application startup and is a good place for the app
79 // initialization (doing it here and not in the ctor allows to have an error
80 // return: if OnInit() returns false, the application terminates)
81 virtual bool OnInit();
84 // Define a new frame type: this is going to be our main frame
85 class MyFrame
: public wxFrame
89 MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
);
92 void OnQuit(wxCommandEvent
& event
);
93 void OnAbout(wxCommandEvent
& event
);
94 void OnConnect(wxCommandEvent
& event
);
95 void OnDynamic(wxCommandEvent
& event
);
96 void OnPushEventHandler(wxCommandEvent
& event
);
97 void OnPopEventHandler(wxCommandEvent
& event
);
98 void OnTest(wxCommandEvent
& event
);
100 void OnFireCustom(wxCommandEvent
& event
);
101 void OnProcessCustom(wxCommandEvent
& event
);
103 void OnUpdateUIPop(wxUpdateUIEvent
& event
);
106 // number of pushed event handlers
110 // any class wishing to process wxWindows events must use this macro
111 DECLARE_EVENT_TABLE()
114 // Define a custom event handler
115 class MyEvtHandler
: public wxEvtHandler
118 MyEvtHandler(size_t level
) { m_level
= level
; }
120 void OnTest(wxCommandEvent
& event
)
122 wxLogMessage(_T("This is the pushed test event handler #%u"), m_level
);
124 // if we don't skip the event, the other event handlers won't get it:
125 // try commenting out this line and see what changes
132 DECLARE_EVENT_TABLE()
135 // ----------------------------------------------------------------------------
137 // ----------------------------------------------------------------------------
139 // IDs for the controls and the menu commands
161 // ----------------------------------------------------------------------------
162 // event tables and other macros for wxWindows
163 // ----------------------------------------------------------------------------
165 // the event tables connect the wxWindows events with the functions (event
166 // handlers) which process them. It can be also done at run-time, but for the
167 // simple menu events like this the static method is much simpler.
168 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
169 EVT_MENU(Event_Quit
, MyFrame::OnQuit
)
170 EVT_MENU(Event_About
, MyFrame::OnAbout
)
172 EVT_MENU(Event_Connect
, MyFrame::OnConnect
)
174 EVT_MENU(Event_Custom
, MyFrame::OnFireCustom
)
175 EVT_MENU(Event_Test
, MyFrame::OnTest
)
176 EVT_MENU(Event_Push
, MyFrame::OnPushEventHandler
)
177 EVT_MENU(Event_Pop
, MyFrame::OnPopEventHandler
)
179 EVT_UPDATE_UI(Event_Pop
, MyFrame::OnUpdateUIPop
)
181 EVT_MY_CUSTOM_COMMAND(-1, MyFrame::OnProcessCustom
)
184 BEGIN_EVENT_TABLE(MyEvtHandler
, wxEvtHandler
)
185 EVT_MENU(Event_Test
, MyEvtHandler::OnTest
)
188 // Create a new application object: this macro will allow wxWindows to create
189 // the application object during program execution (it's better than using a
190 // static object for many reasons) and also declares the accessor function
191 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
195 // ============================================================================
197 // ============================================================================
199 // ----------------------------------------------------------------------------
200 // the application class
201 // ----------------------------------------------------------------------------
203 // 'Main program' equivalent: the program execution "starts" here
206 // create the main application window
207 MyFrame
*frame
= new MyFrame(_T("Event wxWindows Sample"),
208 wxPoint(50, 50), wxSize(600, 340));
210 // and show it (the frames, unlike simple controls, are not shown when
211 // created initially)
214 // success: wxApp::OnRun() will be called which will enter the main message
215 // loop and the application will run. If we returned FALSE here, the
216 // application would exit immediately.
220 // ----------------------------------------------------------------------------
222 // ----------------------------------------------------------------------------
225 MyFrame::MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
)
226 : wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
)
232 wxMenu
*menuFile
= new wxMenu
;
234 menuFile
->Append(Event_About
, _T("&About...\tCtrl-A"), _T("Show about dialog"));
235 menuFile
->AppendSeparator();
236 menuFile
->Append(Event_Quit
, _T("E&xit\tAlt-X"), _T("Quit this program"));
238 wxMenu
*menuEvent
= new wxMenu
;
239 menuEvent
->Append(Event_Connect
, _T("&Connect\tCtrl-C"),
240 _T("Connect or disconnect the dynamic event handler"),
241 TRUE
/* checkable */);
242 menuEvent
->Append(Event_Dynamic
, _T("&Dynamic event\tCtrl-D"),
243 _T("Dynamic event sample - only works after Connect"));
244 menuEvent
->AppendSeparator();
245 menuEvent
->Append(Event_Push
, _T("&Push event handler\tCtrl-P"),
246 _T("Push event handler for test event"));
247 menuEvent
->Append(Event_Pop
, _T("P&op event handler\tCtrl-O"),
248 _T("Pop event handler for test event"));
249 menuEvent
->Append(Event_Test
, _T("Test event\tCtrl-T"),
250 _T("Test event processed by pushed event handler"));
251 menuEvent
->AppendSeparator();
252 menuEvent
->Append(Event_Custom
, _T("Fire c&ustom event\tCtrl-U"),
253 _T("Generate a custom event"));
255 // now append the freshly created menu to the menu bar...
256 wxMenuBar
*menuBar
= new wxMenuBar();
257 menuBar
->Append(menuFile
, _T("&File"));
258 menuBar
->Append(menuEvent
, _T("&Event"));
260 // ... and attach this menu bar to the frame
265 SetStatusText(_T("Welcome to wxWindows event sample"));
266 SetStatusText(_T("Dynamic: off"), Status_Dynamic
);
267 SetStatusText(_T("Push count: 0"), Status_Push
);
268 #endif // wxUSE_STATUSBAR
273 // we must pop any remaining event handlers to avoid memory leaks and
275 while ( m_nPush
-- != 0 )
277 PopEventHandler(TRUE
/* delete handler */);
281 // ----------------------------------------------------------------------------
282 // standard event handlers
283 // ----------------------------------------------------------------------------
285 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
287 // TRUE is to force the frame to close
291 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
293 wxMessageBox(_T("Event sample shows different ways of using events\n"
294 "© 2001 Vadim Zeitlin"),
295 _T("About Event Sample"), wxOK
| wxICON_INFORMATION
, this);
298 // ----------------------------------------------------------------------------
299 // dynamic event handling stuff
300 // ----------------------------------------------------------------------------
302 void MyFrame::OnDynamic(wxCommandEvent
& WXUNUSED(event
))
304 wxMessageBox(_T("This is a dynamic event handler which can be connected "
305 "and disconnected during run-time."),
306 _T("Dynamic Event Handler"), wxOK
| wxICON_INFORMATION
, this);
309 void MyFrame::OnConnect(wxCommandEvent
& event
)
311 if ( event
.IsChecked() )
314 Connect(Event_Dynamic
, -1, wxEVT_COMMAND_MENU_SELECTED
,
315 (wxObjectEventFunction
)
317 (wxCommandEventFunction
)&MyFrame::OnDynamic
);
319 SetStatusText(_T("You can now use \"Dynamic\" item in the menu"));
320 SetStatusText(_T("Dynamic: on"), Status_Dynamic
);
324 Disconnect(Event_Dynamic
, -1, wxEVT_COMMAND_MENU_SELECTED
);
326 SetStatusText(_T("You can no more use \"Dynamic\" item in the menu"));
327 SetStatusText(_T("Dynamic: off"), Status_Dynamic
);
331 // ----------------------------------------------------------------------------
332 // push/pop event handlers support
333 // ----------------------------------------------------------------------------
335 void MyFrame::OnPushEventHandler(wxCommandEvent
& WXUNUSED(event
))
337 PushEventHandler(new MyEvtHandler(++m_nPush
));
339 SetStatusText(wxString::Format(_T("Push count: %u"), m_nPush
), Status_Push
);
342 void MyFrame::OnPopEventHandler(wxCommandEvent
& WXUNUSED(event
))
344 wxCHECK_RET( m_nPush
, _T("this command should be disabled!") );
346 PopEventHandler(TRUE
/* delete handler */);
349 SetStatusText(wxString::Format(_T("Push count: %u"), m_nPush
), Status_Push
);
352 void MyFrame::OnTest(wxCommandEvent
& event
)
354 wxLogMessage(_T("This is the test event handler in the main frame"));
357 void MyFrame::OnUpdateUIPop(wxUpdateUIEvent
& event
)
359 event
.Enable( m_nPush
> 0 );
362 // ----------------------------------------------------------------------------
363 // custom event methods
364 // ----------------------------------------------------------------------------
366 void MyFrame::OnFireCustom(wxCommandEvent
& event
)
368 wxCommandEvent
eventCustom(wxEVT_MY_CUSTOM_COMMAND
);
370 wxPostEvent(this, eventCustom
);
373 void MyFrame::OnProcessCustom(wxCommandEvent
& event
)
375 wxLogMessage(_T("Got a custom event!"));