r186: *** empty log message ***
[ctsim.git] / src / ctsim.cpp
index 71b053906de0d2fa31026a1df20117b133e23bde..385fbee15445f120343b24bf7830efb62d649474 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************
 ** FILE IDENTIFICATION
 **
-**   Name:          ctsim.h
-**   Purpose:       Header file for top-level routines of CTSim program
+**   Name:          ctsim.cpp
+**   Purpose:       Top-level routines of CTSim program
 **   Programmer:    Kevin Rosenberg
 **   Date Started:  July 2000
 **
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.7 2000/07/20 11:17:31 kevin Exp $
+**  $Id: ctsim.cpp,v 1.10 2000/08/31 08:38:58 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
 #include <getopt.h>
 #endif
 
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.10 2000/08/31 08:38:58 kevin Exp $";
 
 class CTSimApp* theApp = NULL;
 
 struct option CTSimApp::ctsimOptions[] = 
 {
     {"help", 0, 0, O_HELP},
+    {"version", 0, 0, O_VERSION},
     {0, 0, 0, 0}
 };
 
@@ -80,6 +82,9 @@ CTSimApp::OnInit(void)
        break;
 
       switch (c) {
+      case O_VERSION:
+         cout << rcsindent << endl;
+         exit(0);
       case O_HELP:
       case '?':
        usage (argv[0]);
@@ -144,6 +149,7 @@ CTSimApp::usage(const char* program)
     cout << "usage: " << fileBasename(program) << " [files-to-open...] [OPTIONS]\n";
     cout << "Computed Tomography Simulator (Graphical Shell)\n";
     cout << "\n";
+    cout << "  --version Display version\n";
     cout << "  --help    Display this help message\n";
 }
 
@@ -151,6 +157,9 @@ int
 CTSimApp::OnExit(void)
 {
     delete m_docManager;
+#ifdef HAVE_DMALLOC
+    dmalloc_shutdown();
+#endif
     return 0;
 }
 
@@ -196,10 +205,10 @@ MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
 void 
 MainFrame::OnCreatePhantom(wxCommandEvent& WXUNUSED(event))
 {
-    DialogGetPhantom dialogPhantom (this, Phantom::PHM_HERMAN_STR);
+    DialogGetPhantom dialogPhantom (this, Phantom::PHM_HERMAN);
     int dialogReturn = dialogPhantom.ShowModal();
     if (dialogReturn == wxID_OK) {
-      wxString selection = dialogPhantom.getPhantom();
+      wxString selection (dialogPhantom.getPhantom());
       *theApp->getLog() << "Selected phantom " << selection.c_str() << "\n";
       wxString filename = selection + ".phm";
       theApp->getDocManager()->CreateDocument(filename, wxDOC_SILENT);