X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fctsim.cpp;h=2757c5ee61777a84408959fc52f178a436a9f9d9;hb=f3c7d22b4544bb1d5c4471bceded6dc5b9ed57fd;hp=afdc4b354c273190b77ee57bd9dffb4e1ac6b3c9;hpb=67e0b59f7b40b2c2f1d0587b24b4ecf4881b3824;p=ctsim.git diff --git a/src/ctsim.cpp b/src/ctsim.cpp index afdc4b3..2757c5e 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: ctsim.cpp,v 1.112 2002/06/02 17:57:02 kevin Exp $ +** $Id: ctsim.cpp,v 1.115 2002/06/06 22:50:24 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 @@ -70,7 +70,7 @@ #endif #endif -static const char* rcsindent = "$Id: ctsim.cpp,v 1.112 2002/06/02 17:57:02 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.115 2002/06/06 22:50:24 kevin Exp $"; struct option CTSimApp::ctsimOptions[] = { @@ -1058,6 +1058,21 @@ MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) ) } } +#if 0 +ProjectionFileDocument* +CTSimApp::newProjectionDoc() +{ + ProjectionFileDocument* newDoc = dynamic_cast + (m_pDocTemplProjection->CreateDocument ("")); + if (newDoc) { + newDoc->SetDocumentName (m_pDocTemplProjection->GetDocumentName()); + newDoc->SetDocumentTemplate (m_pDocTemplProjection); + newDoc->OnNewDocument(); + } + + return newDoc; +} +#endif ProjectionFileDocument* CTSimApp::newProjectionDoc() @@ -1068,7 +1083,7 @@ CTSimApp::newProjectionDoc() newDoc->SetDocumentTemplate (m_pDocTemplProjection); newDoc->OnNewDocument(); } - + return newDoc; } @@ -1081,7 +1096,7 @@ CTSimApp::newImageDoc() newDoc->SetDocumentTemplate (m_pDocTemplImage); newDoc->OnNewDocument(); } - + return newDoc; } @@ -1129,8 +1144,8 @@ CTSimApp::newPhantomDoc() return newDoc; } -#if wxUSE_GLCANVAS +#if wxUSE_GLCANVAS Graph3dFileDocument* CTSimApp::newGraph3dDoc() {