r473: no message
[ctsim.git] / src / graph3dview.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          graph3dview.h
5 **   Purpose:       Header file for 3d graph view
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  Jan 2001
8 **
9 **  This is part of the CTSim program
10 **  Copyright (c) 1983-2001 Kevin Rosenberg
11 **
12 **  $Id: graph3dview.h,v 1.2 2001/01/30 10:58:13 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 #if !wxUSE_GLCANVAS
29 #error Please set wxUSE_GLCANVAS to 1 in setup.h.
30 #endif
31
32 #include "wx/timer.h"
33 #include "wx/glcanvas.h"
34
35 #include <GL/gl.h>
36 #include <GL/glu.h>
37
38
39 class Graph3dFileCanvas;
40 class Graph3dFileView : public wxView 
41 {
42   friend Graph3dFileCanvas;
43
44 private:
45   DECLARE_DYNAMIC_CLASS(Graph3dFileView)   
46   DECLARE_EVENT_TABLE()
47    
48   wxMenu* m_pFileMenu;
49   GLfloat m_dXRotate;
50   GLfloat m_dYRotate;
51   GLboolean m_bUseVertexArrays;
52   GLboolean m_bDoubleBuffer;
53   GLboolean m_bSmooth;
54   GLboolean m_bLighting;
55
56   void Draw();
57   void DrawSurface();
58   void InitMaterials();
59   void InitGL();
60
61   Graph3dFileCanvas* m_pCanvas;
62   Graph3dFileCanvas *CreateCanvas (wxFrame* parent);
63
64 #if CTSIM_MDI
65   wxDocMDIChildFrame* m_pFrame;
66   wxDocMDIChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
67 #else
68   wxDocChildFrame* m_pFrame;
69   wxDocChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
70 #endif
71
72   wxWindow* getFrameForChild() 
73 #if CTSIM_MDI
74   { return theApp->getMainFrame(); }
75 #else
76   { return m_pFrame; }
77 #endif
78
79 public:
80   Graph3dFileView();
81   virtual ~Graph3dFileView();
82   void canvasClosed()
83   { m_pCanvas = NULL; m_pFrame = NULL; }
84
85   bool OnCreate(wxDocument *doc, long flags);
86   void OnDraw(wxDC* dc);
87   void OnUpdate(wxView *sender, wxObject *hint = NULL);
88   bool OnClose (bool deleteWindow = true);
89   void OnProperties (wxCommandEvent& event);
90
91 #if CTSIM_MDI
92   wxDocMDIChildFrame* getFrame() { return m_pFrame; }
93 #else
94   wxDocChildFrame* getFrame() { return m_pFrame; }
95 #endif
96
97   Graph3dFileDocument* GetDocument() 
98   { return dynamic_cast<Graph3dFileDocument*>(wxView::GetDocument()); }
99 };
100
101
102 class Graph3dFileCanvas: public wxGLCanvas
103 {
104 private:
105   DECLARE_EVENT_TABLE()
106
107   void Reshape (int width, int height);
108   Graph3dFileView* m_pView;
109
110 public:
111    Graph3dFileCanvas (Graph3dFileView* view, wxWindow *parent, const wxPoint& pos = wxDefaultPosition,
112       const wxSize& size = wxDefaultSize, long style = 0, int* gl_attrib = NULL);
113    virtual ~Graph3dFileCanvas();
114
115    virtual void OnDraw(wxDC& dc);
116    void OnSize(wxSizeEvent& event);
117    void OnEraseBackground(wxEraseEvent& event);
118    void OnChar(wxKeyEvent& event);
119    void OnMouseEvent(wxMouseEvent& event);
120    void setView (Graph3dFileView* pView)  { m_pView = pView; }
121 };