patch from Dimitri fixing a few memory leaks and unTABbing the sources
[wxWidgets.git] / samples / opengl / isosurf / isosurf.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: isosurf.h
3 // Purpose: wxGLCanvas demo program
4 // Author: Brian Paul (original gltk version), Wolfram Gloger
5 // Modified by: Julian Smart
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_ISOSURF_H_
13 #define _WX_ISOSURF_H_
14
15 // Define a new application type
16 class MyApp: public wxApp
17 { public:
18 bool OnInit(void);
19 };
20
21 class TestGLCanvas: public wxGLCanvas
22 {
23 public:
24 TestGLCanvas(wxWindow *parent, const wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition,
25 const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "TestGLCanvas",
26 int* gl_attrib = NULL);
27 ~TestGLCanvas(void);
28
29 void OnPaint(wxPaintEvent& event);
30 void OnSize(wxSizeEvent& event);
31 void OnEraseBackground(wxEraseEvent& event);
32 void OnChar(wxKeyEvent& event);
33 void OnMouseEvent(wxMouseEvent& event);
34
35 DECLARE_EVENT_TABLE()
36 };
37
38 class MyFrame: public wxFrame
39 {
40 public:
41 MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size,
42 long style = wxDEFAULT_FRAME_STYLE);
43
44 void OnExit(wxCommandEvent& event);
45 public:
46 TestGLCanvas* m_canvas;
47
48 DECLARE_EVENT_TABLE()
49 };
50
51 #endif
52