X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fdialogs.h;h=22eccf5fc24f3f3c55ae3ec7bf67f383c0129453;hb=e081109a4a541c8780aaa253b874acada5957200;hp=3b76d9504460b2bd5992422a39b6fbf1edd480f3;hpb=17f20398d8bb0e4b97b5884b999bbe8d58c5254f;p=ctsim.git diff --git a/src/dialogs.h b/src/dialogs.h index 3b76d95..22eccf5 100644 --- a/src/dialogs.h +++ b/src/dialogs.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: dialogs.h,v 1.27 2001/02/16 00:28:41 kevin Exp $ +** $Id: dialogs.h,v 1.30 2001/02/22 15:00:20 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 @@ -112,15 +112,22 @@ class DialogGetComparisonImage : public wxDialog class DialogPreferences : public wxDialog { public: - DialogPreferences (wxWindow* pParent, const char* const pszTitle, bool bAdvanced, bool bAskNewDocs); + DialogPreferences (wxWindow* pParent, const char* const pszTitle, bool bAdvanced, bool bAskNewDocs, + bool bVerboseLogging, bool bStartupTips, bool bUseBackgroundTasks); virtual ~DialogPreferences (); bool getAdvancedOptions (); bool getAskDeleteNewDocs (); + bool getVerboseLogging (); + bool getStartupTips (); + bool getUseBackgroundTasks(); private: wxCheckBox* m_pCBAdvancedOptions; wxCheckBox* m_pCBAskDeleteNewDocs; + wxCheckBox* m_pCBVerboseLogging; + wxCheckBox* m_pCBStartupTips; + wxCheckBox* m_pCBUseBackgroundTasks; };