r2088: *** empty log message ***
[ctsim.git] / src / graph3dview.h
index 44adb86c4bc51da0317c98eb8654f0e1648d35f4..90b6d44191f1df25788af53b65c1e2f666a8997e 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: graph3dview.h,v 1.7 2001/03/18 18:08:26 kevin Exp $
+**  $Id: graph3dview.h,v 1.9 2002/05/28 18:43:16 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
@@ -39,7 +39,7 @@
 class Graph3dFileCanvas;
 class Graph3dFileView : public wxView 
 {
-  friend Graph3dFileCanvas;
+  friend class Graph3dFileCanvas;
 
 private:
   DECLARE_DYNAMIC_CLASS(Graph3dFileView)   
@@ -56,7 +56,7 @@ private:
   bool m_bDoubleBuffer;
   bool m_bSmooth;
   bool m_bLighting;
-  bool m_bSurface;
+  bool m_bWireframe;
   bool m_bColor;
   enum {
     DISPLAYLIST_COLOR = 1,
@@ -69,7 +69,6 @@ private:
   double m_dColorScaleMax;
   bool m_bColorScaleMinSet;
   bool m_bColorScaleMaxSet;
-  bool m_bCalculatedSurfaceBackground;
 
   void Draw();
   void DrawSurface();
@@ -109,14 +108,13 @@ public:
   bool OnClose (bool deleteWindow = true);
   void OnProperties (wxCommandEvent& event);
   void OnLighting (wxCommandEvent& event);
-  void OnSurface (wxCommandEvent& event);
+  void OnWireframe (wxCommandEvent& event);
   void OnColor (wxCommandEvent& event);
   void OnSmooth (wxCommandEvent& event);
   void OnScaleSet (wxCommandEvent& event);
   void OnScaleAuto (wxCommandEvent& event);
   void OnScaleFull (wxCommandEvent& event);
-  void calculateSurfaceBackground();
-
+  
 #if CTSIM_MDI
   wxDocMDIChildFrame* getFrame() { return m_pFrame; }
 #else