X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fdialogs.h;h=92ba70ce67f9a5b256c19e2ebb45dbb4b8d20aec;hp=8311bb2e556268285f7ef59382e832e16b368e4f;hb=befd71a7157339b52a0c40359518d5276b25d127;hpb=d3fa225aa232e132cc198672c4fc148f96a1ab8c diff --git a/src/dialogs.h b/src/dialogs.h index 8311bb2..92ba70c 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.24 2001/02/11 04:56:38 kevin Exp $ +** $Id: dialogs.h,v 1.25 2001/02/11 21:57:08 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 @@ -88,6 +88,21 @@ class DialogGetComparisonImage : public wxDialog }; +class DialogPreferences : public wxDialog +{ + public: + DialogPreferences (wxWindow* pParent, const char* const pszTitle, bool bAdvanced, bool bAskNewDocs); + virtual ~DialogPreferences (); + + bool getAdvancedOptions (); + bool getAskDeleteNewDocs (); + + private: + wxCheckBox* m_pCBAdvancedOptions; + wxCheckBox* m_pCBAskDeleteNewDocs; +}; + + class ImageFile; class DialogGetMinMax : public wxDialog {