r1026: no message
[ctsim.git] / src / ctsim.cpp
index 9d7e87052cd0b9ab9fc7adb10525ee52f7eaff22..a51a3658352166ac8bf507aaf7dcc24d923328be 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.99 2001/03/21 21:45:31 kevin Exp $
+**  $Id: ctsim.cpp,v 1.104 2001/09/24 15:16:41 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.99 2001/03/21 21:45:31 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.104 2001/09/24 15:16:41 kevin Exp $";
 
 struct option CTSimApp::ctsimOptions[] = 
 {
@@ -159,8 +159,14 @@ CTSimApp::OnInit()
   // Create the main frame window
   int xDisplay, yDisplay;
   ::wxDisplaySize (&xDisplay, &yDisplay);
+
   m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), 
-    wxSize(nearest<int>(xDisplay * .75), nearest<int>(yDisplay * .755)), wxDEFAULT_FRAME_STYLE);
+#ifdef CTSIM_MDI
+    wxSize(nearest<int>(xDisplay * .75), nearest<int>(yDisplay * .75)), 
+#else
+    wxSize(nearest<int>(xDisplay * .25), nearest<int>(yDisplay * .25)), 
+#endif
+    wxDEFAULT_FRAME_STYLE);
   
   setIconForFrame (m_pFrame);
   m_pFrame->Centre(wxBOTH);
@@ -740,15 +746,6 @@ MainFrame::OnUpdateUI (wxUpdateUIEvent& rEvent)
 #endif 
 }
 
-#ifdef CTSIM_CUSTOM_MRU
-void 
-MainFrame::OnMRUFile (wxCommandEvent& event)
-{
-  wxString fileName (theApp->getDocManager()->GetHistoryFile(event.GetId() - wxID_FILE1));
-  if (fileName != "")
-    theApp->getDocManager()->CreateDocument(fileName, wxDOC_SILENT);
-}
-#endif
 
 void 
 MainFrame::DoWindowMenu (int iMenuPosition, wxCommandEvent& event)
@@ -1034,9 +1031,19 @@ MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
 {
   long lFreeMem = ::wxGetFreeMemory() / (1024L * 1024L);
   wxString strOSDesc = ::wxGetOsDescription();
-  *theApp->getLog() << "Operation System: " << strOSDesc;
+  *theApp->getLog() << "Operating System: " << strOSDesc;
   if (lFreeMem > 0)
     *theApp->getLog() << ",  Free Memory: " << lFreeMem << " MB";
+  *theApp->getLog() << ", wxWindows: " << wxVERSION_STRING;
+#ifdef __TIMESTAMP__
+  *theApp->getLog() << ", Build Date: " << __TIMESTAMP__;
+#endif
+#if defined(DEBUG)
+  *theApp->getLog() << ", CTSim Debug version";
+#else
+  *theApp->getLog() << ", CTSim Release version";
+#endif
+
   *theApp->getLog() << "\n";
   
   wxBitmap bmp (splash);
@@ -1055,6 +1062,7 @@ MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
     msg += "Author: Kevin Rosenberg <kevin@rosenberg.net>\nUsage: ctsim [files-to-open..] [--help]";
     
     wxMessageBox(msg, "About CTSim", wxOK | wxICON_INFORMATION, this);
+    *theApp->getLog() << msg << "\n";
   }
 }