r273: *** empty log message ***
[ctsim.git] / src / ctsim.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          ctsim.cpp
5 **   Purpose:       Top-level routines of CTSim program
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  July 2000
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2000 Kevin Rosenberg
11 **
12 **  $Id: ctsim.cpp,v 1.17 2000/12/17 22:30:34 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27 \r
28 \r
29 // For compilers that support precompilation, includes "wx/wx.h".\r
30 #include "wx/wxprec.h"\r
31 \r
32 #ifdef __BORLANDC__\r
33 #pragma hdrstop\r
34 #endif\r
35 \r
36 #ifndef WX_PRECOMP\r
37 #include "wx/wx.h"\r
38 #endif\r
39 \r
40 #if !wxUSE_DOC_VIEW_ARCHITECTURE\r
41 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!\r
42 #endif\r
43 \r
44 #include "ct.h"\r
45 #include "ctsim.h"
46 #include "docs.h"
47 #include "views.h"
48 #include "dialogs.h"
49 \r
50 #if defined(HAVE_CONFIG_H)
51 #include "config.h"
52 #endif\r
53 \r
54 #if defined(HAVE_GETOPT_H) || defined(HAVE_GETOPT_LONG)
55 #ifdef MSVC\r
56 #define __STDC__ 1\r
57 #endif\r
58 #include "getopt.h"\r
59 #ifdef MSVC\r
60 #undef __STDC__\r
61 #endif
62 #endif
63 \r
64 static const char* rcsindent = "$Id: ctsim.cpp,v 1.17 2000/12/17 22:30:34 kevin Exp $";
65
66 class CTSimApp* theApp = NULL;
67
68 struct option CTSimApp::ctsimOptions[] = 
69 {
70     {"help", 0, 0, O_HELP},
71     {"version", 0, 0, O_VERSION},
72     {0, 0, 0, 0}
73 };
74
75 IMPLEMENT_APP(CTSimApp)
76
77 CTSimApp::CTSimApp()
78   : m_docManager(NULL), m_pFrame(NULL)
79 {
80     theApp = this;
81 }
82
83 #ifdef HAVE_SYS_TIME_H
84 #include <sys/time.h>
85 #endif
86
87 #ifdef HAVE_SYS_RESOURCE_H
88 #include <sys/resource.h>
89 #endif
90
91 bool
92 CTSimApp::OnInit()
93 {
94 #ifdef HAVE_SETPRIORITY
95   setpriority (PRIO_PROCESS, 0, 15);  // set to low scheduling priority
96 #endif
97
98     // process options
99     while (1) {
100       int c = getopt_long (argc, argv, "", ctsimOptions, NULL);
101       if (c == -1)
102         break;
103
104       switch (c) {
105       case O_VERSION:
106                   std::cout << rcsindent << std::endl;\r
107 #ifdef CTSIMVERSION\r
108                   std::cout << "Version: CTSIMVERSION" << std::endl;\r
109 #elif defined(VERSION)\r
110                   std::cout << "Version: VERSION" << std::endl;\r
111 #endif
112           exit(0);
113       case O_HELP:
114       case '?':
115         usage (argv[0]);
116         exit (0);
117       default:
118         usage (argv[0]);
119         exit (1);
120       }
121     }
122
123     m_docManager = new wxDocManager;
124     
125     new wxDocTemplate (m_docManager, "ImageFile", "*.if", "", "if", "ImageFile doc", "ImageFile View", CLASSINFO(ImageFileDocument), CLASSINFO(ImageFileView));
126
127     new wxDocTemplate (m_docManager, "ProjectionFile", "*.pj", "", "pj", "ProjectionFile doc", "ProjectionFile View", CLASSINFO(ProjectionFileDocument), CLASSINFO(ProjectionFileView));
128
129     new wxDocTemplate (m_docManager, "PhantomFile", "*.phm", "", "phm", "Phantom doc", "Phantom View", CLASSINFO(PhantomDocument), CLASSINFO(PhantomView));
130
131     //// Create the main frame window
132     m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), wxSize(500, 400), wxDEFAULT_FRAME_STYLE);
133     
134     SetTopWindow (m_pFrame);
135     m_pFrame->Centre(wxBOTH);
136
137     m_pFrame->Show(true);
138
139     for (int i = optind + 1; i <= argc; i++) {
140       wxString filename = argv [i - 1];
141       m_docManager->CreateDocument (filename, wxDOC_SILENT);
142     }
143
144     return true;
145 }
146
147 void
148 CTSimApp::usage(const char* program)
149 {
150         std::cout << "usage: " << fileBasename(program) << " [files-to-open...] [OPTIONS]\n";
151         std::cout << "Computed Tomography Simulator (Graphical Shell)\n";
152         std::cout << "\n";
153         std::cout << "  --version Display version\n";
154         std::cout << "  --help    Display this help message\n";
155 }
156
157 int
158 CTSimApp::OnExit()
159 {
160     delete m_docManager;
161 #ifdef HAVE_DMALLOC
162     dmalloc_shutdown();
163 #endif
164     return 0;
165 }
166
167 wxString
168 CTSimApp::getUntitledFilename()
169 {
170   static int untitledNumber = 1;
171
172   wxString filename ("Untitled");
173   filename << untitledNumber++;
174
175   return (filename);
176 }
177
178
179 // Top-level window for CTSim
180
181 IMPLEMENT_CLASS(MainFrame, wxDocParentFrame)
182
183 BEGIN_EVENT_TABLE(MainFrame, wxDocParentFrame)
184   EVT_MENU(MAINMENU_HELP_ABOUT, MainFrame::OnAbout)
185   EVT_MENU(MAINMENU_HELP_CONTENTS, MainFrame::OnHelpContents)
186   EVT_MENU(MAINMENU_FILE_CREATE_PHANTOM, MainFrame::OnCreatePhantom)
187   EVT_MENU(MAINMENU_FILE_EXIT, MainFrame::OnExit)
188   EVT_MENU(MAINMENU_WINDOW_BASE, MainFrame::OnWindowMenu0)
189   EVT_MENU(MAINMENU_WINDOW_BASE+1, MainFrame::OnWindowMenu1)
190   EVT_MENU(MAINMENU_WINDOW_BASE+2, MainFrame::OnWindowMenu2)
191   EVT_MENU(MAINMENU_WINDOW_BASE+3, MainFrame::OnWindowMenu3)
192   EVT_MENU(MAINMENU_WINDOW_BASE+4, MainFrame::OnWindowMenu4)
193   EVT_MENU(MAINMENU_WINDOW_BASE+5, MainFrame::OnWindowMenu5)
194   EVT_MENU(MAINMENU_WINDOW_BASE+6, MainFrame::OnWindowMenu6)
195   EVT_MENU(MAINMENU_WINDOW_BASE+7, MainFrame::OnWindowMenu7)
196   EVT_MENU(MAINMENU_WINDOW_BASE+8, MainFrame::OnWindowMenu8)
197   EVT_MENU(MAINMENU_WINDOW_BASE+9, MainFrame::OnWindowMenu9)
198   EVT_MENU(MAINMENU_WINDOW_BASE+10, MainFrame::OnWindowMenu10)
199   EVT_MENU(MAINMENU_WINDOW_BASE+11, MainFrame::OnWindowMenu11)
200   EVT_MENU(MAINMENU_WINDOW_BASE+12, MainFrame::OnWindowMenu12)
201   EVT_MENU(MAINMENU_WINDOW_BASE+13, MainFrame::OnWindowMenu13)
202   EVT_MENU(MAINMENU_WINDOW_BASE+14, MainFrame::OnWindowMenu14)
203   EVT_MENU(MAINMENU_WINDOW_BASE+15, MainFrame::OnWindowMenu15)
204   EVT_MENU(MAINMENU_WINDOW_BASE+16, MainFrame::OnWindowMenu16)
205   EVT_MENU(MAINMENU_WINDOW_BASE+17, MainFrame::OnWindowMenu17)
206   EVT_MENU(MAINMENU_WINDOW_BASE+18, MainFrame::OnWindowMenu18)
207   EVT_MENU(MAINMENU_WINDOW_BASE+19, MainFrame::OnWindowMenu19)
208   EVT_UPDATE_UI_RANGE(MAINMENU_WINDOW_BASE, MAINMENU_WINDOW_BASE+20, MainFrame::OnUpdateUI)
209 END_EVENT_TABLE()
210
211
212
213 MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type)
214   : wxDocParentFrame(manager, frame, id, title, pos, size, type), m_pLog(NULL)
215 {
216     m_pLog = new wxTextCtrl (this, -1, "Log Window\n", wxPoint(0, 250), wxSize(100,50), wxTE_MULTILINE | wxTE_READONLY);
217     wxLog::SetActiveTarget(new wxLogTextCtrl(m_pLog));
218     CreateStatusBar();
219     SetStatusText ("Welcome to CTSim");
220
221     //// Make a menubar
222     wxMenu *file_menu = new wxMenu;
223     
224     file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...");
225     file_menu->Append(wxID_OPEN, "&Open...");
226     
227     file_menu->AppendSeparator();
228     file_menu->Append(MAINMENU_FILE_EXIT, "E&xit");
229     
230     //  history of files visited
231     m_docManager->FileHistoryUseMenu(file_menu);
232     
233     m_pWindowMenu = new wxMenu;
234     m_pWindowMenu->UpdateUI (this);
235
236     wxMenu* help_menu = new wxMenu;
237     help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents");
238     help_menu->AppendSeparator();
239     help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
240     
241     wxMenuBar* menu_bar = new wxMenuBar;
242     
243     menu_bar->Append(file_menu, "&File");
244     menu_bar->Append(m_pWindowMenu, "&Window");
245     menu_bar->Append(help_menu, "&Help");
246     
247     SetMenuBar(menu_bar);
248
249     for (int i = 0; i < MAX_WINDOW_MENUITEMS; i++) {
250       m_apWindowMenuItems[i] = new wxMenuItem (m_pWindowMenu, MAINMENU_WINDOW_BASE+i, wxString("<Empty>"));
251       m_pWindowMenu->Append (m_apWindowMenuItems[i]);
252       m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+i, false);
253     }
254 }
255
256 void 
257 MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
258 {\r
259         wxString msg = "CTSim\nThe Open Source Computed Tomography Simulator\n";\r
260 #ifdef CTSIMVERSION\r
261         msg += "Version ";\r
262         msg += CTSIMVERSION;\r
263         msg += "\n\n";\r
264 #elif defined(VERSION)\r
265         msg << "Version: " <<  VERSION << "\n\n";\r
266 #endif\r
267         msg += "Author: Kevin Rosenberg <kevin@rosenberg.net>\nUsage: ctsim [files-to-open..] [--help]";\r
268
269     wxMessageBox(msg, "About CTSim", wxOK | wxICON_INFORMATION, this);
270 }
271
272 void 
273 MainFrame::OnCreatePhantom(wxCommandEvent& WXUNUSED(event))
274 {
275     DialogGetPhantom dialogPhantom (this, Phantom::PHM_HERMAN);
276     int dialogReturn = dialogPhantom.ShowModal();
277     if (dialogReturn == wxID_OK) {
278       wxString selection (dialogPhantom.getPhantom());
279       *theApp->getLog() << "Selected phantom " << selection.c_str() << "\n";
280       wxString filename = selection + ".phm";
281       theApp->getDocManager()->CreateDocument(filename, wxDOC_SILENT);
282     }
283     
284 }
285
286 void 
287 MainFrame::OnHelpContents(wxCommandEvent& WXUNUSED(event) )
288 {
289     wxMessageBox("No help available, refer to man pages of command-line tools");
290 }
291
292 void 
293 MainFrame::OnExit (wxCommandEvent& WXUNUSED(event) )
294 {
295     Close(true);
296 }
297
298 void
299 MainFrame::OnUpdateUI (wxUpdateUIEvent& rEvent)
300 {
301   int iPos = 0;
302   wxList& rListDocs = m_docManager->GetDocuments();
303   wxNode* pNode = rListDocs.GetFirst();
304   while (iPos < MAX_WINDOW_MENUITEMS && pNode != NULL) {
305     wxDocument* pDoc = static_cast<wxDocument*>(pNode->GetData());
306     wxString strFilename = pDoc->GetFilename();
307     static_cast<wxMenuItemBase*>(m_apWindowMenuItems[iPos])->SetName (strFilename);
308     m_apWindowMenuData[iPos] = pDoc;
309     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+iPos, true);
310     iPos++;
311     pNode = pNode->GetNext();
312   }
313   for (int i = iPos; i < MAX_WINDOW_MENUITEMS; i++) {
314     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+i, false);
315     static_cast<wxMenuItemBase*>(m_apWindowMenuItems[i])->SetName (wxString("<Empty>"));
316     m_apWindowMenuData[i] = NULL;
317   }
318     
319 }
320
321 void 
322 MainFrame::DoWindowMenu (int iMenuPosition, wxCommandEvent& event)
323 {
324   if (wxDocument* pDoc = m_apWindowMenuData [iMenuPosition]) {
325     wxString strFilename = pDoc->GetFilename();
326     const wxView* pView = pDoc->GetFirstView();
327     if (pView) {
328       wxFrame* pFrame = pView->GetFrame();
329       pFrame->SetFocus();
330       pFrame->Raise();
331     }
332   }
333 }
334
335 void MainFrame::OnWindowMenu0 (wxCommandEvent& event)
336 { DoWindowMenu (0, event); }
337
338 void MainFrame::OnWindowMenu1 (wxCommandEvent& event)
339 { DoWindowMenu (1, event); }
340
341 void MainFrame::OnWindowMenu2 (wxCommandEvent& event)
342 { DoWindowMenu (2, event); }
343
344 void MainFrame::OnWindowMenu3 (wxCommandEvent& event)
345 { DoWindowMenu (3, event); }
346
347 void MainFrame::OnWindowMenu4 (wxCommandEvent& event)
348 { DoWindowMenu (4, event); }
349
350 void MainFrame::OnWindowMenu5 (wxCommandEvent& event)
351 { DoWindowMenu (5, event); }
352
353 void MainFrame::OnWindowMenu6 (wxCommandEvent& event)
354 { DoWindowMenu (6, event); }
355
356 void MainFrame::OnWindowMenu7 (wxCommandEvent& event)
357 { DoWindowMenu (7, event); }
358
359 void MainFrame::OnWindowMenu8 (wxCommandEvent& event)
360 { DoWindowMenu (8, event); }
361
362 void MainFrame::OnWindowMenu9 (wxCommandEvent& event)
363 { DoWindowMenu (9, event); }
364
365 void MainFrame::OnWindowMenu10 (wxCommandEvent& event)
366 { DoWindowMenu (10, event); }
367
368 void MainFrame::OnWindowMenu11 (wxCommandEvent& event)
369 { DoWindowMenu (11, event); }
370
371 void MainFrame::OnWindowMenu12 (wxCommandEvent& event)
372 { DoWindowMenu (12, event); }
373
374 void MainFrame::OnWindowMenu13 (wxCommandEvent& event)
375 { DoWindowMenu (13, event); }
376
377 void MainFrame::OnWindowMenu14 (wxCommandEvent& event)
378 { DoWindowMenu (14, event); }
379
380 void MainFrame::OnWindowMenu15 (wxCommandEvent& event)
381 { DoWindowMenu (15, event); }
382
383 void MainFrame::OnWindowMenu16 (wxCommandEvent& event)
384 { DoWindowMenu (16, event); }
385
386 void MainFrame::OnWindowMenu17 (wxCommandEvent& event)
387 { DoWindowMenu (17, event); }
388
389 void MainFrame::OnWindowMenu18 (wxCommandEvent& event)
390 { DoWindowMenu (18, event); }
391
392 void MainFrame::OnWindowMenu19 (wxCommandEvent& event)
393 { DoWindowMenu (19, event); }
394
395