X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fgraph3dview.h;h=f5ae3e4afc19f78ecb175cb2ef0b384c2897269b;hb=9ff5b5165b2c8871bd4b29ccd5ca794638414615;hp=1cb68cf48d8d341ba94ee485728ca1e793087c25;hpb=f692b2d39f56ffbafc04283f32233c098aa2978b;p=ctsim.git diff --git a/src/graph3dview.h b/src/graph3dview.h index 1cb68cf..f5ae3e4 100644 --- a/src/graph3dview.h +++ b/src/graph3dview.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: graph3dview.h,v 1.3 2001/02/02 00:46:38 kevin Exp $ +** $Id: graph3dview.h,v 1.6 2001/02/04 22:58:41 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 @@ -47,7 +47,7 @@ private: wxMenu* m_pFileMenu; wxMenu *m_pViewMenu; - wxStatusBar m_statusBar; + wxStatusBar* m_pStatusBar; GLfloat m_dXRotate; GLfloat m_dYRotate; @@ -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; } @@ -119,7 +135,7 @@ private: public: Graph3dFileCanvas (Graph3dFileView* view, wxWindow *parent, const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, long style = 0, int* gl_attrib = NULL); + const wxSize& size = wxDefaultSize, long style = 0); virtual ~Graph3dFileCanvas(); virtual void OnDraw(wxDC& dc);