X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fctsim.h;h=ff8588c2edf5e87407fd52604eedacf5a52fd1d4;hb=f1303ea0f1188b0a89846c67b5783f596e7ba1b7;hp=bb91b857eeb3b36ac2e49db606077d486ff587fc;hpb=17f20398d8bb0e4b97b5884b999bbe8d58c5254f;p=ctsim.git diff --git a/src/ctsim.h b/src/ctsim.h index bb91b85..ff8588c 100644 --- a/src/ctsim.h +++ b/src/ctsim.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: ctsim.h,v 1.46 2001/02/16 00:28:41 kevin Exp $ +** $Id: ctsim.h,v 1.49 2001/02/21 20:13:03 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 @@ -135,7 +135,6 @@ public: void showHelp (int commandID); void OnAbout (wxCommandEvent& event); - void OnHelpTopics (wxCommandEvent& event); void OnHelpContents (wxCommandEvent& event); void OnCreatePhantom (wxCommandEvent& event); void OnPreferences (wxCommandEvent& event); @@ -182,11 +181,12 @@ class wxDocManager; class CTSimApp: public wxApp { private: - enum { O_HELP, O_VERSION }; + enum { O_HELP, O_PRINT, O_VERSION }; static struct option ctsimOptions[]; bool m_bAdvancedOptions; bool m_bSetModifyNewDocs; + bool m_bVerboseLogging; wxDocManager* m_docManager; MainFrame* m_pFrame; @@ -228,6 +228,8 @@ public: void getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector& vecIF); bool getAdvancedOptions() const { return m_bAdvancedOptions; } void setAdvancedOptions (bool bAdv) { m_bAdvancedOptions = bAdv; } + bool getVerboseLogging() const { return m_bVerboseLogging; } + void setVerboseLogging (bool bVerbose) { m_bVerboseLogging = bVerbose; } void setIconForFrame (wxFrame* pFrame); wxConfig* getConfig() @@ -263,7 +265,6 @@ enum { MAINMENU_WINDOW_BASE = 500, MAINMENU_HELP_ABOUT = 600, MAINMENU_HELP_CONTENTS, - MAINMENU_HELP_TOPICS, #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG)) MAINMENU_HELP_SECONDARY, #endif