r322: *** empty log message ***
[ctsim.git] / src / ctsim.cpp
index 0c09001cc0bab65c2b30ba4b95e5bf9c99146628..8dc7e229b526ab201241350ab6215a2a8c48c260 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.18 2000/12/19 21:37:51 kevin Exp $
+**  $Id: ctsim.cpp,v 1.22 2000/12/29 20:18:59 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
@@ -61,7 +61,7 @@
 #endif
 #endif
 \r
-static const char* rcsindent = "$Id: ctsim.cpp,v 1.18 2000/12/19 21:37:51 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.22 2000/12/29 20:18:59 kevin Exp $";
 
 class CTSimApp* theApp = NULL;
 
@@ -128,7 +128,7 @@ CTSimApp::OnInit()
 
     new wxDocTemplate (m_docManager, "PhantomFile", "*.phm", "", "phm", "Phantom doc", "Phantom View", CLASSINFO(PhantomDocument), CLASSINFO(PhantomView));
 
-    new wxDocTemplate (m_docManager, "PlotFile", "*.plt", "", "plot", "Plot doc", "Plot View", CLASSINFO(PlotFileDocument), CLASSINFO(PlotFileView));
+    new wxDocTemplate (m_docManager, "PlotFile", "*.plt", "", "plt", "Plot doc", "Plot View", CLASSINFO(PlotFileDocument), CLASSINFO(PlotFileView));
 
     //// Create the main frame window
     m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), wxSize(500, 400), wxDEFAULT_FRAME_STYLE);
@@ -285,6 +285,24 @@ MainFrame::OnCreatePhantom(wxCommandEvent& WXUNUSED(event))
     
 }
 
+void\r
+CTSimApp::getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector<ImageFileDocument*>& vecIF)\r
+{\r
+  const ImageFile& rIF = pIFDoc->getImageFile();\r
+  unsigned int nx = rIF.nx();\r
+  unsigned int ny = rIF.ny();\r
+  wxList& rListDocs = m_docManager->GetDocuments();\r
+  for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) {\r
+    wxDocument* pDoc = reinterpret_cast<wxDocument*>(pNode->GetData());\r
+    ImageFileDocument* pIFCompareDoc = dynamic_cast<ImageFileDocument*>(pDoc);\r
+    if (pIFCompareDoc && (pIFDoc != pIFCompareDoc)) {\r
+      const ImageFile& rCompareIF = pIFCompareDoc->getImageFile();\r
+      if (rCompareIF.nx() == nx && rCompareIF.ny() == ny)\r
+        vecIF.push_back (pIFCompareDoc);\r
+    }\r
+  }\r
+}\r
+\r
 void 
 MainFrame::OnHelpContents(wxCommandEvent& WXUNUSED(event) )
 {