r486: no message
[ctsim.git] / src / graph3dview.h
index ed438154ce9c6f4f296b1cf1dd5e3118af17d1a5..702309e19edbe9c31365e1c2571800d423ee7833 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: graph3dview.h,v 1.4 2001/02/02 23:04:06 kevin Exp $
+**  $Id: graph3dview.h,v 1.5 2001/02/04 21:28:19 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -58,9 +58,20 @@ private:
   bool m_bLighting;
   bool m_bSurface;
   bool m_bColor;
+  enum {
+    DISPLAYLIST_SURFACE = 1,
+  };
+
+  double m_dGraphMin;
+  double m_dGraphMax;
+  double m_dColorScaleMin;
+  double m_dColorScaleMax;
+  bool m_bColorScaleMinSet;
+  bool m_bColorScaleMaxSet;
 
   void Draw();
   void DrawSurface();
+  void CreateDisplayList();
   void InitMaterials();
   void InitGL();
 
@@ -82,6 +93,8 @@ private:
   { return m_pFrame; }
 #endif
 
+  void intensityToColor (double dIntensity, GLfloat* vecColor);
+
 public:
   Graph3dFileView();
   virtual ~Graph3dFileView();
@@ -97,6 +110,9 @@ public:
   void OnSurface (wxCommandEvent& event);
   void OnColor (wxCommandEvent& event);
   void OnSmooth (wxCommandEvent& event);
+  void OnScaleSet (wxCommandEvent& event);
+  void OnScaleAuto (wxCommandEvent& event);
+  void OnScaleFull (wxCommandEvent& event);
 
 #if CTSIM_MDI
   wxDocMDIChildFrame* getFrame() { return m_pFrame; }