r1883: *** 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-2001 Kevin Rosenberg
11 **
12 **  $Id: ctsim.cpp,v 1.107 2002/05/03 09:57: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 #include "wx/wxprec.h"
33
34 #ifndef WX_PRECOMP
35 #include "wx/wx.h"
36 #endif
37
38 #include "wx/image.h"
39 #include "wx/filesys.h"
40 #include "wx/fs_zip.h"
41 #ifdef __WXMSW__
42 #include "wx/msw/helpchm.h"
43 #endif
44
45 #if !wxUSE_DOC_VIEW_ARCHITECTURE
46 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
47 #endif
48
49
50 #include "ct.h"
51 #include "ctndicom.h"
52 #include "ctsim.h"
53 #include "docs.h"
54 #include "views.h"
55 #include "dialogs.h"
56 #include "tips.h"
57 #include "backgroundmgr.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.107 2002/05/03 09:57:41 kevin Exp $";
74
75 struct option CTSimApp::ctsimOptions[] = 
76 {
77   {"help", 0, 0, O_HELP},
78   {"version", 0, 0, O_VERSION},
79   {"print", 0, 0, O_PRINT},
80   {0, 0, 0, 0}
81 };
82
83 IMPLEMENT_APP(CTSimApp)
84
85 CTSimApp::CTSimApp()
86 :  m_bAdvancedOptions(false), m_bSetModifyNewDocs(true), m_bVerboseLogging(false), m_bShowStartupTips(true),
87 m_iCurrentTip(0), m_bUseBackgroundTasks(false),
88 m_docManager(NULL), m_pFrame(NULL), m_pConfig(0), m_pLog(0), m_pLogDoc(0)
89 {
90   theApp = this;
91 }
92
93 #ifdef HAVE_SYS_TIME_H
94 #include <sys/time.h>
95 #endif
96
97 #ifdef HAVE_SYS_RESOURCE_H
98 #include <sys/resource.h>
99 #endif
100
101 bool
102 CTSimApp::OnInit()
103 {
104 #ifdef HAVE_SETPRIORITY
105   setpriority (PRIO_PROCESS, 0, 15);  // set to low scheduling priority
106 #endif
107   
108   openConfig();
109   
110   g_bRunningWXWindows = true;
111   bool bPrintFiles = false;
112   // process options
113   while (1) {
114     int c = getopt_long (argc, argv, "", ctsimOptions, NULL);
115     if (c == -1)
116       break;
117     
118     switch (c) {
119     case O_VERSION:
120       std::cout << rcsindent << std::endl;
121 #ifdef CTSIMVERSION
122       std::cout << "Version: CTSIMVERSION" << std::endl;
123 #elif defined(VERSION)
124       std::cout << "Version: VERSION" << std::endl;
125 #endif
126       exit(0);
127     case O_HELP:
128     case '?':
129       usage (argv[0]);
130       exit (0);
131     case O_PRINT:
132       bPrintFiles = true;
133       break;
134     default:
135       usage (argv[0]);
136       exit (1);
137     }
138   }
139   
140   m_docManager = new wxDocManager (wxDEFAULT_DOCMAN_FLAGS, true);
141   
142   m_pDocTemplImage = new wxDocTemplate (m_docManager, "ImageFile", "*.if", "", "if", "ImageFile", "ImageView", CLASSINFO(ImageFileDocument), CLASSINFO(ImageFileView));
143   m_pDocTemplProjection = new wxDocTemplate (m_docManager, "ProjectionFile", "*.pj", "", "pj", "ProjectionFile", "ProjectionView", CLASSINFO(ProjectionFileDocument), CLASSINFO(ProjectionFileView));
144   m_pDocTemplPhantom = new wxDocTemplate (m_docManager, "PhantomFile", "*.phm", "", "phm", "PhantomFile", "PhantomView", CLASSINFO(PhantomFileDocument), CLASSINFO(PhantomFileView));
145   m_pDocTemplPlot = new wxDocTemplate (m_docManager, "PlotFile", "*.plt", "", "plt", "PlotFile", "PlotView", CLASSINFO(PlotFileDocument), CLASSINFO(PlotFileView));
146   m_pDocTemplText = new wxDocTemplate (m_docManager, "TextFile", "*.txt", "", "txt", "TextFile", "TextView", CLASSINFO(TextFileDocument), CLASSINFO(TextFileView), wxTEMPLATE_INVISIBLE);
147 #if wxUSE_GLCANVAS
148   m_pDocTemplGraph3d = new wxDocTemplate (m_docManager, "Graph3dFile", "*.g3d", "", "g3d", "Graph3dFile", "Graph3dView", CLASSINFO(Graph3dFileDocument), CLASSINFO(Graph3dFileView), wxTEMPLATE_INVISIBLE);
149 #endif
150   
151 #if wxUSE_GIF
152   wxImage::AddHandler(new wxGIFHandler);     // Required for images in the online documentation
153 #endif
154   
155 #if wxUSE_STREAMS && wxUSE_ZIPSTREAM && wxUSE_ZLIB
156   wxFileSystem::AddHandler(new wxZipFSHandler);     // Required for advanced HTML help
157 #endif
158   
159   // Create the main frame window
160   int xDisplay, yDisplay;
161   ::wxDisplaySize (&xDisplay, &yDisplay);
162
163   m_pFrame = new MainFrame(m_docManager, (wxFrame *) NULL, -1, "CTSim", wxPoint(0, 0), 
164 #ifdef CTSIM_MDI
165     wxSize(nearest<int>(xDisplay * .75), nearest<int>(yDisplay * .75)), 
166 #else
167     wxSize(nearest<int>(xDisplay * .25), nearest<int>(yDisplay * .25)), 
168 #endif
169     wxDEFAULT_FRAME_STYLE);
170   
171   setIconForFrame (m_pFrame);
172   m_pFrame->Centre(wxBOTH);
173   m_pFrame->Show(true);  
174   SetTopWindow (m_pFrame);
175   
176   if (m_pConfig)
177     m_docManager->FileHistoryLoad(*m_pConfig);
178   
179 #ifdef CTSIM_MDI
180   m_pLogDoc = newTextDoc();
181   if (m_pLogDoc) {
182     m_pLog = m_pLogDoc->getTextCtrl();
183     m_pLogDoc->SetDocumentName("Log.txt");
184     m_pLogDoc->SetFilename("Log.txt");
185     m_pLogDoc->getView()->getFrame()->SetTitle("Log");
186     int xSize, ySize;
187     m_pFrame->GetClientSize(&xSize, &ySize);
188     int yLogSize = ySize / 4;
189     m_pLogDoc->getView()->getFrame()->SetClientSize (0, ySize - yLogSize, xSize, yLogSize);
190     m_pLogDoc->getView()->getFrame()->Show (true);
191   } else
192 #else
193     m_pLog = new wxTextCtrl (m_pFrame, -1, "Log Window\n", wxPoint(0, 0), wxSize(0,0), wxTE_MULTILINE | wxTE_READONLY);
194 #endif
195   wxLog::SetActiveTarget (new wxLogTextCtrl(m_pLog));
196   
197   wxString helpDir;
198   if (! m_pConfig->Read("HelpDir", &helpDir))
199     helpDir = ::wxGetCwd();
200 #ifdef CTSIM_WINHELP
201   if (! m_pFrame->getWinHelpController().Initialize(helpDir + "/ctsim"))
202     *m_pLog << "Cannot initialize the Windows Help system" << "\n";
203 #else
204   if (! m_pFrame->getHtmlHelpController().Initialize("/usr/share/ctsim/ctsim") &&
205     ! m_pFrame->getHtmlHelpController().Initialize("/usr/local/share/ctsim/ctsim"))
206     *m_pLog << "Cannot initialize the HTML Help system" << "\n";
207   else {
208     if (::wxDirExists ("/tmp"))
209       m_pFrame->getHtmlHelpController().SetTempDir(_T("/tmp"));
210     m_pFrame->getHtmlHelpController().UseConfig (m_pConfig);
211   }
212 #endif
213   
214   for (int i = optind + 1; i <= argc; i++) {
215     wxString filename = argv [i - 1];
216     wxDocument* pNewDoc = m_docManager->CreateDocument (filename, wxDOC_SILENT);
217     if (bPrintFiles) {
218       wxView* pNewView = pNewDoc->GetFirstView();
219       wxPrintout *printout = pNewView->OnCreatePrintout();
220       if (printout) {
221         wxPrinter printer;
222         printer.Print(pNewView->GetFrame(), printout, TRUE);
223         delete printout;
224       }
225       wxCommandEvent nullEvent;
226       nullEvent.SetId (wxID_CLOSE);
227       m_docManager->OnFileClose (nullEvent);
228     }
229   }
230   if (bPrintFiles) {
231     wxCommandEvent closeEvent;
232     closeEvent.SetInt (MAINMENU_FILE_EXIT);
233     m_pFrame->AddPendingEvent(closeEvent);
234   }
235   
236   if (getStartupTips())
237     ShowTips();
238   
239 #ifdef HAVE_WXTHREADS
240   m_pBackgroundMgr = new BackgroundManager;
241 #endif
242
243   return true;
244 }
245
246 void
247 CTSimApp::ShowTips()
248 {
249   CTSimTipProvider tipProvider (m_iCurrentTip);
250   setStartupTips (::wxShowTip (m_pFrame, &tipProvider, getStartupTips()));
251   m_iCurrentTip = tipProvider.GetCurrentTip();
252 }
253
254
255 #include "./ctsim.xpm"
256 void
257 CTSimApp::setIconForFrame(wxFrame* pFrame)
258 {
259   wxIcon iconApp (ctsim16_xpm);
260   
261   if (iconApp.Ok())
262     pFrame->SetIcon (iconApp);
263 }
264
265 void
266 CTSimApp::usage(const char* program)
267 {
268   std::cout << "usage: " << fileBasename(program) << " [files-to-open...] [OPTIONS]\n";
269   std::cout << "Computed Tomography Simulator (Graphical Shell)\n";
270   std::cout << "\n";
271   std::cout << "  --version Display version\n";
272   std::cout << "  --help    Display this help message\n";
273 }
274
275 int
276 CTSimApp::OnExit()
277 {
278   closeConfig();
279   
280 #ifdef HAVE_DMALLOC
281   dmalloc_shutdown();
282 #endif
283   return 0;
284 }
285
286 void
287 CTSimApp::openConfig()
288 {
289 #ifdef MSVC
290   m_pConfig = new wxConfig("ctsim", "Kevin Rosenberg", "", "", wxCONFIG_USE_LOCAL_FILE);
291 #else
292   m_pConfig = new wxConfig("ctsim", "Kevin Rosenberg", ".ctsim", "", wxCONFIG_USE_LOCAL_FILE);
293 #endif
294   
295   wxConfigBase::Set(m_pConfig);
296   m_pConfig->Read ("AdvancedOptions", &m_bAdvancedOptions);
297   m_pConfig->Read ("SetModifyNewDocs", &m_bSetModifyNewDocs);
298   m_pConfig->Read ("VerboseLogging", &m_bVerboseLogging);
299   m_pConfig->Read ("StartupTips", &m_bShowStartupTips);
300   m_pConfig->Read ("CurrentTip", &m_iCurrentTip);
301   m_pConfig->Read ("UseBackgroundTasks", &m_bUseBackgroundTasks);
302 #ifdef HAVE_FFTW
303   wxString strFftwWisdom;
304   m_pConfig->Read ("FftwWisdom", strFftwWisdom);
305   if (strFftwWisdom.size() > 0)
306     fftw_import_wisdom_from_string (strFftwWisdom.c_str());
307 #endif
308 }
309
310 void
311 CTSimApp::closeConfig()
312 {
313   m_pConfig->Write ("AdvancedOptions", m_bAdvancedOptions);
314   m_pConfig->Write ("SetModifyNewDocs", m_bSetModifyNewDocs);
315   m_pConfig->Write ("VerboseLogging", m_bVerboseLogging);
316   m_pConfig->Write ("StartupTips", m_bShowStartupTips);
317   m_pConfig->Write ("CurrentTip", m_iCurrentTip);
318   m_pConfig->Write ("UseBackgroundTasks", m_bUseBackgroundTasks);
319 #ifdef HAVE_FFTW
320   const char* const pszWisdom = fftw_export_wisdom_to_string();
321   wxString strFftwWisdom (pszWisdom);
322   fftw_free ((void*) pszWisdom);
323   m_pConfig->Write ("FftwWisdom", strFftwWisdom);
324 #endif
325
326   delete m_pConfig;
327 }
328
329
330 wxString
331 CTSimApp::getUntitledFilename()
332 {
333   static int untitledNumber = 1;
334   
335   wxString filename ("Untitled");
336   filename << untitledNumber++;
337   
338   return (filename);
339 }
340
341
342 // Top-level window for CTSim
343
344 #if CTSIM_MDI
345 IMPLEMENT_CLASS(MainFrame, wxMDIParentFrame)
346
347 BEGIN_EVENT_TABLE(MainFrame, wxMDIParentFrame)
348 #else
349 IMPLEMENT_CLASS(MainFrame, wxDocParentFrame)
350
351 BEGIN_EVENT_TABLE(MainFrame, wxDocParentFrame)
352 #endif
353
354 EVT_MENU(MAINMENU_FILE_PREFERENCES, MainFrame::OnPreferences)
355 EVT_MENU(MAINMENU_HELP_ABOUT, MainFrame::OnAbout)
356 EVT_MENU(MAINMENU_HELP_CONTENTS, MainFrame::OnHelpContents)
357 EVT_MENU(MAINMENU_HELP_TIPS, MainFrame::OnHelpTips)
358 EVT_MENU(MAINMENU_IMPORT, MainFrame::OnImport)
359 EVT_MENU(IDH_QUICKSTART, MainFrame::OnHelpButton)
360 EVT_MENU(MAINMENU_LOG_EVENT, MainFrame::OnLogEvent)
361 EVT_MENU(NEW_IMAGEFILE_EVENT, MainFrame::OnNewImageFile)
362 EVT_MENU(NEW_PROJECTIONFILE_EVENT, MainFrame::OnNewProjectionFile)
363 EVT_BUTTON(IDH_DLG_RASTERIZE, MainFrame::OnHelpButton)
364 EVT_BUTTON(IDH_DLG_PROJECTIONS, MainFrame::OnHelpButton)
365 EVT_BUTTON(IDH_DLG_RECONSTRUCTION, MainFrame::OnHelpButton)
366 EVT_BUTTON(IDH_DLG_FILTER, MainFrame::OnHelpButton)
367 EVT_BUTTON(IDH_DLG_MINMAX, MainFrame::OnHelpButton)
368 EVT_BUTTON(IDH_DLG_EXPORT, MainFrame::OnHelpButton)
369 EVT_BUTTON(IDH_DLG_PHANTOM, MainFrame::OnHelpButton)
370 EVT_BUTTON(IDH_DLG_COMPARISON, MainFrame::OnHelpButton)
371 EVT_BUTTON(IDH_DLG_PREFERENCES, MainFrame::OnHelpButton)
372 EVT_BUTTON(IDH_DLG_POLAR, MainFrame::OnHelpButton)
373 EVT_BUTTON(IDH_DLG_AUTOSCALE, MainFrame::OnHelpButton)
374
375 EVT_SIZE(MainFrame::OnSize)
376
377 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
378 EVT_MENU(MAINMENU_HELP_SECONDARY, MainFrame::OnHelpSecondary)
379 #endif
380 EVT_MENU(MAINMENU_FILE_CREATE_PHANTOM, MainFrame::OnCreatePhantom)
381 EVT_MENU(MAINMENU_FILE_CREATE_FILTER, MainFrame::OnCreateFilter)
382 EVT_MENU(MAINMENU_FILE_EXIT, MainFrame::OnExit)
383 EVT_MENU_RANGE(wxID_FILE1, wxID_FILE9, MainFrame::OnMRUFile)
384 EVT_MENU(MAINMENU_WINDOW_BASE, MainFrame::OnWindowMenu0)
385 EVT_MENU(MAINMENU_WINDOW_BASE+1, MainFrame::OnWindowMenu1)
386 EVT_MENU(MAINMENU_WINDOW_BASE+2, MainFrame::OnWindowMenu2)
387 EVT_MENU(MAINMENU_WINDOW_BASE+3, MainFrame::OnWindowMenu3)
388 EVT_MENU(MAINMENU_WINDOW_BASE+4, MainFrame::OnWindowMenu4)
389 EVT_MENU(MAINMENU_WINDOW_BASE+5, MainFrame::OnWindowMenu5)
390 EVT_MENU(MAINMENU_WINDOW_BASE+6, MainFrame::OnWindowMenu6)
391 EVT_MENU(MAINMENU_WINDOW_BASE+7, MainFrame::OnWindowMenu7)
392 EVT_MENU(MAINMENU_WINDOW_BASE+8, MainFrame::OnWindowMenu8)
393 EVT_MENU(MAINMENU_WINDOW_BASE+9, MainFrame::OnWindowMenu9)
394 EVT_MENU(MAINMENU_WINDOW_BASE+10, MainFrame::OnWindowMenu10)
395 EVT_MENU(MAINMENU_WINDOW_BASE+11, MainFrame::OnWindowMenu11)
396 EVT_MENU(MAINMENU_WINDOW_BASE+12, MainFrame::OnWindowMenu12)
397 EVT_MENU(MAINMENU_WINDOW_BASE+13, MainFrame::OnWindowMenu13)
398 EVT_MENU(MAINMENU_WINDOW_BASE+14, MainFrame::OnWindowMenu14)
399 EVT_MENU(MAINMENU_WINDOW_BASE+15, MainFrame::OnWindowMenu15)
400 EVT_MENU(MAINMENU_WINDOW_BASE+16, MainFrame::OnWindowMenu16)
401 EVT_MENU(MAINMENU_WINDOW_BASE+17, MainFrame::OnWindowMenu17)
402 EVT_MENU(MAINMENU_WINDOW_BASE+18, MainFrame::OnWindowMenu18)
403 EVT_MENU(MAINMENU_WINDOW_BASE+19, MainFrame::OnWindowMenu19)
404 EVT_UPDATE_UI_RANGE(MAINMENU_WINDOW_BASE, MAINMENU_WINDOW_BASE+20, MainFrame::OnUpdateUI)
405 END_EVENT_TABLE()
406
407
408
409 #if CTSIM_MDI
410 MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type)
411 : wxDocMDIParentFrame(manager, NULL, id, title, pos, size, type, "MainFrame")
412 #else
413 MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type)
414 : wxDocParentFrame(manager, frame, id, title, pos, size, type, "MainFrame")
415 #endif
416 {
417   m_bShuttingDown = false;
418   
419   //// Make a menubar
420   wxMenu *file_menu = new wxMenu;
421   
422   file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
423   file_menu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
424   file_menu->Append(wxID_OPEN, "&Open...\tCtrl-O");
425   
426   file_menu->AppendSeparator();
427   file_menu->Append (MAINMENU_IMPORT, "&Import...\tCtrl-M");
428   file_menu->Append (MAINMENU_FILE_PREFERENCES, "Prefere&nces...");
429   file_menu->Append(MAINMENU_FILE_EXIT, "E&xit");
430   
431   //  history of files visited
432   theApp->getDocManager()->FileHistoryAddFilesToMenu(file_menu);
433   theApp->getDocManager()->FileHistoryUseMenu(file_menu);
434   
435 #ifndef CTSIM_MDI
436   m_pWindowMenu = new wxMenu;
437   m_pWindowMenu->UpdateUI (this);
438 #endif
439   
440   wxMenu* help_menu = new wxMenu;
441   help_menu->Append (MAINMENU_HELP_CONTENTS, "&Contents\tF1");
442   help_menu->Append (MAINMENU_HELP_TIPS, "&Tips");
443   help_menu->Append (IDH_QUICKSTART, "&Quick Start");
444 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
445   help_menu->Append (MAINMENU_HELP_SECONDARY, "&Secondary Help");
446 #endif
447   help_menu->Append (MAINMENU_HELP_ABOUT, "&About");
448   
449   wxMenuBar* menu_bar = new wxMenuBar;
450   
451   menu_bar->Append(file_menu, "&File");
452 #ifndef CTSIM_MDI
453   menu_bar->Append(m_pWindowMenu, "&Window");
454 #endif
455   menu_bar->Append(help_menu, "&Help");
456   
457   SetMenuBar(menu_bar);
458   
459   
460 #ifndef CTSIM_MDI
461   int i;
462   for (i = 0; i < MAX_WINDOW_MENUITEMS; i++) {
463     m_apWindowMenuItems[i] = new wxMenuItem (m_pWindowMenu, MAINMENU_WINDOW_BASE+i, wxString("[EMPTY]"));
464     m_pWindowMenu->Append (m_apWindowMenuItems[i]);
465     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+i, false);
466   }
467 #endif
468   
469   m_iDefaultPhantomID = Phantom::PHM_HERMAN;
470   m_iDefaultFilterID = SignalFilter::FILTER_BANDLIMIT;
471   m_iDefaultFilterDomainID = SignalFilter::DOMAIN_FREQUENCY;
472   m_iDefaultFilterXSize = 256;
473   m_iDefaultFilterYSize = 256;
474   m_dDefaultFilterParam = 1.;
475   m_dDefaultFilterBandwidth = 1.;
476   m_dDefaultFilterInputScale = 1.;
477   m_dDefaultFilterOutputScale = 1.;
478   m_iDefaultImportFormat = ImageFile::IMPORT_FORMAT_PNG;
479   
480   wxAcceleratorEntry accelEntries[15];
481   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('O'), wxID_OPEN);
482   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('P'), MAINMENU_FILE_CREATE_PHANTOM);
483   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('F'), MAINMENU_FILE_CREATE_FILTER);
484   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('M'), MAINMENU_IMPORT);
485   accelEntries[4].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS);
486 #ifndef CTSIM_MDI
487   for (i = 0; i < 10; i++)
488     accelEntries[i+5].Set (wxACCEL_CTRL, static_cast<int>('0'+i), MAINMENU_WINDOW_BASE+i);
489   wxAcceleratorTable accelTable (15, accelEntries);
490 #else
491   wxAcceleratorTable accelTable (5, accelEntries);
492 #endif
493   
494   SetAcceleratorTable (accelTable);
495 }
496
497 MainFrame::~MainFrame()
498 {
499   m_bShuttingDown = true; // Currently used so that Log Window will close
500 #if 0
501   // delete all non-modified documents
502   wxList& rListDocs = theApp->getDocManager()->GetDocuments();
503   for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) {
504     wxDocument* pDoc = dynamic_cast<wxDocument*>(pNode->GetData());
505     if (pDoc && ! pDoc->IsModified()) {
506       theApp->getDocManager()->RemoveDocument(pDoc);
507       delete pDoc;
508     }
509   }
510 #endif
511   ::wxYield();
512   if (theApp->getConfig())
513     theApp->getDocManager()->FileHistorySave (*theApp->getConfig());
514   ::wxYield();
515   delete theApp->getDocManager();       
516   
517 }
518
519 void
520 MainFrame::OnSize (wxSizeEvent& event)
521 {
522 #ifdef CTSIM_MDI
523   if (theApp->getLogDoc()) {
524     int xSize, ySize;   
525     GetClientSize(&xSize, &ySize);
526     int yLogSize = ySize / 4;
527     theApp->getLogDoc()->getView()->getFrame()->SetSize (0, ySize - yLogSize, xSize, yLogSize);
528     theApp->getLogDoc()->getView()->getFrame()->Show (true);
529   }
530 #endif
531   
532 #if CTSIM_MDI
533   wxDocMDIParentFrame::OnSize (event);
534 #else
535   wxDocParentFrame::OnSize (event);
536 #endif
537 }
538
539 void 
540 MainFrame::OnCreatePhantom(wxCommandEvent& event)
541 {
542   DialogGetPhantom dialogPhantom (this, m_iDefaultPhantomID);
543   int dialogReturn = dialogPhantom.ShowModal();
544   if (dialogReturn == wxID_OK) {
545     wxString selection (dialogPhantom.getPhantom());
546     if (theApp->getVerboseLogging())
547       *theApp->getLog() << "Selected phantom " << selection.c_str() << "\n";
548     wxString filename = selection + ".phm";
549     m_iDefaultPhantomID = Phantom::convertNameToPhantomID (selection.c_str());
550     theApp->getDocManager()->CreateDocument (filename, wxDOC_SILENT);
551   }
552   
553 }
554
555 void 
556 MainFrame::OnCreateFilter (wxCommandEvent& WXUNUSED(event))
557 {
558   DialogGetFilterParameters dialogFilter (this, m_iDefaultFilterXSize, m_iDefaultFilterYSize, m_iDefaultFilterID, m_dDefaultFilterParam, m_dDefaultFilterBandwidth, m_iDefaultFilterDomainID, m_dDefaultFilterInputScale, m_dDefaultFilterOutputScale);
559   int dialogReturn = dialogFilter.ShowModal();
560   if (dialogReturn == wxID_OK) {
561     wxString strFilter (dialogFilter.getFilterName());
562     wxString strDomain (dialogFilter.getDomainName());
563     m_iDefaultFilterID = SignalFilter::convertFilterNameToID (strFilter.c_str());
564     m_iDefaultFilterDomainID = SignalFilter::convertDomainNameToID (strDomain.c_str());
565     m_iDefaultFilterXSize = dialogFilter.getXSize();
566     m_iDefaultFilterYSize = dialogFilter.getYSize();
567     m_dDefaultFilterBandwidth = dialogFilter.getBandwidth();
568     m_dDefaultFilterParam= dialogFilter.getFilterParam();
569     m_dDefaultFilterInputScale = dialogFilter.getInputScale();
570     m_dDefaultFilterOutputScale = dialogFilter.getOutputScale();
571     std::ostringstream os;
572     os << "Generate Filter=" << strFilter.c_str() 
573       << ", size=(" << static_cast<int>(m_iDefaultFilterXSize) << "," << static_cast<int>(m_iDefaultFilterYSize) 
574       << "), domain=" << strDomain.c_str() << ", filterParam=" << m_dDefaultFilterParam << ", bandwidth=" << m_dDefaultFilterBandwidth 
575       << ", inputScale=" << m_dDefaultFilterInputScale << ", outputScale=" << m_dDefaultFilterOutputScale;
576     *theApp->getLog() << os.str().c_str() << "\n";
577     wxString filename = "untitled.if";
578     ImageFileDocument* pFilterDoc = theApp->newImageDoc();
579     pFilterDoc->setBadFileOpen();
580     if (! pFilterDoc) {
581       sys_error (ERR_SEVERE, "Unable to create filter image");
582       return;
583     }
584     ImageFile& rIF = pFilterDoc->getImageFile();
585     rIF.setArraySize (m_iDefaultFilterXSize, m_iDefaultFilterYSize);
586     rIF.filterResponse (strDomain.c_str(), m_dDefaultFilterBandwidth, strFilter.c_str(), m_dDefaultFilterParam, m_dDefaultFilterInputScale, m_dDefaultFilterOutputScale);
587     rIF.labelAdd (os.str().c_str());
588     if (theApp->getAskDeleteNewDocs())
589       pFilterDoc->Modify (true);
590     pFilterDoc->UpdateAllViews();
591     pFilterDoc->GetFirstView()->OnUpdate (NULL, NULL);
592     pFilterDoc->getView()->getFrame()->SetClientSize(m_iDefaultFilterXSize, m_iDefaultFilterYSize);
593     pFilterDoc->getView()->getFrame()->Show(true);
594   }
595 }
596
597 void
598 CTSimApp::getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector<ImageFileDocument*>& vecIF)
599 {
600   const ImageFile& rIF = pIFDoc->getImageFile();
601   unsigned int nx = rIF.nx();
602   unsigned int ny = rIF.ny();
603   wxList& rListDocs = m_docManager->GetDocuments();
604   for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) {
605     wxDocument* pDoc = reinterpret_cast<wxDocument*>(pNode->GetData());
606     ImageFileDocument* pIFCompareDoc = dynamic_cast<ImageFileDocument*>(pDoc);
607     if (pIFCompareDoc && (pIFDoc != pIFCompareDoc)) {
608       const ImageFile& rCompareIF = pIFCompareDoc->getImageFile();
609       if (rCompareIF.nx() == nx && rCompareIF.ny() == ny)
610         vecIF.push_back (pIFCompareDoc);
611     }
612   }
613 }
614
615
616 void
617 MainFrame::OnNewImageFile (wxCommandEvent& event)
618 {
619   ImageFile* pImageFile = reinterpret_cast<ImageFile*>(event.GetClientData());
620
621   ImageFileDocument* pImageDoc = theApp->newImageDoc();
622   if (! pImageDoc) {
623     sys_error (ERR_SEVERE, "Unable to create image file");
624     return;
625   }  
626   pImageDoc->setImageFile (pImageFile);
627   if (theApp->getAskDeleteNewDocs())
628     pImageDoc->Modify (true);
629 }
630
631 void
632 MainFrame::OnNewProjectionFile (wxCommandEvent& event)
633 {
634   Projections* pProjections = reinterpret_cast<Projections*>(event.GetClientData());
635   ProjectionFileDocument* pProjDoc = theApp->newProjectionDoc();
636   if (! pProjDoc) {
637     sys_error (ERR_SEVERE, "Unable to create projection file");
638     return;
639   }  
640   pProjDoc->setProjections (pProjections);
641   if (theApp->getAskDeleteNewDocs())
642     pProjDoc->Modify (true);
643 }
644
645 void
646 MainFrame::OnLogEvent (wxCommandEvent& event)
647 {
648   *theApp->getLog() << event.GetString();
649 }
650
651 void
652 MainFrame::OnHelpTips (wxCommandEvent& event)
653 {
654   theApp->ShowTips();
655 }
656
657 void 
658 MainFrame::OnHelpContents (wxCommandEvent& event)
659 {
660   showHelp (event.GetId());
661 }
662
663 void 
664 MainFrame::OnHelpButton (wxCommandEvent& event)
665 {
666   showHelp (event.GetId());
667 }
668
669 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
670 void
671 MainFrame::OnHelpSecondary (wxCommandEvent& event)
672 {
673   m_htmlHelp.DisplayContents();
674 }
675 #endif
676
677 void
678 MainFrame::showHelp (int commandID)
679 {
680   switch (commandID) {
681     
682   case MAINMENU_HELP_CONTENTS:
683 #ifdef CTSIM_WINHELP
684     m_winHelp.DisplayContents ();
685 #else
686     m_htmlHelp.DisplayContents ();
687 #endif
688     break;
689     
690     
691   default:
692 #ifdef CTSIM_WINHELP
693     m_winHelp.DisplaySection (commandID);
694 #else
695     m_htmlHelp.Display (commandID);
696 #endif
697     break;
698   }
699 }
700
701 void 
702 MainFrame::OnExit (wxCommandEvent& WXUNUSED(event) )
703 {
704   Close(true);
705 }
706
707 void
708 MainFrame::OnUpdateUI (wxUpdateUIEvent& rEvent)
709 {
710 #ifndef CTSIM_MDI
711   int iPos = 0;
712   wxList& rListDocs = theApp->getDocManager()->GetDocuments();
713   wxNode* pNode = rListDocs.GetFirst();
714   while (iPos < MAX_WINDOW_MENUITEMS && pNode != NULL) {
715     wxDocument* pDoc = static_cast<wxDocument*>(pNode->GetData());
716     wxString strFilename = pDoc->GetFilename();
717     if (iPos < 10) {
718       strFilename += "\tCtrl-";
719       strFilename += static_cast<char>('0' + iPos);
720     }
721     static_cast<wxMenuItemBase*>(m_apWindowMenuItems[iPos])->SetName (strFilename);
722     m_apWindowMenuData[iPos] = pDoc;
723     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+iPos, true);
724     iPos++;
725     pNode = pNode->GetNext();
726   }
727   for (int i = iPos; i < MAX_WINDOW_MENUITEMS; i++) {
728     m_pWindowMenu->Enable (MAINMENU_WINDOW_BASE+i, false);
729     static_cast<wxMenuItemBase*>(m_apWindowMenuItems[i])->SetName (wxString("[EMPTY]"));
730     m_apWindowMenuData[i] = NULL;
731   }
732 #endif  
733 }
734
735
736 void 
737 MainFrame::DoWindowMenu (int iMenuPosition, wxCommandEvent& event)
738 {
739   if (wxDocument* pDoc = m_apWindowMenuData [iMenuPosition]) {
740     wxString strFilename = pDoc->GetFilename();
741     const wxView* pView = pDoc->GetFirstView();
742     if (pView) {
743       wxFrame* pFrame = pView->GetFrame();
744       pFrame->SetFocus();
745       pFrame->Raise();
746     }
747   }
748 }
749
750 void MainFrame::OnWindowMenu0 (wxCommandEvent& event)
751 { DoWindowMenu (0, event); }
752
753 void MainFrame::OnWindowMenu1 (wxCommandEvent& event)
754 { DoWindowMenu (1, event); }
755
756 void MainFrame::OnWindowMenu2 (wxCommandEvent& event)
757 { DoWindowMenu (2, event); }
758
759 void MainFrame::OnWindowMenu3 (wxCommandEvent& event)
760 { DoWindowMenu (3, event); }
761
762 void MainFrame::OnWindowMenu4 (wxCommandEvent& event)
763 { DoWindowMenu (4, event); }
764
765 void MainFrame::OnWindowMenu5 (wxCommandEvent& event)
766 { DoWindowMenu (5, event); }
767
768 void MainFrame::OnWindowMenu6 (wxCommandEvent& event)
769 { DoWindowMenu (6, event); }
770
771 void MainFrame::OnWindowMenu7 (wxCommandEvent& event)
772 { DoWindowMenu (7, event); }
773
774 void MainFrame::OnWindowMenu8 (wxCommandEvent& event)
775 { DoWindowMenu (8, event); }
776
777 void MainFrame::OnWindowMenu9 (wxCommandEvent& event)
778 { DoWindowMenu (9, event); }
779
780 void MainFrame::OnWindowMenu10 (wxCommandEvent& event)
781 { DoWindowMenu (10, event); }
782
783 void MainFrame::OnWindowMenu11 (wxCommandEvent& event)
784 { DoWindowMenu (11, event); }
785
786 void MainFrame::OnWindowMenu12 (wxCommandEvent& event)
787 { DoWindowMenu (12, event); }
788
789 void MainFrame::OnWindowMenu13 (wxCommandEvent& event)
790 { DoWindowMenu (13, event); }
791
792 void MainFrame::OnWindowMenu14 (wxCommandEvent& event)
793 { DoWindowMenu (14, event); }
794
795 void MainFrame::OnWindowMenu15 (wxCommandEvent& event)
796 { DoWindowMenu (15, event); }
797
798 void MainFrame::OnWindowMenu16 (wxCommandEvent& event)
799 { DoWindowMenu (16, event); }
800
801 void MainFrame::OnWindowMenu17 (wxCommandEvent& event)
802 { DoWindowMenu (17, event); }
803
804 void MainFrame::OnWindowMenu18 (wxCommandEvent& event)
805 { DoWindowMenu (18, event); }
806
807 void MainFrame::OnWindowMenu19 (wxCommandEvent& event)
808 { DoWindowMenu (19, event); }
809
810
811 class BitmapControl : public wxPanel
812 {
813 private:  
814   DECLARE_DYNAMIC_CLASS (BitmapControl)
815     DECLARE_EVENT_TABLE ()
816     wxBitmap* m_pBitmap;
817   
818 public:
819   BitmapControl (wxBitmap* pBitmap, wxWindow *parent, wxWindowID id = -1,
820     const wxPoint& pos = wxDefaultPosition,
821     const wxSize& size = wxDefaultSize,
822     long style = wxSTATIC_BORDER,
823     const wxValidator& validator = wxDefaultValidator,
824     const wxString& name = "BitmapCtrl");
825   
826   
827   virtual ~BitmapControl();
828   
829   virtual wxSize GetBestSize() const;
830   
831   wxBitmap* getBitmap() 
832   { return m_pBitmap; }
833   
834   void OnPaint(wxPaintEvent& event);
835 };
836
837
838 BEGIN_EVENT_TABLE(BitmapControl, wxPanel)
839 EVT_PAINT(BitmapControl::OnPaint)
840 END_EVENT_TABLE()
841
842 IMPLEMENT_CLASS(BitmapControl, wxPanel)
843
844
845 BitmapControl::BitmapControl (wxBitmap* pBitmap, wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, 
846                               long style, const wxValidator& validator, const wxString& name)
847                               : m_pBitmap(pBitmap)
848 {
849   Create(parent, id, pos, size, style, name);
850   
851   SetSize (GetBestSize());
852 }
853
854 wxSize
855 BitmapControl::GetBestSize () const
856 {
857   if (m_pBitmap)
858     return wxSize (m_pBitmap->GetWidth(), m_pBitmap->GetHeight());
859   else
860     return wxSize(0,0);
861 }
862
863 BitmapControl::~BitmapControl()
864 {}
865
866 void
867 BitmapControl::OnPaint (wxPaintEvent& event)
868 {
869   wxPaintDC dc(this);
870   if (m_pBitmap)
871     dc.DrawBitmap (*m_pBitmap, 0, 0);
872 }
873
874
875 class BitmapDialog : public wxDialog {
876 private:
877   BitmapControl* m_pBitmapCtrl;
878   
879 public:
880   BitmapDialog (wxBitmap* pBitmap, char const* pszTitle);
881   virtual ~BitmapDialog();
882 };
883
884 BitmapDialog::BitmapDialog (wxBitmap* pBitmap, char const* pszTitle)
885 : wxDialog(theApp->getMainFrame(), -1, wxString(pszTitle), wxDefaultPosition, wxDefaultSize, wxDIALOG_MODAL | wxDEFAULT_DIALOG_STYLE)
886 {
887   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
888   
889   pTopSizer->Add (new BitmapControl (pBitmap, this), 0, wxALIGN_CENTER | wxALL, 5);
890   
891   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
892   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Ok");
893   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
894   
895   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
896   
897   SetAutoLayout (true);
898   SetSizer (pTopSizer);
899   pTopSizer->Fit (this);
900   pTopSizer->SetSizeHints (this);
901 }
902
903 BitmapDialog::~BitmapDialog()
904 {}
905
906
907 void 
908 MainFrame::OnPreferences (wxCommandEvent& WXUNUSED(event) )
909 {
910   DialogPreferences dlg (this, "CTSim Preferences", theApp->getAdvancedOptions(), 
911     theApp->getAskDeleteNewDocs(), theApp->getVerboseLogging(), theApp->getStartupTips(), 
912     theApp->getUseBackgroundTasks());
913   if (dlg.ShowModal() == wxID_OK) {
914     theApp->setAdvancedOptions (dlg.getAdvancedOptions());
915     theApp->setAskDeleteNewDocs (dlg.getAskDeleteNewDocs());
916     theApp->setVerboseLogging (dlg.getVerboseLogging());
917     theApp->setStartupTips (dlg.getStartupTips());
918     theApp->setUseBackgroundTasks (dlg.getUseBackgroundTasks());
919   }
920 }
921
922 void 
923 MainFrame::OnImport (wxCommandEvent& WXUNUSED(event) )
924 {
925   DialogImportParameters dialogImport (this, m_iDefaultImportFormat);
926   if (dialogImport.ShowModal() != wxID_OK)
927     return;
928   
929   wxString strFormatName (dialogImport.getFormatName ());
930   m_iDefaultImportFormat = ImageFile::convertImportFormatNameToID (strFormatName.c_str());
931   
932   wxString strExt;
933   wxString strWildcard;
934   if (m_iDefaultImportFormat == ImageFile::IMPORT_FORMAT_PPM) {
935     strExt = ".ppm";
936     strWildcard = "PPM Files (*.ppm)|*.ppm|PGM Files (*.pgm)|*.pgm";
937   }
938 #ifdef HAVE_PNG
939   else if (m_iDefaultImportFormat == ImageFile::IMPORT_FORMAT_PNG) {
940     strExt = ".png";
941     strWildcard = "PNG Files (*.png)|*.png";
942   }
943 #endif
944 #ifdef HAVE_CTN_DICOM
945   else if (m_iDefaultImportFormat == ImageFile::IMPORT_FORMAT_DICOM) {
946     strExt = "*.*";
947     strWildcard = "Dicom Files (*.*)|*.*";
948   }
949 #endif
950   else {
951     return;
952   }
953   
954   wxString strFilename = wxFileSelector (wxString("Import Filename"), wxString(""), 
955     wxString(""), strExt, strWildcard, wxHIDE_READONLY | wxOPEN);
956   if (! strFilename.IsEmpty()) {
957     if (m_iDefaultImportFormat == ImageFile::IMPORT_FORMAT_PPM || m_iDefaultImportFormat == ImageFile::IMPORT_FORMAT_PNG) {
958       ImageFile* pIF = new ImageFile;
959       if (pIF->importImage (strFormatName.c_str(), strFilename.c_str())) {
960         ImageFileDocument* pIFDoc = theApp->newImageDoc();
961         pIFDoc->setImageFile(pIF);
962         pIFDoc->getView()->getFrame()->Show(true);
963         std::ostringstream os;
964         os << "Import file " << strFilename.c_str() << " (type " << strFormatName.c_str() << ")";
965         pIF->labelAdd (os.str().c_str());
966         if (theApp->getAskDeleteNewDocs())
967           pIFDoc->Modify (true);
968         pIFDoc->UpdateAllViews();
969         pIFDoc->GetFirstView()->OnUpdate (NULL, NULL);
970         pIFDoc->getView()->getFrame()->Show(true);
971       } else
972         delete pIF;
973     } 
974 #ifdef HAVE_CTN_DICOM
975     else if (m_iDefaultImportFormat == ImageFile::IMPORT_FORMAT_DICOM) {
976       DicomImporter dicomImport (strFilename.c_str());
977       if (dicomImport.fail()) {
978         ::wxMessageBox (dicomImport.failMessage().c_str(), "Import Error");
979       } else if (dicomImport.testImage()) {
980         ImageFileDocument* pIFDoc = theApp->newImageDoc();
981         ImageFile* pIF = dicomImport.getImageFile();
982         pIFDoc->setImageFile (pIF);
983         pIFDoc->getView()->getFrame()->Show(true);
984         std::ostringstream os;
985         os << "Import file " << strFilename.c_str() << " (type " << strFormatName.c_str() << ")";
986         pIF->labelAdd (os.str().c_str());
987         if (theApp->getAskDeleteNewDocs())
988           pIFDoc->Modify (true);
989         pIFDoc->UpdateAllViews();
990         pIFDoc->GetFirstView()->OnUpdate (NULL, NULL);
991         pIFDoc->getView()->getFrame()->Show(true);
992       } else if (dicomImport.testProjections()) {
993         ProjectionFileDocument* pProjDoc = theApp->newProjectionDoc();
994         Projections* pProj = dicomImport.getProjections();
995         pProjDoc->setProjections (pProj);
996         pProjDoc->getView()->getFrame()->Show(true);
997         std::ostringstream os;
998         os << "Import projection file " << strFilename.c_str() << " (type " << strFormatName.c_str() << ")";
999         pProj->setRemark (os.str().c_str());
1000         if (theApp->getAskDeleteNewDocs())
1001           pProjDoc->Modify (true);
1002         pProjDoc->UpdateAllViews();
1003         pProjDoc->GetFirstView()->OnUpdate (NULL, NULL);
1004         pProjDoc->getView()->getFrame()->Show(true);
1005       } else
1006         ::wxMessageBox ("Unrecognized DICOM file contents", "Import Error");
1007     } 
1008 #endif
1009     else
1010       sys_error (ERR_WARNING, "Unknown import format type");
1011   }
1012 }
1013
1014 #include "./splash.xpm"
1015 void 
1016 MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
1017 {
1018   long lFreeMem = ::wxGetFreeMemory() / (1024L * 1024L);
1019   wxString strOSDesc = ::wxGetOsDescription();
1020   *theApp->getLog() << "Operating System: " << strOSDesc;
1021   if (lFreeMem > 0)
1022     *theApp->getLog() << ",  Free Memory: " << lFreeMem << " MB";
1023   *theApp->getLog() << ", wxWindows: " << wxVERSION_STRING;
1024 #ifdef __TIMESTAMP__
1025   *theApp->getLog() << ", Build Date: " << __TIMESTAMP__;
1026 #endif
1027 #if defined(DEBUG)
1028   *theApp->getLog() << ", CTSim Debug version";
1029 #else
1030   *theApp->getLog() << ", CTSim Release version";
1031 #endif
1032
1033   *theApp->getLog() << "\n";
1034   
1035   wxBitmap bmp (splash);
1036   if (bmp.Ok()) {
1037     BitmapDialog dlg (&bmp, "About CTSim");
1038     dlg.ShowModal();
1039   } else {
1040     wxString msg = "CTSim\nThe Open Source Computed Tomography Simulator\n";
1041 #ifdef CTSIMVERSION
1042     msg += "Version ";
1043     msg += CTSIMVERSION;
1044     msg += "\n\n";
1045 #elif defined(VERSION)
1046     msg << "Version: " <<  VERSION << "\n\n";
1047 #endif
1048     msg += "Author: Kevin Rosenberg <kevin@rosenberg.net>\nUsage: ctsim [files-to-open..] [--help]";
1049     
1050     wxMessageBox(msg, "About CTSim", wxOK | wxICON_INFORMATION, this);
1051     *theApp->getLog() << msg << "\n";
1052   }
1053 }
1054
1055
1056 ProjectionFileDocument*
1057 CTSimApp::newProjectionDoc()
1058 {
1059   ProjectionFileDocument* newDoc = dynamic_cast<ProjectionFileDocument*>(m_pDocTemplProjection->CreateDocument (""));
1060   if (newDoc) {
1061     ProjectionFileView* pView = newDoc->getView();
1062     newDoc->SetDocumentName (m_pDocTemplProjection->GetDocumentName());
1063     newDoc->SetDocumentTemplate (m_pDocTemplProjection);
1064     newDoc->OnNewDocument();
1065   }
1066   
1067   return newDoc;
1068 }
1069
1070 ImageFileDocument*
1071 CTSimApp::newImageDoc()
1072 {
1073   ImageFileDocument* newDoc = dynamic_cast<ImageFileDocument*>(m_pDocTemplImage->CreateDocument (""));
1074   if (newDoc) {
1075     newDoc->SetDocumentName (m_pDocTemplImage->GetDocumentName());
1076     newDoc->SetDocumentTemplate (m_pDocTemplImage);
1077     newDoc->OnNewDocument();
1078   }
1079   
1080   return newDoc;
1081 }
1082
1083 PlotFileDocument*
1084 CTSimApp::newPlotDoc()
1085 {
1086   PlotFileDocument* newDoc = dynamic_cast<PlotFileDocument*>(m_pDocTemplPlot->CreateDocument (""));
1087   if (newDoc) {
1088     newDoc->SetDocumentName (m_pDocTemplPlot->GetDocumentName());
1089     newDoc->SetDocumentTemplate (m_pDocTemplPlot);
1090     newDoc->OnNewDocument();
1091   }
1092   
1093   return newDoc;
1094 }
1095
1096
1097 TextFileDocument*
1098 CTSimApp::newTextDoc()
1099 {
1100   wxString strFilename (getUntitledFilename());
1101   strFilename += ".txt";
1102   
1103   TextFileDocument* newDoc = dynamic_cast<TextFileDocument*>(m_pDocTemplText->CreateDocument (""));
1104   if (newDoc) {
1105     newDoc->SetDocumentName (m_pDocTemplText->GetDocumentName());
1106     newDoc->SetDocumentTemplate (m_pDocTemplText);
1107     newDoc->OnNewDocument();
1108   }
1109   
1110   return newDoc;
1111 }
1112
1113
1114 PhantomFileDocument*
1115 CTSimApp::newPhantomDoc()
1116 {
1117   PhantomFileDocument* newDoc = dynamic_cast<PhantomFileDocument*>(m_pDocTemplPhantom->CreateDocument (""));
1118   if (newDoc) {
1119     newDoc->SetDocumentName (m_pDocTemplPhantom->GetDocumentName());
1120     newDoc->SetDocumentTemplate (m_pDocTemplPhantom);
1121     newDoc->OnNewDocument();
1122   }
1123   
1124   return newDoc;
1125 }
1126
1127 #if wxUSE_GLCANVAS
1128
1129 Graph3dFileDocument*
1130 CTSimApp::newGraph3dDoc()
1131 {
1132   Graph3dFileDocument* newDoc = dynamic_cast<Graph3dFileDocument*>(m_pDocTemplGraph3d->CreateDocument (""));
1133   if (newDoc) {
1134     newDoc->SetDocumentName (m_pDocTemplGraph3d->GetDocumentName());
1135     newDoc->SetDocumentTemplate (m_pDocTemplGraph3d);
1136     newDoc->OnNewDocument();
1137   }
1138   
1139   return newDoc;
1140 }
1141 #endif