r311: image comparison functions
[ctsim.git] / src / dialogs.h
index b14fa78b42d8971f119708fa8bae39c471cc0be0..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.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"\r
+
 
 // CLASS StringValueAndTitleListBox
 //
@@ -65,6 +66,26 @@ class DialogGetPhantom : public wxDialog
  private:
     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;