r471: Fixed shutdown crash, added Revert
[ctsim.git] / src / ctsim.h
index 9c4278f1e01ef19844993fe916e4c4d9e451ebc5..a2b0b7fd87e2b4782db99d9e13bd157dd68c28af 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: ctsim.h,v 1.34 2001/01/29 00:42:26 kevin Exp $
+**  $Id: ctsim.h,v 1.36 2001/01/30 05:05: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
@@ -84,8 +84,10 @@ private:
   DECLARE_CLASS(MainFrame)
   DECLARE_EVENT_TABLE()
 
+#ifndef CTSIM_MDI
   wxMenu* m_pWindowMenu;
-  
+#endif
+
   enum { MAX_WINDOW_MENUITEMS = 20 };
   wxMenuItem* m_apWindowMenuItems[MAX_WINDOW_MENUITEMS];
   wxDocument* m_apWindowMenuData[MAX_WINDOW_MENUITEMS];
@@ -100,6 +102,8 @@ private:
   double m_dDefaultFilterInputScale;
   double m_dDefaultFilterOutputScale;
 
+  bool m_bShuttingDown;
+
 #if CTSIM_WINHELP
   wxWinHelpController      m_winHelp;
 #endif
@@ -159,6 +163,8 @@ public:
   void OnWindowMenu19 (wxCommandEvent& event);
   
   void DoWindowMenu (int iMenuPosition, wxCommandEvent& event);
+
+  bool getShuttingDown() const { return m_bShuttingDown; }
 };
 
 
@@ -202,9 +208,6 @@ public:
   
   void getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector<ImageFileDocument*>& vecIF);
   
-  bool getSetModifyNewDocs() const
-  { return true; }
-  
   void setIconForFrame (wxFrame* pFrame);
   wxConfig* getConfig()
   { return m_pConfig; }