r428: no 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.40 2001/01/20 17:43:41 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
28 #ifdef MSVC
29 #define strdup _strdup
30 #endif
31
32 // For compilers that support precompilation, includes "wx/wx.h".
33 #include "wx/wxprec.h"
34
35 #ifdef __BORLANDC__
36 #pragma hdrstop
37 #endif
38
39 #ifndef WX_PRECOMP
40 #include "wx/wx.h"
41 #endif
42
43 #include "wx/image.h"
44 #include "wx/filesys.h"
45 #include "wx/fs_zip.h"
46
47 #if !wxUSE_DOC_VIEW_ARCHITECTURE
48 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
49 #endif
50
51
52 #include "ct.h"
53 #include "ctsim.h"
54 #include "ctsim-map.h"
55 #include "docs.h"
56 #include "views.h"
57 #include "dialogs.h"
58
59 #if defined(HAVE_CONFIG_H)
60 #include "config.h"
61 #endif
62
63 #if defined(HAVE_GETOPT_H) || defined(HAVE_GETOPT_LONG)
64 #ifdef MSVC
65 #define __STDC__ 1
66 #endif
67 #include "getopt.h"
68 #ifdef MSVC
69 #undef __STDC__
70 #endif
71 #endif
72
73 static const char* rcsindent = "$Id: ctsim.cpp,v 1.40 2001/01/20 17:43:41 kevin Exp $";
74
75 struct option CTSimApp::ctsimOptions[] = 
76 {
77   {"help", 0, 0, O_HELP},
78   {"version", 0, 0, O_VERSION},
79   {0, 0, 0, 0}
80 };
81
82 IMPLEMENT_APP(CTSimApp)
83
84 CTSimApp::CTSimApp()
85 : m_docManager(NULL), m_pFrame(NULL), m_pLog(0)
86 {
87   theApp = this;
88 }
89
90 #ifdef HAVE_SYS_TIME_H
91 #include <sys/time.h>
92 #endif
93
94 #ifdef HAVE_SYS_RESOURCE_H
95 #include <sys/resource.h>
96 #endif
97
98 bool
99 CTSimApp::OnInit()
100 {
101 #ifdef HAVE_SETPRIORITY
102   setpriority (PRIO_PROCESS, 0, 15);  // set to low scheduling priority
103 #endif
104
105   m_pConfig = new wxConfig("ctsim");
106   wxConfigBase::Set(m_pConfig);
107
108   g_bRunningWXWindows = true;
109   // process options
110   while (1) {
111     int c = getopt_long (argc, argv, "", ctsimOptions, NULL);
112     if (c == -1)
113       break;
114     
115     switch (c) {
116     case O_VERSION:
117       std::cout << rcsindent << std::endl;
118 #ifdef CTSIMVERSION
119       std::cout << "Version: CTSIMVERSION" << std::endl;
120 #elif defined(VERSION)
121       std::cout << "Version: VERSION" << std::endl;
122 #endif
123       exit(0);
124     case O_HELP:
125     case '?':
126       usage (argv[0]);
127       exit (0);
128     default:
129       usage (argv[0]);
130       exit (1);
131     }
132   }
133   
134   m_docManager = new wxDocManager (wxDEFAULT_DOCMAN_FLAGS, true);
135   
136   new wxDocTemplate (m_docManager, "ImageFile", "*.if", "", "if", "ImageFile", "ImageView", CLASSINFO(ImageFileDocument), CLASSINFO(ImageFileView));
137   new wxDocTemplate (m_docManager, "ProjectionFile", "*.pj", "", "pj", "ProjectionFile", "ProjectionView", CLASSINFO(ProjectionFileDocument), CLASSINFO(ProjectionFileView));
138   new wxDocTemplate (m_docManager, "PhantomFile", "*.phm", "", "phm", "PhantomFile", "PhantomView", CLASSINFO(PhantomDocument), CLASSINFO(PhantomView));
139   new wxDocTemplate (m_docManager, "PlotFile", "*.plt", "", "plt", "PlotFile", "PlotView", CLASSINFO(PlotFileDocument), CLASSINFO(PlotFileView));
140   new wxDocTemplate (m_docManager, "TextEdit", "*.txt", "", "txt", "TextFile", "TextView", CLASSINFO(TextEditDocument), CLASSINFO(TextEditView), wxTEMPLATE_INVISIBLE);
141   
142 #if wxUSE_GIF
143   wxImage::AddHandler(new wxGIFHandler);     // Required for images in the online documentation
144 #endif
145   
146 #if wxUSE_STREAMS && wxUSE_ZIPSTREAM && wxUSE_ZLIB
147   wxFileSystem::AddHandler(new wxZipFSHandler);     // Required for advanced HTML help
148 #endif
149   
150   // Create the main frame window
151   m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), wxSize(500, 400), wxDEFAULT_FRAME_STYLE);
152   
153   setIconForFrame (m_pFrame);
154   m_pFrame->Centre(wxBOTH);
155   m_pFrame->Show(true);  
156   SetTopWindow (m_pFrame);
157
158   for (int i = optind + 1; i <= argc; i++) {
159     wxString filename = argv [i - 1];
160     m_docManager->CreateDocument (filename, wxDOC_SILENT);
161   }
162   
163   if (m_pConfig)
164     m_docManager->FileHistoryLoad(*m_pConfig);
165
166 #ifdef CTSIM_WINHELP
167   if (! m_pFrame->getWinHelpController().Initialize("ctsim"))
168     ::wxMessageBox ("Cannot initialize the help system", "Error");
169 #endif
170   if (! m_pFrame->getHtmlHelpController().Initialize(::wxGetCwd() + "/ctsim"))
171     ::wxMessageBox ("Cannot initialize the help system", "Error");
172
173 #ifdef CTSIM_MDI
174   TextEditDocument* pLogDoc = dynamic_cast<TextEditDocument*>(m_docManager->CreateDocument("Log.txt", wxDOC_SILENT));
175   if (pLogDoc) {
176     m_pLog = pLogDoc->getTextCtrl();
177   } else
178 #else
179     m_pLog = new wxTextCtrl (m_pFrame, -1, "Log Window\n", wxPoint(0, 0), wxSize(0,0), wxTE_MULTILINE | wxTE_READONLY);
180 #endif
181   wxLog::SetActiveTarget (new wxLogTextCtrl(m_pLog));
182
183   return true;
184 }
185
186
187 #include "./ctsim.xpm"
188 void
189 CTSimApp::setIconForFrame(wxFrame* pFrame)
190 {
191   wxIcon iconApp (ctsim16_xpm);
192   
193   if (iconApp.Ok())
194     pFrame->SetIcon (iconApp);
195 }
196
197 void
198 CTSimApp::usage(const char* program)
199 {
200   std::cout << "usage: " << fileBasename(program) << " [files-to-open...] [OPTIONS]\n";
201   std::cout << "Computed Tomography Simulator (Graphical Shell)\n";
202   std::cout << "\n";
203   std::cout << "  --version Display version\n";
204   std::cout << "  --help    Display this help message\n";
205 }
206
207 int
208 CTSimApp::OnExit()
209 {
210 #ifdef HAVE_DMALLOC
211   dmalloc_shutdown();
212 #endif
213   return 0;
214 }
215
216 wxString
217 CTSimApp::getUntitledFilename()
218 {
219   static int untitledNumber = 1;
220   
221   wxString filename ("Untitled");
222   filename << untitledNumber++;
223   
224   return (filename);
225 }
226
227
228 // Top-level window for CTSim
229
230 #if CTSIM_MDI
231 IMPLEMENT_CLASS(MainFrame, wxMDIParentFrame)
232
233 BEGIN_EVENT_TABLE(MainFrame, wxMDIParentFrame)
234 #else
235 IMPLEMENT_CLASS(MainFrame, wxDocParentFrame)
236
237 BEGIN_EVENT_TABLE(MainFrame, wxDocParentFrame)
238 #endif
239
240 EVT_MENU(MAINMENU_HELP_ABOUT, MainFrame::OnAbout)
241 EVT_MENU(MAINMENU_HELP_CONTENTS, MainFrame::OnHelpContents)
242 EVT_MENU(MAINMENU_HELP_TOPICS, MainFrame::OnHelpTopics)
243 EVT_SIZE(MainFrame::OnSize)
244
245 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
246 EVT_MENU(MAINMENU_HELP_SECONDARY, MainFrame::OnHelpSecondary)
247 #endif
248 EVT_MENU(MAINMENU_FILE_CREATE_PHANTOM, MainFrame::OnCreatePhantom)
249 EVT_MENU(MAINMENU_FILE_CREATE_FILTER, MainFrame::OnCreateFilter)
250 EVT_MENU(MAINMENU_FILE_EXIT, MainFrame::OnExit)
251 EVT_MENU_RANGE(wxID_FILE1, wxID_FILE9, MainFrame::OnMRUFile)
252 EVT_MENU(MAINMENU_WINDOW_BASE, MainFrame::OnWindowMenu0)
253 EVT_MENU(MAINMENU_WINDOW_BASE+1, MainFrame::OnWindowMenu1)
254 EVT_MENU(MAINMENU_WINDOW_BASE+2, MainFrame::OnWindowMenu2)
255 EVT_MENU(MAINMENU_WINDOW_BASE+3, MainFrame::OnWindowMenu3)
256 EVT_MENU(MAINMENU_WINDOW_BASE+4, MainFrame::OnWindowMenu4)
257 EVT_MENU(MAINMENU_WINDOW_BASE+5, MainFrame::OnWindowMenu5)
258 EVT_MENU(MAINMENU_WINDOW_BASE+6, MainFrame::OnWindowMenu6)
259 EVT_MENU(MAINMENU_WINDOW_BASE+7, MainFrame::OnWindowMenu7)
260 EVT_MENU(MAINMENU_WINDOW_BASE+8, MainFrame::OnWindowMenu8)
261 EVT_MENU(MAINMENU_WINDOW_BASE+9, MainFrame::OnWindowMenu9)
262 EVT_MENU(MAINMENU_WINDOW_BASE+10, MainFrame::OnWindowMenu10)
263 EVT_MENU(MAINMENU_WINDOW_BASE+11, MainFrame::OnWindowMenu11)
264 EVT_MENU(MAINMENU_WINDOW_BASE+12, MainFrame::OnWindowMenu12)
265 EVT_MENU(MAINMENU_WINDOW_BASE+13, MainFrame::OnWindowMenu13)
266 EVT_MENU(MAINMENU_WINDOW_BASE+14, MainFrame::OnWindowMenu14)
267 EVT_MENU(MAINMENU_WINDOW_BASE+15, MainFrame::OnWindowMenu15)
268 EVT_MENU(MAINMENU_WINDOW_BASE+16, MainFrame::OnWindowMenu16)
269 EVT_MENU(MAINMENU_WINDOW_BASE+17, MainFrame::OnWindowMenu17)
270 EVT_MENU(MAINMENU_WINDOW_BASE+18, MainFrame::OnWindowMenu18)
271 EVT_MENU(MAINMENU_WINDOW_BASE+19, MainFrame::OnWindowMenu19)
272 EVT_UPDATE_UI_RANGE(MAINMENU_WINDOW_BASE, MAINMENU_WINDOW_BASE+20, MainFrame::OnUpdateUI)
273 END_EVENT_TABLE()
274
275
276
277 #if CTSIM_MDI
278 MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type)
279 : wxDocMDIParentFrame(manager, NULL, id, title, pos, size, type, "MainFrame")
280 #else
281 MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type)
282 : wxDocParentFrame(manager, frame, id, title, pos, size, type, "MainFrame")
283 #endif
284 {
285   //// Make a menubar
286   wxMenu *file_menu = new wxMenu;
287   
288   file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
289   file_menu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
290   file_menu->Append(wxID_OPEN, "&Open...\tCtrl-O");
291   
292   file_menu->AppendSeparator();
293   file_menu->Append(MAINMENU_FILE_EXIT, "E&xit");
294   
295   //  history of files visited
296   theApp->getDocManager()->FileHistoryUseMenu(file_menu);
297
298 #ifndef CTSIM_MDI
299   m_pWindowMenu = new wxMenu;
300   m_pWindowMenu->UpdateUI (this);
301 #endif
302
303   wxMenu* help_menu = new wxMenu;
304   help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents\tF1");
305   help_menu->Append(MAINMENU_HELP_TOPICS, "&Topics\tCtrl-T");
306 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
307   help_menu->Append(MAINMENU_HELP_SECONDARY, "&Secondary Help");
308 #endif
309   help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
310   
311   wxMenuBar* menu_bar = new wxMenuBar;
312   
313   menu_bar->Append(file_menu, "&File");
314 #ifndef CTSIM_MDI
315   menu_bar->Append(m_pWindowMenu, "&Window");
316 #endif
317   menu_bar->Append(help_menu, "&Help");
318   
319   SetMenuBar(menu_bar);
320   
321 #ifndef CTSIM_MDI
322   for (int i = 0; i < MAX_WINDOW_MENUITEMS; i++) {
323     m_apWindowMenuItems[i] = new wxMenuItem (m_pWindowMenu, MAINMENU_WINDOW_BASE+i, wxString("[EMPTY]"));
324     m_pWindowMenu->Append (m_apWindowMenuItems[i]);
325     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+i, false);
326   }
327 #endif
328
329   m_iDefaultPhantomID = Phantom::PHM_HERMAN;
330   m_iDefaultFilterID = SignalFilter::FILTER_BANDLIMIT;
331   m_iDefaultFilterDomainID = SignalFilter::DOMAIN_FREQUENCY;
332   m_iDefaultFilterXSize = 256;
333   m_iDefaultFilterYSize = 256;
334   m_dDefaultFilterParam = 1.;
335   m_dDefaultFilterBandwidth = 1.;
336   m_dDefaultFilterInputScale = 1.;
337   m_dDefaultFilterOutputScale = 1.;
338   
339   wxAcceleratorEntry accelEntries[15];
340   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('O'), wxID_OPEN);
341   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('H'), MAINMENU_HELP_TOPICS);
342   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('P'), MAINMENU_FILE_CREATE_PHANTOM);
343   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('F'), MAINMENU_FILE_CREATE_FILTER);
344 #ifndef CTSIM_MDI
345   accelEntries[4].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS);
346   for (i = 0; i < 10; i++)
347     accelEntries[i+4].Set (wxACCEL_CTRL, static_cast<int>('0'+i), MAINMENU_WINDOW_BASE+i);
348   wxAcceleratorTable accelTable (15, accelEntries);
349 #else
350   wxAcceleratorTable accelTable (4, accelEntries);
351 #endif
352
353   SetAcceleratorTable (accelTable);
354 }
355
356 MainFrame::~MainFrame()
357 {
358     if (theApp->getConfig())
359       theApp->getDocManager()->FileHistorySave (*theApp->getConfig());
360     delete theApp->getDocManager();
361 }
362
363 void
364 MainFrame::OnSize (wxSizeEvent& event)
365 {
366   wxSize sizeClient = GetClientSize();
367   wxSize sizeLog = sizeClient;
368   if (sizeClient.y < 100) {
369     sizeLog.y = 0;
370     sizeLog.x = 0;
371   } else {
372     sizeLog.x = sizeClient.x;
373     sizeLog.y = 100;
374   }
375   sizeClient.x -= sizeLog.x;
376   sizeClient.y -= sizeLog.y;
377 //  m_pLog->SetSize (0, sizeClient.y, sizeLog.x, sizeLog.y);
378 //  GetClientWindow()->SetSize (0, 0, sizeClient.x, sizeClient.y);
379 //  GetClientWindow()->Refresh();
380 #if CTSIM_MDI
381   wxDocMDIParentFrame::OnSize (event);
382 #else
383   wxDocParentFrame::OnSize (event);
384 #endif
385 }
386
387 void 
388 MainFrame::OnCreatePhantom(wxCommandEvent& event)
389 {
390   DialogGetPhantom dialogPhantom (this, m_iDefaultPhantomID);
391   int dialogReturn = dialogPhantom.ShowModal();
392   if (dialogReturn == wxID_OK) {
393     wxString selection (dialogPhantom.getPhantom());
394     *theApp->getLog() << "Selected phantom " << selection.c_str() << "\n";
395     wxString filename = selection + ".phm";
396     m_iDefaultPhantomID = Phantom::convertNameToPhantomID (selection.c_str());
397     theApp->getDocManager()->CreateDocument(filename, wxDOC_SILENT);
398   }
399   
400 }
401
402 void 
403 MainFrame::OnCreateFilter (wxCommandEvent& WXUNUSED(event))
404 {
405   DialogGetFilterParameters dialogFilter (this, m_iDefaultFilterXSize, m_iDefaultFilterYSize, m_iDefaultFilterID, m_dDefaultFilterParam, m_dDefaultFilterBandwidth, m_iDefaultFilterDomainID, m_dDefaultFilterInputScale, m_dDefaultFilterOutputScale);
406   int dialogReturn = dialogFilter.ShowModal();
407   if (dialogReturn == wxID_OK) {
408     wxString strFilter (dialogFilter.getFilterName());
409     wxString strDomain (dialogFilter.getDomainName());
410     m_iDefaultFilterID = SignalFilter::convertFilterNameToID (strFilter.c_str());
411     m_iDefaultFilterDomainID = SignalFilter::convertDomainNameToID (strDomain.c_str());
412     m_iDefaultFilterXSize = dialogFilter.getXSize();
413     m_iDefaultFilterYSize = dialogFilter.getYSize();
414     m_dDefaultFilterBandwidth = dialogFilter.getBandwidth();
415     m_dDefaultFilterParam= dialogFilter.getFilterParam();
416     m_dDefaultFilterInputScale = dialogFilter.getInputScale();
417     m_dDefaultFilterOutputScale = dialogFilter.getOutputScale();
418     std::ostringstream os;
419     os << "Generate Filter=" << strFilter.c_str() 
420       << ", size=(" << static_cast<int>(m_iDefaultFilterXSize) << "," << static_cast<int>(m_iDefaultFilterYSize) 
421       << "), domain=" << strDomain.c_str() << ", filterParam=" << m_dDefaultFilterParam << ", bandwidth=" << m_dDefaultFilterBandwidth 
422       << ", inputScale=" << m_dDefaultFilterInputScale << ", outputScale=" << m_dDefaultFilterOutputScale;
423     *theApp->getLog() << os.str().c_str() << "\n";
424     wxString filename = "untitled.if";
425     ImageFileDocument* pFilterDoc = dynamic_cast<ImageFileDocument*>(theApp->getDocManager()->CreateDocument ("untitled.if", wxDOC_SILENT));
426     if (! pFilterDoc) {
427       sys_error (ERR_SEVERE, "Unable to create filter image");
428       return;
429     }
430     ImageFile& rIF = pFilterDoc->getImageFile();
431     rIF.setArraySize (m_iDefaultFilterXSize, m_iDefaultFilterYSize);
432     rIF.filterResponse (strDomain.c_str(), m_dDefaultFilterBandwidth, strFilter.c_str(), m_dDefaultFilterParam, m_dDefaultFilterInputScale, m_dDefaultFilterOutputScale);
433     rIF.labelAdd (os.str().c_str());
434     if (theApp->getSetModifyNewDocs())
435       pFilterDoc->Modify (true);
436     pFilterDoc->UpdateAllViews();
437     pFilterDoc->GetFirstView()->OnUpdate (NULL, NULL);
438   }
439 }
440
441 void
442 CTSimApp::getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector<ImageFileDocument*>& vecIF)
443 {
444   const ImageFile& rIF = pIFDoc->getImageFile();
445   unsigned int nx = rIF.nx();
446   unsigned int ny = rIF.ny();
447   wxList& rListDocs = m_docManager->GetDocuments();
448   for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) {
449     wxDocument* pDoc = reinterpret_cast<wxDocument*>(pNode->GetData());
450     ImageFileDocument* pIFCompareDoc = dynamic_cast<ImageFileDocument*>(pDoc);
451     if (pIFCompareDoc && (pIFDoc != pIFCompareDoc)) {
452       const ImageFile& rCompareIF = pIFCompareDoc->getImageFile();
453       if (rCompareIF.nx() == nx && rCompareIF.ny() == ny)
454         vecIF.push_back (pIFCompareDoc);
455     }
456   }
457 }
458
459 void 
460 MainFrame::OnHelpTopics (wxCommandEvent& event)
461 {
462   showHelp (event.GetId());
463 }
464
465 void 
466 MainFrame::OnHelpContents (wxCommandEvent& event)
467 {
468   showHelp (event.GetId());
469 }
470
471 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
472 void
473 MainFrame::OnHelpSecondary (wxCommandEvent& event)
474 {
475     m_htmlHelp.DisplayContents();
476 }
477 #endif
478
479 void
480 MainFrame::showHelp (int commandID)
481 {
482 #ifdef CTSIM_WINHELP
483   m_winHelp.LoadFile();
484 #else
485   m_htmlHelp.LoadFile();
486 #endif
487   
488   switch (commandID) {
489
490   case MAINMENU_HELP_CONTENTS:
491 #ifdef CTSIM_WINHELP
492     m_winHelp.DisplayContents ();
493 #else
494     m_htmlHelp.DisplayContents ();
495 #endif
496     break;
497
498   case MAINMENU_HELP_TOPICS:
499 #ifdef CTSIM_WINHELP
500     m_winHelp.DisplaySection (introduction);
501 #else
502     m_htmlHelp.DisplayIndex();
503 #endif
504     break;
505
506   default:
507     *theApp->getLog() << "Unknown help command # " << commandID << "\n";
508     break;
509   }
510 }
511
512 void 
513 MainFrame::OnExit (wxCommandEvent& WXUNUSED(event) )
514 {
515   Close(true);
516 }
517
518 void
519 MainFrame::OnUpdateUI (wxUpdateUIEvent& rEvent)
520 {
521   int iPos = 0;
522   wxList& rListDocs = theApp->getDocManager()->GetDocuments();
523   wxNode* pNode = rListDocs.GetFirst();
524   while (iPos < MAX_WINDOW_MENUITEMS && pNode != NULL) {
525     wxDocument* pDoc = static_cast<wxDocument*>(pNode->GetData());
526     wxString strFilename = pDoc->GetFilename();
527     if (iPos < 10) {
528       strFilename += "\tCtrl-";
529       strFilename += static_cast<char>('0' + iPos);
530     }
531     static_cast<wxMenuItemBase*>(m_apWindowMenuItems[iPos])->SetName (strFilename);
532     m_apWindowMenuData[iPos] = pDoc;
533     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+iPos, true);
534     iPos++;
535     pNode = pNode->GetNext();
536   }
537   for (int i = iPos; i < MAX_WINDOW_MENUITEMS; i++) {
538     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+i, false);
539     static_cast<wxMenuItemBase*>(m_apWindowMenuItems[i])->SetName (wxString("[EMPTY]"));
540     m_apWindowMenuData[i] = NULL;
541   }
542   
543 }
544
545 #ifdef CTSIM_CUSTOM_MRU
546 void 
547 MainFrame::OnMRUFile (wxCommandEvent& event)
548 {
549    wxString fileName (theApp->getDocManager()->GetHistoryFile(event.GetSelection()));
550    if (fileName != "")
551      theApp->getDocManager()->CreateDocument(fileName, wxDOC_SILENT);
552 }
553 #endif
554
555 void 
556 MainFrame::DoWindowMenu (int iMenuPosition, wxCommandEvent& event)
557 {
558   if (wxDocument* pDoc = m_apWindowMenuData [iMenuPosition]) {
559     wxString strFilename = pDoc->GetFilename();
560     const wxView* pView = pDoc->GetFirstView();
561     if (pView) {
562       wxFrame* pFrame = pView->GetFrame();
563       pFrame->SetFocus();
564       pFrame->Raise();
565     }
566   }
567 }
568
569 void MainFrame::OnWindowMenu0 (wxCommandEvent& event)
570 { DoWindowMenu (0, event); }
571
572 void MainFrame::OnWindowMenu1 (wxCommandEvent& event)
573 { DoWindowMenu (1, event); }
574
575 void MainFrame::OnWindowMenu2 (wxCommandEvent& event)
576 { DoWindowMenu (2, event); }
577
578 void MainFrame::OnWindowMenu3 (wxCommandEvent& event)
579 { DoWindowMenu (3, event); }
580
581 void MainFrame::OnWindowMenu4 (wxCommandEvent& event)
582 { DoWindowMenu (4, event); }
583
584 void MainFrame::OnWindowMenu5 (wxCommandEvent& event)
585 { DoWindowMenu (5, event); }
586
587 void MainFrame::OnWindowMenu6 (wxCommandEvent& event)
588 { DoWindowMenu (6, event); }
589
590 void MainFrame::OnWindowMenu7 (wxCommandEvent& event)
591 { DoWindowMenu (7, event); }
592
593 void MainFrame::OnWindowMenu8 (wxCommandEvent& event)
594 { DoWindowMenu (8, event); }
595
596 void MainFrame::OnWindowMenu9 (wxCommandEvent& event)
597 { DoWindowMenu (9, event); }
598
599 void MainFrame::OnWindowMenu10 (wxCommandEvent& event)
600 { DoWindowMenu (10, event); }
601
602 void MainFrame::OnWindowMenu11 (wxCommandEvent& event)
603 { DoWindowMenu (11, event); }
604
605 void MainFrame::OnWindowMenu12 (wxCommandEvent& event)
606 { DoWindowMenu (12, event); }
607
608 void MainFrame::OnWindowMenu13 (wxCommandEvent& event)
609 { DoWindowMenu (13, event); }
610
611 void MainFrame::OnWindowMenu14 (wxCommandEvent& event)
612 { DoWindowMenu (14, event); }
613
614 void MainFrame::OnWindowMenu15 (wxCommandEvent& event)
615 { DoWindowMenu (15, event); }
616
617 void MainFrame::OnWindowMenu16 (wxCommandEvent& event)
618 { DoWindowMenu (16, event); }
619
620 void MainFrame::OnWindowMenu17 (wxCommandEvent& event)
621 { DoWindowMenu (17, event); }
622
623 void MainFrame::OnWindowMenu18 (wxCommandEvent& event)
624 { DoWindowMenu (18, event); }
625
626 void MainFrame::OnWindowMenu19 (wxCommandEvent& event)
627 { DoWindowMenu (19, event); }
628
629
630 class BitmapControl : public wxPanel
631 {
632 private:  
633   DECLARE_DYNAMIC_CLASS (BitmapControl)
634     DECLARE_EVENT_TABLE ()
635     wxBitmap* m_pBitmap;
636   
637 public:
638   BitmapControl (wxBitmap* pBitmap, wxWindow *parent, wxWindowID id = -1,
639     const wxPoint& pos = wxDefaultPosition,
640     const wxSize& size = wxDefaultSize,
641     long style = wxSTATIC_BORDER,
642     const wxValidator& validator = wxDefaultValidator,
643     const wxString& name = "BitmapCtrl");
644   
645   
646   virtual ~BitmapControl();
647   
648   virtual wxSize GetBestSize() const;
649   
650   wxBitmap* getBitmap() 
651   { return m_pBitmap; }
652   
653   void OnPaint(wxPaintEvent& event);
654 };
655
656
657 BEGIN_EVENT_TABLE(BitmapControl, wxPanel)
658 EVT_PAINT(BitmapControl::OnPaint)
659 END_EVENT_TABLE()
660
661 IMPLEMENT_CLASS(BitmapControl, wxPanel)
662
663
664 BitmapControl::BitmapControl (wxBitmap* pBitmap, wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, 
665                               long style, const wxValidator& validator, const wxString& name)
666                               : m_pBitmap(pBitmap)
667 {
668   Create(parent, id, pos, size, style, name);
669   
670   SetSize (GetBestSize());
671 }
672
673 wxSize
674 BitmapControl::GetBestSize () const
675 {
676   if (m_pBitmap)
677     return wxSize (m_pBitmap->GetWidth(), m_pBitmap->GetHeight());
678   else
679     return wxSize(0,0);
680 }
681
682 BitmapControl::~BitmapControl()
683 {}
684
685 void
686 BitmapControl::OnPaint (wxPaintEvent& event)
687 {
688   wxPaintDC dc(this);
689   if (m_pBitmap)
690     dc.DrawBitmap (*m_pBitmap, 0, 0);
691 }
692
693
694 class BitmapDialog : public wxDialog {
695 private:
696   BitmapControl* m_pBitmapCtrl;
697   
698 public:
699   BitmapDialog (wxBitmap* pBitmap, char const* pszTitle);
700   virtual ~BitmapDialog();
701 };
702
703 BitmapDialog::BitmapDialog (wxBitmap* pBitmap, char const* pszTitle)
704 : wxDialog(theApp->getMainFrame(), -1, wxString(pszTitle), wxDefaultPosition, wxDefaultSize, wxDIALOG_MODAL | wxDEFAULT_DIALOG_STYLE)
705 {
706   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
707   
708   pTopSizer->Add (new BitmapControl (pBitmap, this), 0, wxALIGN_CENTER | wxALL, 5);
709   
710   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
711   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Ok");
712   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
713   
714   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
715   
716   SetAutoLayout (true);
717   SetSizer (pTopSizer);
718   pTopSizer->Fit (this);
719   pTopSizer->SetSizeHints (this);
720 }
721
722 BitmapDialog::~BitmapDialog()
723 {}
724
725
726 #include "./splash.xpm"
727 void 
728 MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
729 {
730   wxBitmap bmp (splash);
731   if (bmp.Ok()) {
732     BitmapDialog dlg (&bmp, "About CTSim");
733     dlg.Show(true);
734   } else {
735     wxString msg = "CTSim\nThe Open Source Computed Tomography Simulator\n";
736 #ifdef CTSIMVERSION
737     msg += "Version ";
738     msg += CTSIMVERSION;
739     msg += "\n\n";
740 #elif defined(VERSION)
741     msg << "Version: " <<  VERSION << "\n\n";
742 #endif
743     msg += "Author: Kevin Rosenberg <kevin@rosenberg.net>\nUsage: ctsim [files-to-open..] [--help]";
744     
745     wxMessageBox(msg, "About CTSim", wxOK | wxICON_INFORMATION, this);
746   }
747 }
748