r439: no message
[ctsim.git] / src / ctsim.cpp
index a5a889aad72aeef87a22a338a8844e3babbe26ac..dd41076c0519642b6a5702d03fdabfc48cd1c252 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.42 2001/01/26 05:37:24 kevin Exp $
+**  $Id: ctsim.cpp,v 1.43 2001/01/26 09:54:31 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.42 2001/01/26 05:37:24 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.43 2001/01/26 09:54:31 kevin Exp $";
 
 struct option CTSimApp::ctsimOptions[] = 
 {
@@ -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);
@@ -178,9 +180,9 @@ CTSimApp::OnInit()
     pLogDoc->SetFilename("Log.txt");
     pLogDoc->getView()->getFrame()->SetTitle("Log");
     int xSize, ySize;
-    m_pFrame->GetSize(&xSize, &ySize);
-    int yLogSize = ySize / 4;
-    pLogDoc->getView()->getFrame()->SetSize (0, 0, xSize, yLogSize);
+    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);
@@ -404,7 +406,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);
   }
   
 }
@@ -771,11 +773,8 @@ CTSimApp::newProjectionDoc()
       if (pFrame)
         pFrame->SetSize(0,0);
     }
-    newDoc->SetDocumentName(strFilename);
-    newDoc->SetFilename(strFilename);
-    newDoc->SetDocumentTemplate(m_pDocTemplProjection);
-    newDoc->SetTitle(strFilename);
     newDoc->OnNewDocument();
+//    newDoc->SetFilename(strFilename, true);
   }
 
   return newDoc;
@@ -795,11 +794,8 @@ CTSimApp::newImageDoc()
       if (pFrame)
         pFrame->SetSize(0,0);
     }
-    newDoc->SetDocumentName(strFilename);
-    newDoc->SetFilename(strFilename);
-    newDoc->SetDocumentTemplate(m_pDocTemplImage);
-    newDoc->SetTitle(strFilename);
     newDoc->OnNewDocument();
+//    newDoc->SetFilename(strFilename, true);
   }
 
   return newDoc;
@@ -819,11 +815,8 @@ CTSimApp::newPlotDoc()
       if (pFrame)
         pFrame->SetSize(0,0);
     }
-    newDoc->SetDocumentName(strFilename);
-    newDoc->SetFilename(strFilename);
-    newDoc->SetDocumentTemplate(m_pDocTemplPlot);
-    newDoc->SetTitle(strFilename);
     newDoc->OnNewDocument();
+//    newDoc->SetFilename(strFilename, true);
   }
 
   return newDoc;
@@ -844,11 +837,8 @@ CTSimApp::newTextDoc()
       if (pFrame)
         pFrame->SetSize(0,0);
     }
-    newDoc->SetDocumentName(strFilename);
-    newDoc->SetFilename(strFilename);
-    newDoc->SetDocumentTemplate(m_pDocTemplText);
-    newDoc->SetTitle(strFilename);
     newDoc->OnNewDocument();
+//    newDoc->SetFilename(strFilename, true);
   }
 
   return newDoc;
@@ -869,11 +859,8 @@ CTSimApp::newPhantomDoc()
       if (pFrame)
         pFrame->SetSize(0,0);
     }
-    newDoc->SetDocumentName(strFilename);
-    newDoc->SetFilename(strFilename);
-    newDoc->SetDocumentTemplate(m_pDocTemplPhantom);
-    newDoc->SetTitle(strFilename);
     newDoc->OnNewDocument();
+//    newDoc->SetFilename(strFilename, true);
   }
 
   return newDoc;