X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.cpp;h=b128641a90be1fa3bffc42bc206995b4af14ec2e;hp=bdd8a5909d626e72d5decf57b431597a4442f78f;hb=c551b53b39a7571cf52831f5e117be1cca95c420;hpb=f7d2b7144f32a7bd157b7689022e62944b82fcc1 diff --git a/src/ctsim.cpp b/src/ctsim.cpp index bdd8a59..b128641 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsim.cpp,v 1.19 2000/12/20 14:39:09 kevin Exp $ +** $Id: ctsim.cpp,v 1.20 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 @@ -61,7 +61,7 @@ #endif #endif -static const char* rcsindent = "$Id: ctsim.cpp,v 1.19 2000/12/20 14:39:09 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.20 2000/12/22 04:18:00 kevin Exp $"; class CTSimApp* theApp = NULL; @@ -285,6 +285,27 @@ MainFrame::OnCreatePhantom(wxCommandEvent& WXUNUSED(event)) } +void +CTSimApp::getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector& vecIF) +{ + const ImageFile& rIF = pIFDoc->getImageFile(); + int nx = rIF.nx(); + int ny = rIF.ny(); + wxList& rListDocs = m_docManager->GetDocuments(); + std::vector vecFilename; + for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) { + wxDocument* pDoc = reinterpret_cast(pNode->GetData()); + ImageFileDocument* pIFCompareDoc = dynamic_cast(pDoc); + if (pIFCompareDoc && (pIFDoc != pIFCompareDoc)) { + const ImageFile& rCompareIF = pIFCompareDoc->getImageFile(); + if (rCompareIF.nx() == nx && rCompareIF.ny() == ny) { + std::string strFilename = pDoc->GetFilename(); + vecIF.push_back (pIFCompareDoc); + } + } + } +} + void MainFrame::OnHelpContents(wxCommandEvent& WXUNUSED(event) ) {