]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/joytest/joytest.cpp
Fix centering of top-level children of wxMDIParentFrame on Mac
[wxWidgets.git] / samples / joytest / joytest.cpp
index 3e99d2349606ce3f17033ba9b5ac82a679ec5de9..ea875654998ab4a72449858eca9004803c4f569e 100644 (file)
 #   error You must set wxUSE_JOYSTICK to 1 in setup.h
 #endif
 
-#if !wxUSE_STATUSBAR
-#   error You must set wxUSE_STATUSBAR to 1 in setup.h
-#endif
-
 #include "wx/sound.h"
 #include "wx/joystick.h"
 
@@ -87,7 +83,9 @@ bool MyApp::OnInit()
     // Associate the menu bar with the frame
     frame->SetMenuBar(menu_bar);
 
+#if wxUSE_STATUSBAR
     frame->CreateStatusBar();
+#endif // wxUSE_STATUSBAR
 
     frame->CenterOnScreen();
     frame->Show(true);
@@ -134,7 +132,7 @@ void MyCanvas::OnJoystickEvent(wxJoystickEvent& event)
         ymax += abs(ymin);
         pt.y += abs(ymin);
     }
-    
+
     // Scale to canvas size
     int cw, ch;
     GetSize(&cw, &ch);
@@ -151,6 +149,7 @@ void MyCanvas::OnJoystickEvent(wxJoystickEvent& event)
     xpos = pt.x;
     ypos = pt.y;
 
+#if wxUSE_STATUSBAR
     wxString buf;
     if (event.ButtonDown())
         buf.Printf(_T("Joystick (%d, %d) Fire!"), pt.x, pt.y);
@@ -158,6 +157,7 @@ void MyCanvas::OnJoystickEvent(wxJoystickEvent& event)
         buf.Printf(_T("Joystick (%d, %d)"), pt.x, pt.y);
 
     frame->SetStatusText(buf);
+#endif // wxUSE_STATUSBAR
 
 #if wxUSE_SOUND
     if (event.ButtonDown() && wxGetApp().m_fire.IsOk())
@@ -178,11 +178,6 @@ MyFrame::MyFrame(wxFrame *parent, const wxString& title, const wxPoint& pos,
     canvas = new MyCanvas(this);
 }
 
-MyFrame::~MyFrame()
-{
-    // Empty
-}
-
 void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
 {
     Close(true);