X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fctsim.cpp;h=5c25369d1a012edcd470ceeb57414c23aaf13224;hb=516e7e87a069b938f325181d70c720c4c3fb8596;hp=d0cc8c686c28072b085a780b62a4c5d216163ef0;hpb=dd8faeb9c2a1633c96ca31bce81e338a591fab71;p=ctsim.git diff --git a/src/ctsim.cpp b/src/ctsim.cpp index d0cc8c6..5c25369 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.41 2001/01/26 00:45:24 kevin Exp $ +** $Id: ctsim.cpp,v 1.44 2001/01/26 21:22:37 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.41 2001/01/26 00:45:24 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.44 2001/01/26 21:22:37 kevin Exp $"; struct option CTSimApp::ctsimOptions[] = { @@ -133,11 +133,11 @@ CTSimApp::OnInit() m_docManager = new wxDocManager (wxDEFAULT_DOCMAN_FLAGS, true); - new wxDocTemplate (m_docManager, "ImageFile", "*.if", "", "if", "ImageFile", "ImageView", CLASSINFO(ImageFileDocument), CLASSINFO(ImageFileView)); - new wxDocTemplate (m_docManager, "ProjectionFile", "*.pj", "", "pj", "ProjectionFile", "ProjectionView", CLASSINFO(ProjectionFileDocument), CLASSINFO(ProjectionFileView)); - new wxDocTemplate (m_docManager, "PhantomFile", "*.phm", "", "phm", "PhantomFile", "PhantomView", CLASSINFO(PhantomDocument), CLASSINFO(PhantomView)); - new wxDocTemplate (m_docManager, "PlotFile", "*.plt", "", "plt", "PlotFile", "PlotView", CLASSINFO(PlotFileDocument), CLASSINFO(PlotFileView)); - new wxDocTemplate (m_docManager, "TextEdit", "*.txt", "", "txt", "TextFile", "TextView", CLASSINFO(TextEditDocument), CLASSINFO(TextEditView), wxTEMPLATE_INVISIBLE); + m_pDocTemplImage = new wxDocTemplate (m_docManager, "ImageFile", "*.if", "", "if", "ImageFile", "ImageView", CLASSINFO(ImageFileDocument), CLASSINFO(ImageFileView)); + m_pDocTemplProjection = new wxDocTemplate (m_docManager, "ProjectionFile", "*.pj", "", "pj", "ProjectionFile", "ProjectionView", CLASSINFO(ProjectionFileDocument), CLASSINFO(ProjectionFileView)); + m_pDocTemplPhantom = new wxDocTemplate (m_docManager, "PhantomFile", "*.phm", "", "phm", "PhantomFile", "PhantomView", CLASSINFO(PhantomFileDocument), CLASSINFO(PhantomFileView)); + m_pDocTemplPlot = new wxDocTemplate (m_docManager, "PlotFile", "*.plt", "", "plt", "PlotFile", "PlotView", CLASSINFO(PlotFileDocument), CLASSINFO(PlotFileView)); + m_pDocTemplText = new wxDocTemplate (m_docManager, "TextFile", "*.txt", "", "txt", "TextFile", "TextView", CLASSINFO(TextFileDocument), CLASSINFO(TextFileView), wxTEMPLATE_INVISIBLE); #if wxUSE_GIF wxImage::AddHandler(new wxGIFHandler); // Required for images in the online documentation @@ -148,7 +148,9 @@ CTSimApp::OnInit() #endif // Create the main frame window - m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), wxSize(500, 400), wxDEFAULT_FRAME_STYLE); + int xDisplay, yDisplay; + ::wxDisplaySize (&xDisplay, &yDisplay); + m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), wxSize(xDisplay * .75, yDisplay * .755), wxDEFAULT_FRAME_STYLE); setIconForFrame (m_pFrame); m_pFrame->Centre(wxBOTH); @@ -171,9 +173,16 @@ CTSimApp::OnInit() ::wxMessageBox ("Cannot initialize the help system", "Error"); #ifdef CTSIM_MDI - TextEditDocument* pLogDoc = dynamic_cast(m_docManager->CreateDocument("Log.txt", wxDOC_SILENT)); + TextFileDocument* pLogDoc = newTextDoc(); if (pLogDoc) { m_pLog = pLogDoc->getTextCtrl(); + pLogDoc->SetDocumentName("Log.txt"); + pLogDoc->SetFilename("Log.txt"); + pLogDoc->getView()->getFrame()->SetTitle("Log"); + int xSize, ySize; + m_pFrame->GetClientSize(&xSize, &ySize); + int yLogSize = ySize / 3; + pLogDoc->getView()->getFrame()->SetSize (0, ySize - yLogSize, xSize, yLogSize); } else #else m_pLog = new wxTextCtrl (m_pFrame, -1, "Log Window\n", wxPoint(0, 0), wxSize(0,0), wxTE_MULTILINE | wxTE_READONLY); @@ -210,7 +219,7 @@ CTSimApp::OnExit() if (theApp->getConfig()) theApp->getDocManager()->FileHistorySave (*theApp->getConfig()); delete theApp->getDocManager(); - m_docManager = NULL; +// m_docManager = NULL; #ifdef HAVE_DMALLOC dmalloc_shutdown(); @@ -325,7 +334,8 @@ MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const SetMenuBar(menu_bar); #ifndef CTSIM_MDI - for (int i = 0; i < MAX_WINDOW_MENUITEMS; i++) { + int i; + for (i = 0; i < MAX_WINDOW_MENUITEMS; i++) { m_apWindowMenuItems[i] = new wxMenuItem (m_pWindowMenu, MAINMENU_WINDOW_BASE+i, wxString("[EMPTY]")); m_pWindowMenu->Append (m_apWindowMenuItems[i]); m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+i, false); @@ -397,7 +407,7 @@ MainFrame::OnCreatePhantom(wxCommandEvent& event) *theApp->getLog() << "Selected phantom " << selection.c_str() << "\n"; wxString filename = selection + ".phm"; m_iDefaultPhantomID = Phantom::convertNameToPhantomID (selection.c_str()); - theApp->getDocManager()->CreateDocument(filename, wxDOC_SILENT); + theApp->getDocManager()->CreateDocument (filename, wxDOC_SILENT); } } @@ -749,3 +759,110 @@ MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) ) } } + +ProjectionFileDocument* +CTSimApp::newProjectionDoc() +{ + wxString strFilename (getUntitledFilename()); + strFilename += ".pj"; + + ProjectionFileDocument* newDoc = dynamic_cast(m_pDocTemplProjection->CreateDocument (strFilename)); + if (newDoc) { + ProjectionFileView* pView = newDoc->getView(); + if (pView) { + wxFrame* pFrame = pView->getFrame(); + if (pFrame) + pFrame->SetSize(0,0); + } + newDoc->OnNewDocument(); +// newDoc->SetFilename(strFilename, true); + } + + return newDoc; +} + +ImageFileDocument* +CTSimApp::newImageDoc() +{ + wxString strFilename (getUntitledFilename()); + strFilename += ".pj"; + + ImageFileDocument* newDoc = dynamic_cast(m_pDocTemplImage->CreateDocument (strFilename)); + if (newDoc) { + ImageFileView* pView = newDoc->getView(); + if (pView) { + wxFrame* pFrame = pView->getFrame(); + if (pFrame) + pFrame->SetSize(0,0); + } + newDoc->OnNewDocument(); +// newDoc->SetFilename(strFilename, true); + } + + return newDoc; +} + +PlotFileDocument* +CTSimApp::newPlotDoc() +{ + wxString strFilename (getUntitledFilename()); + strFilename += ".plt"; + + PlotFileDocument* newDoc = dynamic_cast(m_pDocTemplPlot->CreateDocument (strFilename)); + if (newDoc) { + PlotFileView* pView = newDoc->getView(); + if (pView) { + wxFrame* pFrame = pView->getFrame(); + if (pFrame) + pFrame->SetSize(0,0); + } + newDoc->OnNewDocument(); +// newDoc->SetFilename(strFilename, true); + } + + return newDoc; +} + + +TextFileDocument* +CTSimApp::newTextDoc() +{ + wxString strFilename (getUntitledFilename()); + strFilename += ".txt"; + + TextFileDocument* newDoc = dynamic_cast(m_pDocTemplText->CreateDocument (strFilename)); + if (newDoc) { + TextFileView* pView = newDoc->getView(); + if (pView) { + wxFrame* pFrame = pView->getFrame(); + if (pFrame) + pFrame->SetSize(0,0); + } + newDoc->OnNewDocument(); +// newDoc->SetFilename(strFilename, true); + } + + return newDoc; +} + + +PhantomFileDocument* +CTSimApp::newPhantomDoc() +{ + wxString strFilename (getUntitledFilename()); + strFilename += ".phm"; + + PhantomFileDocument* newDoc = dynamic_cast(m_pDocTemplPhantom->CreateDocument (strFilename)); + if (newDoc) { + PhantomFileView* pView = newDoc->getView(); + if (pView) { + wxFrame* pFrame = pView->getFrame(); + if (pFrame) + pFrame->SetSize(0,0); + } + newDoc->OnNewDocument(); +// newDoc->SetFilename(strFilename, true); + } + + return newDoc; +}