X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6aa89a22b8e47000c98bff05c6f545f331f1c353..1a19b3210d97b2c8ad8f3621334cdcd99d5e172a:/samples/joytest/joytest.h diff --git a/samples/joytest/joytest.h b/samples/joytest/joytest.h index bbe8c582a4..1589707306 100644 --- a/samples/joytest/joytest.h +++ b/samples/joytest/joytest.h @@ -6,7 +6,7 @@ // Created: 04/01/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows license +// 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);