r187: *** empty log message ***
[ctsim.git] / src / views.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          view.cpp
5 **   Purpose:       View & Canvas routines for 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: views.cpp,v 1.19 2000/09/02 05:10:39 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 __GNUG__
29 // #pragma implementation
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 #if !wxUSE_DOC_VIEW_ARCHITECTURE
44 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
45 #endif
46
47 #include "wx/image.h"
48 #include "wx/progdlg.h"
49
50 #include "ct.h"
51 #include "ctsim.h"
52 #include "docs.h"
53 #include "views.h"
54 #include "dialogs.h"
55 #include "dlgprojections.h"
56 #include "dlgreconstruct.h"
57 #include <sstream>
58 #include "backprojectors.h"
59 #include "reconstruct.h"
60 #include "timer.h"
61
62 // ImageFileCanvas
63
64 BEGIN_EVENT_TABLE(ImageFileCanvas, wxScrolledWindow)
65     EVT_MOUSE_EVENTS(ImageFileCanvas::OnMouseEvent)
66 END_EVENT_TABLE()
67
68
69 ImageFileCanvas::ImageFileCanvas (ImageFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style)
70   : wxScrolledWindow(frame, -1, pos, size, style)
71 {
72     m_pView = v;
73 }
74
75 void 
76 ImageFileCanvas::OnDraw(wxDC& dc)
77 {
78     if (m_pView)
79         m_pView->OnDraw(& dc);
80 }
81
82 void 
83 ImageFileCanvas::OnMouseEvent(wxMouseEvent& event)
84 {
85     if (! m_pView)
86         return;
87     
88     wxClientDC dc(this);
89     PrepareDC(dc);
90     
91     wxPoint pt(event.GetLogicalPosition(dc));
92
93     if (event.LeftIsDown()) {
94         const ImageFile& rIF = m_pView->GetDocument()->getImageFile();
95         ImageFileArrayConst v = rIF.getArray();
96         int nx = rIF.nx();
97         int ny = rIF.ny();
98
99         if (pt.x >= 0 && pt.x < nx && pt.y >= 0 & pt.y < ny) {
100           ostringstream os;
101           os << "Image value (" << pt.x << "," << pt.y << ") = " << v[pt.x][ny - 1 - pt.y] << "\n";
102             *theApp->getLog() << os.str().c_str();
103         } else
104             *theApp->getLog() << "Mouse out of image range (" << pt.x << "," << pt.y << ")\n";
105             
106     }
107 }
108
109
110 // ImageFileView
111
112 IMPLEMENT_DYNAMIC_CLASS(ImageFileView, wxView)
113
114 BEGIN_EVENT_TABLE(ImageFileView, wxView)
115   EVT_MENU(IFMENU_FILE_PROPERTIES, ImageFileView::OnProperties)
116   EVT_MENU(IFMENU_VIEW_SCALE_MINMAX, ImageFileView::OnScaleMinMax)
117   EVT_MENU(IFMENU_VIEW_SCALE_AUTO, ImageFileView::OnScaleAuto)
118 END_EVENT_TABLE()
119
120 ImageFileView::ImageFileView(void) 
121   : wxView(), m_canvas(NULL), m_frame(NULL), m_bMinSpecified(false), m_bMaxSpecified(false)
122 {
123 }
124
125 ImageFileView::~ImageFileView(void)
126 {
127 }
128
129 void
130 ImageFileView::OnProperties (wxCommandEvent& event)
131 {
132   double min, max, mean, mode, median, stddev;
133   const ImageFile& rIF = GetDocument()->getImageFile();
134   if (rIF.nx() == 0 || rIF.ny() == 0)
135     *theApp->getLog() << "Properties: empty imagefile\n";
136   else {
137     const string& rFilename = rIF.getFilename();
138     rIF.statistics (min, max, mean, mode, median, stddev);
139     ostringstream os;
140     os << "file: " << rFilename << "\nmin: "<<min<<"\nmax: "<<max<<"\nmean: "<<mean<<"\nmode: "<<mode<<"\nstddev: "<<stddev << "\n";
141     *theApp->getLog() << os.str().c_str();
142     wxMessageDialog dialogMsg (m_frame, os.str().c_str(), "Imagefile Properties", wxOK | wxICON_INFORMATION);
143     dialogMsg.ShowModal();
144   }
145 }
146
147 void 
148 ImageFileView::OnScaleAuto (wxCommandEvent& event)
149 {
150     const ImageFile& rIF = GetDocument()->getImageFile();
151     DialogAutoScaleParameters dialogAutoScale (m_frame, rIF, m_dAutoScaleFactor);
152     int iRetVal = dialogAutoScale.ShowModal();
153     if (iRetVal == wxID_OK) {
154       m_bMinSpecified = true;
155       m_bMaxSpecified = true;
156       double dMin, dMax;
157       dialogAutoScale.getMinMax (&dMin, &dMax);
158       m_dMinPixel = dMin;
159       m_dMaxPixel = dMax;
160       m_dAutoScaleFactor = dialogAutoScale.getAutoScaleFactor();
161       OnUpdate (this, NULL);
162     }
163 }
164
165 void 
166 ImageFileView::OnScaleMinMax (wxCommandEvent& event)
167 {
168     const ImageFile& rIF = GetDocument()->getImageFile();
169     double min, max;
170     if (! m_bMinSpecified && ! m_bMaxSpecified)
171       rIF.getMinMax (min, max);
172
173     if (m_bMinSpecified)
174       min = m_dMinPixel;
175     if (m_bMaxSpecified)
176       max = m_dMaxPixel;
177
178     DialogGetImageMinMax dialogMinMax (m_frame, rIF, min, max);
179     int retVal = dialogMinMax.ShowModal();
180     if (retVal == wxID_OK) {
181       m_bMinSpecified = true;
182       m_bMaxSpecified = true;
183       m_dMinPixel = dialogMinMax.getMinimum();
184       m_dMaxPixel = dialogMinMax.getMaximum();
185       OnUpdate (this, NULL);
186     }
187 }
188
189
190 ImageFileCanvas* 
191 ImageFileView::CreateCanvas (wxView *view, wxFrame *parent)
192 {
193     ImageFileCanvas* pCanvas;
194     int width, height;
195     parent->GetClientSize(&width, &height);
196     
197     pCanvas = new ImageFileCanvas (dynamic_cast<ImageFileView*>(view), parent, wxPoint(0, 0), wxSize(width, height), 0);
198     
199     pCanvas->SetScrollbars(20, 20, 50, 50);
200     pCanvas->SetBackgroundColour(*wxWHITE);
201     pCanvas->Clear();
202     
203     return pCanvas;
204 }
205
206 wxFrame*
207 ImageFileView::CreateChildFrame(wxDocument *doc, wxView *view)
208 {
209     wxDocChildFrame *subframe = new wxDocChildFrame(doc, view, theApp->getMainFrame(), -1, "ImageFile Frame", wxPoint(-1, -1), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
210     
211     wxMenu *file_menu = new wxMenu;
212     
213     file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...");
214     file_menu->Append(wxID_OPEN, "&Open...");
215     file_menu->Append(wxID_SAVE, "&Save");
216     file_menu->Append(wxID_SAVEAS, "Save &As...");
217     file_menu->Append(wxID_CLOSE, "&Close");
218     
219     file_menu->AppendSeparator();
220     file_menu->Append(IFMENU_FILE_PROPERTIES, "P&roperties");
221
222     file_menu->AppendSeparator();
223     file_menu->Append(wxID_PRINT, "&Print...");
224     file_menu->Append(wxID_PRINT_SETUP, "Print &Setup...");
225     file_menu->Append(wxID_PREVIEW, "Print Pre&view");
226     
227     wxMenu *view_menu = new wxMenu;
228     view_menu->Append(IFMENU_VIEW_SCALE_MINMAX, "Display Scale &Set...");
229     view_menu->Append(IFMENU_VIEW_SCALE_AUTO, "Display Scale &Auto...");
230     
231     wxMenu *help_menu = new wxMenu;
232     help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
233     
234     wxMenuBar *menu_bar = new wxMenuBar;
235     
236     menu_bar->Append(file_menu, "&File");
237     menu_bar->Append(view_menu, "&View");
238     menu_bar->Append(help_menu, "&Help");
239     
240     subframe->SetMenuBar(menu_bar);
241     
242     subframe->Centre(wxBOTH);
243     
244     return subframe;
245 }
246
247
248 bool 
249 ImageFileView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
250 {
251     m_frame = CreateChildFrame(doc, this);
252     SetFrame(m_frame);
253     
254     m_bMinSpecified = false;
255     m_bMaxSpecified = false;
256     m_dAutoScaleFactor = 1.;
257
258     int width, height;
259     m_frame->GetClientSize(&width, &height);
260     m_frame->SetTitle("ImageFileView");
261     m_canvas = CreateCanvas(this, m_frame);
262
263 #ifdef __X__
264     int x, y;  // X requires a forced resize
265     m_frame->GetSize(&x, &y);
266     m_frame->SetSize(-1, -1, x, y);
267 #endif
268
269     m_frame->Show(true);
270     Activate(true);
271     
272     return true;
273 }
274
275 void 
276 ImageFileView::OnDraw (wxDC* dc)
277 {
278   if (m_bitmap.Ok())
279     dc->DrawBitmap(m_bitmap, 0, 0, false);
280 }
281
282
283 void 
284 ImageFileView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
285 {
286     const ImageFile& rIF = dynamic_cast<ImageFileDocument*>(GetDocument())->getImageFile();
287     ImageFileArrayConst v = rIF.getArray();
288     int nx = rIF.nx();
289     int ny = rIF.ny();
290     if (v != NULL && nx != 0 && ny != 0) {
291         if (! m_bMinSpecified || ! m_bMaxSpecified) {
292             double min, max;
293             rIF.getMinMax (min, max);
294             if (! m_bMinSpecified)
295                 m_dMinPixel = min;
296             if (! m_bMaxSpecified)
297                 m_dMaxPixel = max;
298         }
299         double scaleWidth = m_dMaxPixel - m_dMinPixel;
300     
301         unsigned char* imageData = new unsigned char [nx * ny * 3];
302         for (int ix = 0; ix < nx; ix++) {
303             for (int iy = 0; iy < ny; iy++) {
304                 double scaleValue = ((v[ix][iy] - m_dMinPixel) / scaleWidth) * 255;
305                 int intensity = static_cast<int>(scaleValue + 0.5);
306                 intensity = clamp (intensity, 0, 255);
307                 int baseAddr = ((ny - 1 - iy) * nx + ix) * 3;
308                 imageData[baseAddr] = imageData[baseAddr+1] = imageData[baseAddr+2] = intensity;
309             }
310         }
311         wxImage image (nx, ny, imageData, true);
312         m_bitmap = image.ConvertToBitmap();
313         delete imageData;
314         int xSize = nx;
315         int ySize = ny;
316         xSize = clamp (xSize, 0, 800);
317         ySize = clamp (ySize, 0, 800);
318         m_frame->SetClientSize (xSize, ySize);
319         m_canvas->SetScrollbars(20, 20, nx/20, ny/20);
320         m_canvas->SetBackgroundColour(*wxWHITE);
321     } 
322
323     if (m_canvas)
324         m_canvas->Refresh();
325 }
326
327 bool 
328 ImageFileView::OnClose (bool deleteWindow)
329 {
330     if (!GetDocument()->Close())
331         return false;
332
333     m_canvas->Clear();
334     m_canvas->m_pView = NULL;
335     m_canvas = NULL;
336     wxString s(theApp->GetAppName());
337     if (m_frame)
338       m_frame->SetTitle(s);
339     SetFrame(NULL);
340
341     Activate(false);
342     
343     if (deleteWindow) {
344         delete m_frame;
345         return true;
346     }
347     return true;
348 }
349
350
351
352 // PhantomCanvas
353
354 PhantomCanvas::PhantomCanvas (PhantomView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style)
355   : wxScrolledWindow(frame, -1, pos, size, style)
356 {
357     m_pView = v;
358 }
359
360 void 
361 PhantomCanvas::OnDraw(wxDC& dc)
362 {
363     if (m_pView)
364         m_pView->OnDraw(& dc);
365 }
366
367
368 // PhantomView
369
370 IMPLEMENT_DYNAMIC_CLASS(PhantomView, wxView)
371
372 BEGIN_EVENT_TABLE(PhantomView, wxView)
373     EVT_MENU(PHMMENU_FILE_PROPERTIES, PhantomView::OnProperties)
374     EVT_MENU(PHMMENU_PROCESS_RASTERIZE, PhantomView::OnRasterize)
375     EVT_MENU(PHMMENU_PROCESS_PROJECTIONS, PhantomView::OnProjections)
376 END_EVENT_TABLE()
377
378 PhantomView::PhantomView(void) 
379   : wxView(), m_canvas(NULL), m_frame(NULL)
380 {
381     m_iDefaultNDet = 367;
382     m_iDefaultNView = 320;
383     m_iDefaultNSample = 2;
384     m_dDefaultRotation = 2;
385     m_dDefaultFocalLength = 2;
386     m_dDefaultFieldOfView = 1;
387     m_iDefaultGeometry = Scanner::GEOMETRY_PARALLEL;
388     m_iDefaultTrace = Trace::TRACE_NONE;
389 }
390
391 PhantomView::~PhantomView(void)
392 {
393 }
394
395 void
396 PhantomView::OnProperties (wxCommandEvent& event)
397 {
398   const int idPhantom = GetDocument()->getPhantomID();
399   const string& namePhantom = GetDocument()->getPhantomName();
400   ostringstream os;
401   os << "Phantom " << namePhantom << " (" << idPhantom << ")\n";
402   *theApp->getLog() << os.str().c_str();
403 #if DEBUG
404   const Phantom& rPhantom = GetDocument()->getPhantom();
405   rPhantom.print();
406 #endif
407 }
408
409
410 void
411 PhantomView::OnProjections (wxCommandEvent& event)
412 {
413   DialogGetProjectionParameters dialogProjection (m_frame, m_iDefaultNDet, m_iDefaultNView, m_iDefaultNSample, m_dDefaultRotation, m_dDefaultFocalLength, m_dDefaultFieldOfView, m_iDefaultGeometry, m_iDefaultTrace);
414   int retVal = dialogProjection.ShowModal();
415   if (retVal == wxID_OK) {
416     m_iDefaultNDet = dialogProjection.getNDet();
417     m_iDefaultNView = dialogProjection.getNView();
418     m_iDefaultNSample = dialogProjection.getNSamples();
419     m_iDefaultTrace = dialogProjection.getTrace();
420     m_dDefaultRotation = dialogProjection.getRotAngle();
421     m_dDefaultFocalLength = dialogProjection.getFocalLengthRatio();
422     m_dDefaultFieldOfView = dialogProjection.getFieldOfViewRatio();
423     wxString sGeometry = dialogProjection.getGeometry();
424     m_iDefaultGeometry = Scanner::convertGeometryNameToID (sGeometry.c_str());
425
426     if (m_iDefaultNDet > 0 && m_iDefaultNView > 0 && sGeometry != "") {
427       const Phantom& rPhantom = GetDocument()->getPhantom();
428       ProjectionFileDocument* pProjectionDoc = dynamic_cast<ProjectionFileDocument*>(theApp->getDocManager()->CreateDocument("untitled.pj", wxDOC_SILENT));
429       Projections& rProj = pProjectionDoc->getProjections();
430       Scanner theScanner (rPhantom, sGeometry.c_str(), m_iDefaultNDet, m_iDefaultNView, m_iDefaultNSample, m_dDefaultRotation, m_dDefaultFocalLength, m_dDefaultFieldOfView);
431       if (theScanner.fail()) {
432         *theApp->getLog() << "Failed making scanner: " << theScanner.failMessage().c_str() << "\n";
433         return;
434       }
435       rProj.initFromScanner (theScanner);
436       m_dDefaultRotation /= PI;  // convert back to PI units
437
438       if (m_iDefaultTrace > Trace::TRACE_CONSOLE) {
439         ProjectionsDialog dialogProjections (theScanner, rProj, rPhantom, m_iDefaultTrace, dynamic_cast<wxWindow*>(m_frame));
440         for (int iView = 0; iView < rProj.nView(); iView++) {
441           ::wxYield();
442           ::wxYield();
443           if (dialogProjections.isCancelled() || ! dialogProjections.projectView (iView)) {
444             pProjectionDoc->DeleteAllViews();
445             return;
446           }
447           ::wxYield();
448           ::wxYield();
449           while (dialogProjections.isPaused()) {
450               ::wxYield();
451               ::wxUsleep(50);
452           }
453         }
454       } else {
455         wxProgressDialog dlgProgress (wxString("Projection"), wxString("Projection Progress"), rProj.nView() + 1, m_frame, wxPD_CAN_ABORT);
456         for (int i = 0; i < rProj.nView(); i++) {
457           theScanner.collectProjections (rProj, rPhantom, i, 1, true, m_iDefaultTrace);
458           if (! dlgProgress.Update (i+1)) {
459             pProjectionDoc->DeleteAllViews();
460             return;
461           }
462         }
463       }
464
465       ostringstream os;
466       os << "Projections for " << rPhantom.name() << ": nDet=" << m_iDefaultNDet << ", nView=" << m_iDefaultNView << ", nSamples=" << m_iDefaultNSample << ", RotAngle=" << m_dDefaultRotation << ", FocalLengthRatio=" << m_dDefaultFocalLength << ", FieldOfViewRatio=" << m_dDefaultFieldOfView << ", Geometry=" << sGeometry.c_str() << "\n";
467       rProj.setRemark (os.str());
468       *theApp->getLog() << os.str().c_str();
469
470       ::wxYield();
471       pProjectionDoc->Modify(true);
472       pProjectionDoc->UpdateAllViews(this);
473       ::wxYield();
474       if (wxView* pView = pProjectionDoc->GetFirstView())
475         if (wxFrame* pFrame = pView->GetFrame()) {
476           pFrame->SetFocus();
477           pFrame->Raise();
478         }
479       m_frame->Lower();
480     }
481   }
482 }
483
484
485 void
486 PhantomView::OnRasterize (wxCommandEvent& event)
487 {
488   DialogGetRasterParameters dialogRaster (m_frame, 256, 256, 1);
489   int retVal = dialogRaster.ShowModal();
490   if (retVal == wxID_OK) {
491     int xSize = dialogRaster.getXSize();
492     int ySize = dialogRaster.getYSize();
493     int nSamples = dialogRaster.getNSamples();
494     if (nSamples < 1)
495       nSamples = 1;
496     if (xSize > 0 && ySize > 0) {
497       const Phantom& rPhantom = GetDocument()->getPhantom();
498       ImageFileDocument* pRasterDoc = dynamic_cast<ImageFileDocument*>(theApp->getDocManager()->CreateDocument("untitled.if", wxDOC_SILENT));
499       ImageFile& imageFile = pRasterDoc->getImageFile();
500
501       imageFile.setArraySize (xSize, ySize);
502       rPhantom.convertToImagefile (imageFile, nSamples, Trace::TRACE_NONE);
503       pRasterDoc->Modify(true);
504       pRasterDoc->UpdateAllViews(this);
505
506       ostringstream os;
507       os << "Rasterize Phantom " << rPhantom.name() << ": XSize=" << xSize << ", YSize=" << ySize << ", nSamples=" << nSamples << "\n";
508       *theApp->getLog() << os.str().c_str();
509     }
510   }
511 }
512
513
514 PhantomCanvas* 
515 PhantomView::CreateCanvas (wxView *view, wxFrame *parent)
516 {
517     PhantomCanvas* pCanvas;
518     int width, height;
519     parent->GetClientSize(&width, &height);
520     
521     pCanvas = new PhantomCanvas (dynamic_cast<PhantomView*>(view), parent, wxPoint(0, 0), wxSize(width, height), 0);
522     
523     pCanvas->SetBackgroundColour(*wxWHITE);
524     pCanvas->Clear();
525     
526     return pCanvas;
527 }
528
529 wxFrame*
530 PhantomView::CreateChildFrame(wxDocument *doc, wxView *view)
531 {
532     wxDocChildFrame *subframe = new wxDocChildFrame(doc, view, theApp->getMainFrame(), -1, "Phantom Frame", wxPoint(10, 10), wxSize(256, 256), wxDEFAULT_FRAME_STYLE);
533     
534     wxMenu *file_menu = new wxMenu;
535     
536     file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...");
537     file_menu->Append(wxID_OPEN, "&Open...");
538     file_menu->Append(wxID_CLOSE, "&Close");
539     
540     file_menu->AppendSeparator();
541     file_menu->Append(PHMMENU_FILE_PROPERTIES, "P&roperties");
542
543     file_menu->AppendSeparator();
544     file_menu->Append(wxID_PRINT, "&Print...");
545     file_menu->Append(wxID_PRINT_SETUP, "Print &Setup...");
546     file_menu->Append(wxID_PREVIEW, "Print Pre&view");
547     
548     wxMenu *process_menu = new wxMenu;
549     process_menu->Append(PHMMENU_PROCESS_RASTERIZE, "&Rasterize...");
550     process_menu->Append(PHMMENU_PROCESS_PROJECTIONS, "&Projections...");
551
552     wxMenu *help_menu = new wxMenu;
553     help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents");
554     help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
555     
556     wxMenuBar *menu_bar = new wxMenuBar;
557     
558     menu_bar->Append(file_menu, "&File");
559     menu_bar->Append(process_menu, "&Process");
560     menu_bar->Append(help_menu, "&Help");
561     
562     subframe->SetMenuBar(menu_bar);
563     
564     subframe->Centre(wxBOTH);
565     
566     return subframe;
567 }
568
569
570 bool 
571 PhantomView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
572 {
573     m_frame = CreateChildFrame(doc, this);
574     SetFrame(m_frame);
575
576     int width, height;
577     m_frame->GetClientSize(&width, &height);
578     m_frame->SetTitle("PhantomView");
579     m_canvas = CreateCanvas(this, m_frame);
580
581 #ifdef __X__
582     int x, y;  // X requires a forced resize
583     m_frame->GetSize(&x, &y);
584     m_frame->SetSize(-1, -1, x, y);
585 #endif
586
587     m_frame->Show(true);
588     Activate(true);
589
590     return true;
591 }
592
593
594 void 
595 PhantomView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
596 {
597     if (m_canvas)
598         m_canvas->Refresh();
599 }
600
601 bool 
602 PhantomView::OnClose (bool deleteWindow)
603 {
604     if (!GetDocument()->Close())
605         return false;
606
607     m_canvas->Clear();
608     m_canvas->m_pView = NULL;
609     m_canvas = NULL;
610     wxString s(wxTheApp->GetAppName());
611     if (m_frame)
612       m_frame->SetTitle(s);
613     SetFrame(NULL);
614
615     Activate(false);
616     
617     if (deleteWindow) {
618         delete m_frame;
619         return true;
620     }
621     return true;
622 }
623
624 void
625 PhantomView::OnDraw (wxDC* dc)
626 {
627   int xsize, ysize;
628   m_canvas->GetClientSize (&xsize, &ysize);
629   SGPDriver driver (dc, xsize, ysize);
630   SGP sgp (driver);
631   const Phantom& rPhantom = GetDocument()->getPhantom();
632   sgp.setColor (C_RED);
633   rPhantom.show (sgp);
634 }
635
636 // ProjectionCanvas
637
638 ProjectionFileCanvas::ProjectionFileCanvas (ProjectionFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style)
639   : wxScrolledWindow(frame, -1, pos, size, style)
640 {
641     m_pView = v;
642 }
643
644 void 
645 ProjectionFileCanvas::OnDraw(wxDC& dc)
646 {
647     if (m_pView)
648         m_pView->OnDraw(& dc);
649 }
650
651 // ProjectionFileView
652
653 IMPLEMENT_DYNAMIC_CLASS(ProjectionFileView, wxView)
654
655 BEGIN_EVENT_TABLE(ProjectionFileView, wxView)
656     EVT_MENU(PJMENU_FILE_PROPERTIES, ProjectionFileView::OnProperties)
657     EVT_MENU(PJMENU_PROCESS_RECONSTRUCT, ProjectionFileView::OnReconstruct)
658 END_EVENT_TABLE()
659
660 ProjectionFileView::ProjectionFileView(void) 
661   : wxView(), m_canvas(NULL), m_frame(NULL)
662 {
663 }
664
665 ProjectionFileView::~ProjectionFileView(void)
666 {
667 }
668
669 void
670 ProjectionFileView::OnProperties (wxCommandEvent& event)
671 {
672   const Projections& rProj = GetDocument()->getProjections();
673   ostringstream os;
674   rProj.printScanInfo(os);
675   *theApp->getLog() << os.str().c_str();
676   wxMessageDialog dialogMsg (m_frame, os.str().c_str(), "Projection File Properties", wxOK | wxICON_INFORMATION);
677   dialogMsg.ShowModal();
678 }
679
680
681 void
682 ProjectionFileView::OnReconstruct (wxCommandEvent& event)
683 {
684 #if HAVE_FFTW
685   DialogGetReconstructionParameters dialogReconstruction (m_frame, 256, 256, SignalFilter::FILTER_ABS_BANDLIMIT, 1., ProcessSignal::FILTER_METHOD_RFFTW, ProcessSignal::FILTER_GENERATION_INVERSE_FOURIER, 1, Backprojector::INTERP_LINEAR, 1, Backprojector::BPROJ_IDIFF3);
686 #else
687   DialogGetReconstructionParameters dialogReconstruction (m_frame, 256, 256, SignalFilter::FILTER_ABS_BANDLIMIT, 1., ProcessSignal::FILTER_METHOD_CONVOLUTION, ProcessSignal::FILTER_GENERATION_DIRECT, 1, Backprojector::INTERP_LINEAR, 1, Backprojector::BPROJ_IDIFF3);
688 #endif
689   int retVal = dialogReconstruction.ShowModal();
690   if (retVal == wxID_OK) {
691     int xSize = dialogReconstruction.getXSize();
692     int ySize = dialogReconstruction.getYSize();
693     wxString optFilterName = dialogReconstruction.getFilterName();
694     double optFilterParam = dialogReconstruction.getFilterParam();
695     wxString optFilterMethodName = dialogReconstruction.getFilterMethodName();
696     int optZeropad = dialogReconstruction.getZeropad();
697     wxString optFilterGenerationName = dialogReconstruction.getFilterGenerationName();
698     wxString optInterpName = dialogReconstruction.getInterpName();
699     int optInterpParam = dialogReconstruction.getInterpParam();
700     wxString optBackprojectName = dialogReconstruction.getBackprojectName();
701     int iTrace = dialogReconstruction.getTrace();
702     if (xSize > 0 && ySize > 0) {
703       ImageFileDocument* pReconDoc = dynamic_cast<ImageFileDocument*>(theApp->getDocManager()->CreateDocument("untitled.if", wxDOC_SILENT));
704       ImageFile& imageFile = pReconDoc->getImageFile();
705       const Projections& rProj = GetDocument()->getProjections();
706       imageFile.setArraySize (xSize, ySize);
707       Timer timerRecon;
708
709       Reconstructor* pReconstruct = new Reconstructor (rProj, imageFile, optFilterName.c_str(), optFilterParam, optFilterMethodName.c_str(), optZeropad, optFilterGenerationName.c_str(), optInterpName.c_str(), optInterpParam, optBackprojectName.c_str(), iTrace);
710       if (iTrace > Trace::TRACE_CONSOLE) {
711         ReconstructDialog* pDlgReconstruct = new ReconstructDialog (*pReconstruct, rProj, imageFile, iTrace, m_frame);
712         for (int iView = 0; iView < rProj.nView(); iView++) {
713           ::wxYield();
714           ::wxYield();
715           if (pDlgReconstruct->isCancelled() || ! pDlgReconstruct->reconstructView (iView)) {
716             delete pDlgReconstruct;
717             delete pReconstruct;
718             pReconDoc->DeleteAllViews();
719             return;
720           }
721           ::wxYield();
722           ::wxYield();
723           while (pDlgReconstruct->isPaused()) {
724               ::wxYield();
725               ::wxUsleep(50);
726           }
727         }
728       } else {
729         wxProgressDialog dlgProgress (wxString("Reconstruction"), wxString("Reconstruction Progress"), rProj.nView() + 1, m_frame, wxPD_CAN_ABORT);
730         for (int i = 0; i < rProj.nView(); i++) {
731           pReconstruct->reconstructView (i, 1);
732           if (! dlgProgress.Update(i + 1)) {
733             delete pReconstruct;
734             pReconDoc->DeleteAllViews();
735             return;
736           }
737         }
738       }
739       pReconDoc->Modify(true);
740       pReconDoc->UpdateAllViews(this);
741       ostringstream os;
742       os << "Reconstruct " << rProj.getFilename() << ": xSize=" << xSize << ", ySize=" << ySize << ", Filter=" << optFilterName.c_str() << ", FilterParam=" << optFilterParam << ", FilterMethod=" << optFilterMethodName.c_str() << ", FilterGeneration=" << optFilterGenerationName.c_str() << ", Zeropad=" << optZeropad << ", Interpolation=" << optInterpName.c_str() << ", InterpolationParam=" << optInterpParam << ", Backprojection=" << optBackprojectName.c_str() << "\n";
743       *theApp->getLog() << os.str().c_str();
744       imageFile.labelAdd (rProj.getLabel());
745       imageFile.labelAdd (Array2dFileLabel::L_HISTORY, os.str().c_str(), timerRecon.timerEnd());
746     }
747   }
748 }
749
750
751 ProjectionFileCanvas* 
752 ProjectionFileView::CreateCanvas (wxView *view, wxFrame *parent)
753 {
754     ProjectionFileCanvas* pCanvas;
755     int width, height;
756     parent->GetClientSize(&width, &height);
757     
758     pCanvas = new ProjectionFileCanvas (dynamic_cast<ProjectionFileView*>(view), parent, wxPoint(0, 0), wxSize(width, height), 0);
759     
760     pCanvas->SetScrollbars(20, 20, 50, 50);
761     pCanvas->SetBackgroundColour(*wxWHITE);
762     pCanvas->Clear();
763     
764     return pCanvas;
765 }
766
767 wxFrame*
768 ProjectionFileView::CreateChildFrame(wxDocument *doc, wxView *view)
769 {
770     wxDocChildFrame *subframe = new wxDocChildFrame(doc, view, theApp->getMainFrame(), -1, "Projection Frame", wxPoint(10, 10), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
771     
772     wxMenu *file_menu = new wxMenu;
773     
774     file_menu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...");
775     file_menu->Append(wxID_OPEN, "&Open...");
776     file_menu->Append(wxID_SAVE, "&Save");
777     file_menu->Append(wxID_SAVEAS, "Save &As...");
778     file_menu->Append(wxID_CLOSE, "&Close");
779     
780     file_menu->AppendSeparator();
781     file_menu->Append(PJMENU_FILE_PROPERTIES, "P&roperties");
782
783     file_menu->AppendSeparator();
784     file_menu->Append(wxID_PRINT, "&Print...");
785     file_menu->Append(wxID_PRINT_SETUP, "Print &Setup...");
786     file_menu->Append(wxID_PREVIEW, "Print Pre&view");
787     
788     wxMenu *process_menu = new wxMenu;
789     process_menu->Append(PJMENU_PROCESS_RECONSTRUCT, "R&econstruct...");
790
791     wxMenu *help_menu = new wxMenu;
792     help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents");
793     help_menu->AppendSeparator();
794     help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
795     
796     wxMenuBar *menu_bar = new wxMenuBar;
797     
798     menu_bar->Append(file_menu, "&File");
799     menu_bar->Append(process_menu, "&Process");
800     menu_bar->Append(help_menu, "&Help");
801     
802     subframe->SetMenuBar(menu_bar);
803     
804     subframe->Centre(wxBOTH);
805     
806     return subframe;
807 }
808
809
810 bool 
811 ProjectionFileView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
812 {
813     m_frame = CreateChildFrame(doc, this);
814     SetFrame(m_frame);
815     
816     int width, height;
817     m_frame->GetClientSize(&width, &height);
818     m_frame->SetTitle("ProjectionFileView");
819     m_canvas = CreateCanvas(this, m_frame);
820
821 #ifdef __X__
822     int x, y;  // X requires a forced resize
823     m_frame->GetSize(&x, &y);
824     m_frame->SetSize(-1, -1, x, y);
825 #endif
826
827     m_frame->Show(true);
828     Activate(true);
829     
830     return true;
831 }
832
833 void 
834 ProjectionFileView::OnDraw (wxDC* dc)
835 {
836     if (m_bitmap.Ok())
837         dc->DrawBitmap (m_bitmap, 0, 0, false);
838 }
839
840
841 void 
842 ProjectionFileView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
843 {
844     const Projections& rProj = GetDocument()->getProjections();
845     const int nDet = rProj.nDet();
846     const int nView = rProj.nView();
847     if (nDet != 0 && nView != 0) {
848         const DetectorArray& detarray = rProj.getDetectorArray(0);
849         const DetectorValue* detval = detarray.detValues();
850         double min = detval[0];
851         double max = detval[0];
852         for (int iy = 0; iy < nView; iy++) {
853             const DetectorArray& detarray = rProj.getDetectorArray(iy);
854             const DetectorValue* detval = detarray.detValues();
855             for (int ix = 0; ix < nDet; ix++) {
856                 if (min > detval[ix])
857                     min = detval[ix];
858                 else if (max < detval[ix])
859                     max = detval[ix];
860             }
861         }
862
863         unsigned char* imageData = new unsigned char [nDet * nView * 3];
864         double scale = (max - min) / 255;
865         for (int iy = 0; iy < nView; iy++) {
866             const DetectorArray& detarray = rProj.getDetectorArray(iy);
867             const DetectorValue* detval = detarray.detValues();
868             for (int ix = 0; ix < nDet; ix++) {
869                 int intensity = static_cast<int>(((detval[ix] - min) / scale) + 0.5);
870                 intensity = clamp(intensity, 0, 255);
871                 int baseAddr = (iy * nDet + ix) * 3;
872                 imageData[baseAddr] = imageData[baseAddr+1] = imageData[baseAddr+2] = intensity;
873             }
874         }
875         wxImage image (nDet, nView, imageData, true);
876         m_bitmap = image.ConvertToBitmap();
877         delete imageData;
878         int xSize = nDet;
879         int ySize = nView;
880         xSize = clamp (xSize, 0, 800);
881         ySize = clamp (ySize, 0, 800);
882         m_frame->SetClientSize (xSize, ySize);
883         m_canvas->SetScrollbars (20, 20, nDet/20, nView/20);
884     }
885
886     if (m_canvas)
887         m_canvas->Refresh();
888 }
889
890 bool 
891 ProjectionFileView::OnClose (bool deleteWindow)
892 {
893     if (!GetDocument()->Close())
894         return false;
895
896     m_canvas->Clear();
897     m_canvas->m_pView = NULL;
898     m_canvas = NULL;
899     wxString s(wxTheApp->GetAppName());
900     if (m_frame)
901       m_frame->SetTitle(s);
902     SetFrame(NULL);
903
904     Activate(false);
905     
906     if (deleteWindow) {
907         delete m_frame;
908         return true;
909     }
910     return true;
911 }
912