Patch [ 584078 ] Misc samples fixes from Dimitri Schoolwerth
[wxWidgets.git] / samples / joytest / joytest.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: joytest.cpp
3 // Purpose: Joystick sample
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // Define a new application
13 class MyApp: public wxApp
14 {
15 public:
16 bool OnInit();
17
18 // Joystick max values
19 int m_maxX;
20 int m_maxY;
21
22 #if wxUSE_WAVE
23 wxWave m_fire;
24 #endif // wxUSE_WAVE
25 };
26
27 DECLARE_APP(MyApp)
28
29 class MyCanvas: public wxScrolledWindow
30 {
31 public:
32 MyCanvas(wxWindow *parent, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
33 ~MyCanvas();
34 void OnJoystickEvent(wxJoystickEvent& event);
35
36 DECLARE_EVENT_TABLE()
37 };
38
39 class MyFrame: public wxFrame
40 {
41 public:
42 MyCanvas *canvas;
43 MyFrame(wxFrame *parent, const wxString& title,
44 const wxPoint& pos, const wxSize& size, const long style);
45 ~MyFrame();
46 void OnActivate(wxActivateEvent& event);
47 void OnQuit(wxCommandEvent& event);
48
49 DECLARE_EVENT_TABLE()
50 };
51
52 #define JOYTEST_QUIT 1