r521: no message
[ctsim.git] / src / dialogs.h
index 8311bb2e556268285f7ef59382e832e16b368e4f..92ba70ce67f9a5b256c19e2ebb45dbb4b8d20aec 100644 (file)
@@ -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
 {