]>
git.saurik.com Git - wxWidgets.git/blob - utils/glcanvas/samples/cube/cube.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGLCanvas demo program
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
17 // Define a new application type
18 class MyApp
: public wxApp
24 // Define a new frame type
26 class MyFrame
: public wxFrame
29 MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
,
30 long style
= wxDEFAULT_FRAME_STYLE
);
32 void OnExit(wxCommandEvent
& event
);
35 TestGLCanvas
* m_canvas
;
40 class TestGLCanvas
: public wxGLCanvas
43 TestGLCanvas(wxWindow
*parent
, const wxWindowID id
= -1, const wxPoint
& pos
= wxDefaultPosition
,
44 const wxSize
& size
= wxDefaultSize
, long style
= 0, const wxString
& name
= "TestGLCanvas");
47 void OnPaint(wxPaintEvent
& event
);
48 void OnSize(wxSizeEvent
& event
);
49 void OnEraseBackground(wxEraseEvent
& event
);