r311: image comparison functions
[ctsim.git] / src / dialogs.h
index c4c66473ec7f82ca12cdd1e7a5cb5b503a8c0475..4441ca0abf322f2461d5e23d73c569956bcae948 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: dialogs.h,v 1.15 2000/12/21 03:40:58 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
@@ -67,6 +67,25 @@ class DialogGetPhantom : public wxDialog
     StringValueAndTitleListBox* m_pListBoxPhantom;
 };
 \r
+\r
+#include <vector>\r
+class ImageFileDocument;\r
+class DialogGetComparisonImage : public wxDialog\r
+{\r
+ public:\r
+   DialogGetComparisonImage (wxFrame* pParent, const char* const pszTitle, const std::vector<ImageFileDocument*>& rVecIF, bool bShowMakeDifference);\r
+    virtual ~DialogGetComparisonImage () {}\r
+\r
+    ImageFileDocument* getImageFileDocument ();\r
+\r
+    bool getMakeDifferenceImage();\r
+\r
+ private:\r
+    wxListBox* m_pListBoxImageChoices;\r
+    wxCheckBox* m_pMakeDifferenceImage;\r
+    const std::vector<ImageFileDocument*>& m_rVecIF;\r
+};\r
+\r
 
 
 class ImageFile;