f5ae3e4afc19f78ecb175cb2ef0b384c2897269b
[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.6 2001/02/04 22:58:41 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   wxMenu *m_pViewMenu;
50   wxStatusBar* m_pStatusBar;
51
52   GLfloat m_dXRotate;
53   GLfloat m_dYRotate;
54   GLfloat m_dZRotate;
55   bool m_bUseVertexArrays;
56   bool m_bDoubleBuffer;
57   bool m_bSmooth;
58   bool m_bLighting;
59   bool m_bSurface;
60   bool m_bColor;
61   enum {
62     DISPLAYLIST_SURFACE = 1,
63   };
64
65   double m_dGraphMin;
66   double m_dGraphMax;
67   double m_dColorScaleMin;
68   double m_dColorScaleMax;
69   bool m_bColorScaleMinSet;
70   bool m_bColorScaleMaxSet;
71
72   void Draw();
73   void DrawSurface();
74   void CreateDisplayList();
75   void InitMaterials();
76   void InitGL();
77
78   Graph3dFileCanvas* m_pCanvas;
79   Graph3dFileCanvas *CreateCanvas (wxFrame* parent);
80
81 #if CTSIM_MDI
82   wxDocMDIChildFrame* m_pFrame;
83   wxDocMDIChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
84 #else
85   wxDocChildFrame* m_pFrame;
86   wxDocChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
87 #endif
88
89   wxWindow* getFrameForChild() 
90 #if CTSIM_MDI
91   { return theApp->getMainFrame(); }
92 #else
93   { return m_pFrame; }
94 #endif
95
96   void intensityToColor (double dIntensity, GLfloat* vecColor);
97
98 public:
99   Graph3dFileView();
100   virtual ~Graph3dFileView();
101   void canvasClosed()
102   { m_pCanvas = NULL; m_pFrame = NULL; }
103
104   bool OnCreate(wxDocument *doc, long flags);
105   void OnDraw(wxDC* dc);
106   void OnUpdate(wxView *sender, wxObject *hint = NULL);
107   bool OnClose (bool deleteWindow = true);
108   void OnProperties (wxCommandEvent& event);
109   void OnLighting (wxCommandEvent& event);
110   void OnSurface (wxCommandEvent& event);
111   void OnColor (wxCommandEvent& event);
112   void OnSmooth (wxCommandEvent& event);
113   void OnScaleSet (wxCommandEvent& event);
114   void OnScaleAuto (wxCommandEvent& event);
115   void OnScaleFull (wxCommandEvent& event);
116
117 #if CTSIM_MDI
118   wxDocMDIChildFrame* getFrame() { return m_pFrame; }
119 #else
120   wxDocChildFrame* getFrame() { return m_pFrame; }
121 #endif
122   Graph3dFileCanvas* getCanvas() { return m_pCanvas; }
123   Graph3dFileDocument* GetDocument() 
124   { return dynamic_cast<Graph3dFileDocument*>(wxView::GetDocument()); }
125 };
126
127
128 class Graph3dFileCanvas: public wxGLCanvas
129 {
130 private:
131   DECLARE_EVENT_TABLE()
132
133   void Reshape (int width, int height);
134   Graph3dFileView* m_pView;
135
136 public:
137    Graph3dFileCanvas (Graph3dFileView* view, wxWindow *parent, const wxPoint& pos = wxDefaultPosition,
138       const wxSize& size = wxDefaultSize, long style = 0);
139    virtual ~Graph3dFileCanvas();
140
141    virtual void OnDraw(wxDC& dc);
142    void OnSize(wxSizeEvent& event);
143    void OnEraseBackground(wxEraseEvent& event);
144    void OnChar(wxKeyEvent& event);
145    void OnMouseEvent(wxMouseEvent& event);
146    void setView (Graph3dFileView* pView)  { m_pView = pView; }
147 };