X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.cpp;h=385fbee15445f120343b24bf7830efb62d649474;hp=0f7bc4e5490aabe4a5362b22cfebf97dd8a2c1b3;hb=a05f3cb550877e94aa118cc04b361c0c8fdb3dc3;hpb=1fd4f7cc977b9f1499716de10d15656bd50f4816;ds=sidebyside diff --git a/src/ctsim.cpp b/src/ctsim.cpp index 0f7bc4e..385fbee 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -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.4 2000/07/13 07:01:59 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 @@ -41,34 +41,75 @@ #endif #include "wx/docview.h" - #include "ctsim.h" #include "docs.h" #include "views.h" +#include "dialogs.h" +#include "ctsupport.h" +#if defined(HAVE_CONFIG_H) +#include "config.h" +#endif +#if defined(HAVE_GETOPT_H) || defined(HAVE_GETOPT_LONG) +#include +#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} +}; IMPLEMENT_APP(CTSimApp) CTSimApp::CTSimApp(void) : m_docManager(NULL), m_pFrame(NULL) { + theApp = this; } bool CTSimApp::OnInit(void) { + // process options + while (1) { + int c = getopt_long (argc, argv, "", ctsimOptions, NULL); + if (c == -1) + break; + + switch (c) { + case O_VERSION: + cout << rcsindent << endl; + exit(0); + case O_HELP: + case '?': + usage (argv[0]); + exit (0); + default: + usage (argv[0]); + exit (1); + } + } + m_docManager = new wxDocManager; (void) new wxDocTemplate (m_docManager, "ImageFile", "*.if", "", "if", "ImageFile doc", "ImageFile View", CLASSINFO(ImageFileDocument), CLASSINFO(ImageFileView)); (void) new wxDocTemplate (m_docManager, "ProjectionFile", "*.pj", "", "pj", "ProjectionFile doc", "ProjectionFile View", CLASSINFO(ProjectionFileDocument), CLASSINFO(ProjectionFileView)); + (void) new wxDocTemplate (m_docManager, "PhantomFile", "*.phm", "", "phm", "Phantom doc", "Phantom View", CLASSINFO(PhantomDocument), CLASSINFO(PhantomView)); + //// Create the main frame window m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), wxSize(500, 400), wxDEFAULT_FRAME_STYLE); //// Make a menubar wxMenu *file_menu = new wxMenu; - // file_menu->Append(wxID_NEW, "&New..."); + file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom..."); file_menu->Append(wxID_OPEN, "&Open..."); file_menu->AppendSeparator(); @@ -78,6 +119,8 @@ CTSimApp::OnInit(void) m_docManager->FileHistoryUseMenu(file_menu); wxMenu *help_menu = new wxMenu; + help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents"); + help_menu->AppendSeparator(); help_menu->Append(MAINMENU_HELP_ABOUT, "&About"); wxMenuBar *menu_bar = new wxMenuBar; @@ -87,40 +130,96 @@ CTSimApp::OnInit(void) m_pFrame->SetMenuBar(menu_bar); + SetTopWindow (m_pFrame); m_pFrame->Centre(wxBOTH); + m_pFrame->Show(true); - - SetTopWindow (m_pFrame); + + for (int i = optind + 1; i <= argc; i++) { + wxString filename = argv [i - 1]; + m_docManager->CreateDocument (filename, wxDOC_SILENT); + } + return true; } +void +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"; +} + int CTSimApp::OnExit(void) { delete m_docManager; +#ifdef HAVE_DMALLOC + dmalloc_shutdown(); +#endif return 0; } +wxString +CTSimApp::getUntitledFilename(void) +{ + static int untitledNumber = 1; + + wxString filename ("Untitled"); + filename << untitledNumber++; + + return (filename); +} + // Top-level window for CTSim IMPLEMENT_CLASS(MainFrame, wxDocParentFrame) + BEGIN_EVENT_TABLE(MainFrame, wxDocParentFrame) - EVT_MENU(MAINMENU_HELP_ABOUT, MainFrame::OnAbout) - EVT_MENU(MAINMENU_FILE_EXIT, MainFrame::OnExit) + EVT_MENU(MAINMENU_HELP_ABOUT, MainFrame::OnAbout) + EVT_MENU(MAINMENU_HELP_CONTENTS, MainFrame::OnHelpContents) + EVT_MENU(MAINMENU_FILE_CREATE_PHANTOM, MainFrame::OnCreatePhantom) + EVT_MENU(MAINMENU_FILE_EXIT, MainFrame::OnExit) END_EVENT_TABLE() + MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type) - : wxDocParentFrame(manager, frame, id, title, pos, size, type) + : wxDocParentFrame(manager, frame, id, title, pos, size, type), m_pLog(NULL) { CreateStatusBar(); + m_pLog = new wxTextCtrl (this, -1, "Log Window\n", wxPoint(0, 250), wxSize(100,50), wxTE_MULTILINE | wxTE_READONLY); + wxLog::SetActiveTarget(new wxLogTextCtrl(m_pLog)); SetStatusText ("Welcome to CTSim"); } void MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) ) { - wxMessageBox("CTSim\nAuthor: Kevin Rosenberg \nUsage: ctsim", "About CTSim", wxOK | wxICON_INFORMATION, this); + wxMessageBox("CTSim\nAuthor: Kevin Rosenberg \nUsage: ctsim [files-to-open..] [--help]", "About CTSim", wxOK | wxICON_INFORMATION, this); +} + +void +MainFrame::OnCreatePhantom(wxCommandEvent& WXUNUSED(event)) +{ + DialogGetPhantom dialogPhantom (this, Phantom::PHM_HERMAN); + int dialogReturn = dialogPhantom.ShowModal(); + if (dialogReturn == wxID_OK) { + wxString selection (dialogPhantom.getPhantom()); + *theApp->getLog() << "Selected phantom " << selection.c_str() << "\n"; + wxString filename = selection + ".phm"; + theApp->getDocManager()->CreateDocument(filename, wxDOC_SILENT); + } + +} + +void +MainFrame::OnHelpContents(wxCommandEvent& WXUNUSED(event) ) +{ + wxMessageBox("No help available, refer to man pages of command-line tools"); } void