X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6aa89a22b8e47000c98bff05c6f545f331f1c353..64c1effefabacc175cf601ea4118f3b806a1fd65:/samples/joytest/joytest.h diff --git a/samples/joytest/joytest.h b/samples/joytest/joytest.h index bbe8c582a4..0c50e66e62 100644 --- a/samples/joytest/joytest.h +++ b/samples/joytest/joytest.h @@ -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);