]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/opengl/cube/cube.h
Make wxGraphicsContext::GetSize() const.
[wxWidgets.git] / samples / opengl / cube / cube.h
index 36769b884f84c87e33e3a429d0e3afe17d942295..3aa6539ebe1931d6dda5c84abb0fcdec2ac6eb13 100644 (file)
@@ -67,12 +67,16 @@ public:
 
 private:
     void OnPaint(wxPaintEvent& event);
+    void Spin(float xSpin, float ySpin);
     void OnKeyDown(wxKeyEvent& event);
+    void OnSpinTimer(wxTimerEvent& WXUNUSED(event));
 
     // angles of rotation around x- and y- axis
     float m_xangle,
           m_yangle;
 
+    wxTimer m_spinTimer;
+
     DECLARE_EVENT_TABLE()
 };