]>
git.saurik.com Git - wxWidgets.git/blob - samples/opengl/isosurf/isosurf.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGLCanvas demo program
4 // Author: Brian Paul (original gltk version), Wolfram Gloger
5 // Modified by: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_ISOSURF_H_
13 #define _WX_ISOSURF_H_
15 // Define a new application type
16 class MyApp
: public wxApp
22 class TestGLCanvas
: public wxGLCanvas
25 TestGLCanvas(wxWindow
*parent
, const wxWindowID id
= -1, const wxPoint
& pos
= wxDefaultPosition
,
26 const wxSize
& size
= wxDefaultSize
, long style
= 0, const wxString
& name
= _T("TestGLCanvas"),
27 int* gl_attrib
= NULL
);
30 void OnPaint(wxPaintEvent
& event
);
31 void OnSize(wxSizeEvent
& event
);
32 void OnEraseBackground(wxEraseEvent
& event
);
33 void OnChar(wxKeyEvent
& event
);
34 void OnMouseEvent(wxMouseEvent
& event
);
40 class MyFrame
: public wxFrame
43 MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
,
44 long style
= wxDEFAULT_FRAME_STYLE
);
46 void OnExit(wxCommandEvent
& event
);
49 TestGLCanvas
* m_canvas
;