X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fdialogs.h;h=2497562355365f6658ca533d7dfe6a82df08f467;hb=1a7c2cc82f5a0c04bec766776e57c563378dc611;hp=0bb051043e71e45e96e2d748ab7ddbc960a94362;hpb=7c695eef645b25a1df6a95c4fc72f6b2994a3630;p=ctsim.git diff --git a/src/dialogs.h b/src/dialogs.h index 0bb0510..2497562 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.26 2001/02/14 18:39:47 kevin Exp $ +** $Id: dialogs.h,v 1.29 2001/02/22 00:56:50 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 @@ -39,6 +39,15 @@ #include "projections.h" +class CTSimHelpButton : public wxButton +{ +public: + CTSimHelpButton (wxWindow* parent, int id) + : wxButton (parent, id, "Help") + {} +}; + + // CLASS StringValueAndTitleListBox // // A superclass of wxListBox that can handle string values and titles @@ -103,15 +112,20 @@ 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); virtual ~DialogPreferences (); bool getAdvancedOptions (); bool getAskDeleteNewDocs (); + bool getVerboseLogging (); + bool getStartupTips (); private: wxCheckBox* m_pCBAdvancedOptions; wxCheckBox* m_pCBAskDeleteNewDocs; + wxCheckBox* m_pCBVerboseLogging; + wxCheckBox* m_pCBStartupTips; };