X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fdialogs.h;h=4441ca0abf322f2461d5e23d73c569956bcae948;hb=f96880c086b40f76e691dc107aed6f1481c4d8b1;hp=b14fa78b42d8971f119708fa8bae39c471cc0be0;hpb=fd1d136a94a6d20013f38d6a997bdfefad0f5e98;p=ctsim.git diff --git a/src/dialogs.h b/src/dialogs.h index b14fa78..4441ca0 100644 --- a/src/dialogs.h +++ b/src/dialogs.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: dialogs.h,v 1.14 2000/12/20 20:08:48 kevin Exp $ +** $Id: dialogs.h,v 1.16 2000/12/22 04:18:00 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 @@ -35,7 +35,8 @@ #include "scanner.h" #include "phantom.h" #include "procsignal.h" -#include "filter.h" +#include "filter.h" + // CLASS StringValueAndTitleListBox // @@ -65,6 +66,26 @@ class DialogGetPhantom : public wxDialog private: StringValueAndTitleListBox* m_pListBoxPhantom; }; + + +#include +class ImageFileDocument; +class DialogGetComparisonImage : public wxDialog +{ + public: + DialogGetComparisonImage (wxFrame* pParent, const char* const pszTitle, const std::vector& rVecIF, bool bShowMakeDifference); + virtual ~DialogGetComparisonImage () {} + + ImageFileDocument* getImageFileDocument (); + + bool getMakeDifferenceImage(); + + private: + wxListBox* m_pListBoxImageChoices; + wxCheckBox* m_pMakeDifferenceImage; + const std::vector& m_rVecIF; +}; + class ImageFile;