X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aec18ff785687e1d0830da8cd287903128a994c6..33d8353fa58dbc66fc9d22fcd510ded6b26ce719:/samples/joytest/joytest.h diff --git a/samples/joytest/joytest.h b/samples/joytest/joytest.h index 754179f1f3..1589707306 100644 --- a/samples/joytest/joytest.h +++ b/samples/joytest/joytest.h @@ -5,8 +5,8 @@ // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // Define a new application @@ -16,12 +16,14 @@ public: bool OnInit(); // Joystick max values + int m_minX; + int m_minY; int m_maxX; int m_maxY; -#if wxUSE_WAVE - wxWave m_fire; -#endif // wxUSE_WAVE +#if wxUSE_SOUND + wxSound m_fire; +#endif // wxUSE_SOUND }; DECLARE_APP(MyApp) @@ -33,6 +35,7 @@ public: ~MyCanvas(); void OnJoystickEvent(wxJoystickEvent& event); + wxJoystick* m_stick; DECLARE_EVENT_TABLE() }; @@ -42,7 +45,7 @@ public: MyCanvas *canvas; MyFrame(wxFrame *parent, const wxString& title, const wxPoint& pos, const wxSize& size, const long style); - ~MyFrame(); + ~MyFrame(){}; void OnActivate(wxActivateEvent& event); void OnQuit(wxCommandEvent& event);