r460: no 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-2001 Kevin Rosenberg
11 **
12 **  $Id: views.cpp,v 1.84 2001/01/28 19:10:18 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 // For compilers that support precompilation, includes "wx/wx.h".
29 #include "wx/wxprec.h"
30
31 #ifdef __BORLANDC__
32 #pragma hdrstop
33 #endif
34
35 #ifndef WX_PRECOMP
36 #include "wx/wx.h"
37 #endif
38
39 #if !wxUSE_DOC_VIEW_ARCHITECTURE
40 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
41 #endif
42
43 #include "wx/image.h"
44 #include "wx/progdlg.h"
45
46 #include "ct.h"
47 #include "ctsim.h"
48 #include "docs.h"
49 #include "views.h"
50 #include "dialogs.h"
51 #include "dlgprojections.h"
52 #include "dlgreconstruct.h"
53 #include "backprojectors.h"
54 #include "reconstruct.h"
55 #include "timer.h"
56
57 #if defined(MSVC) || HAVE_SSTREAM
58 #include <sstream>
59 #else
60 #include <sstream_subst>
61 #endif
62
63
64 // ImageFileCanvas
65
66 BEGIN_EVENT_TABLE(ImageFileCanvas, wxScrolledWindow)
67 EVT_MOUSE_EVENTS(ImageFileCanvas::OnMouseEvent)
68 END_EVENT_TABLE()
69
70
71 ImageFileCanvas::ImageFileCanvas (ImageFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style)
72 : wxScrolledWindow(frame, -1, pos, size, style), m_pView(v), m_xCursor(-1), m_yCursor(-1)
73 {
74 }
75
76 ImageFileCanvas::~ImageFileCanvas()
77 {
78   m_pView = NULL;
79 }
80
81 void 
82 ImageFileCanvas::OnDraw(wxDC& dc)
83 {
84   if (m_pView)
85     m_pView->OnDraw(& dc);
86 }
87
88 void 
89 ImageFileCanvas::DrawRubberBandCursor (wxDC& dc, int x, int y)
90 {
91   const ImageFile& rIF = m_pView->GetDocument()->getImageFile();
92   int nx = rIF.nx();
93   int ny = rIF.ny();
94   
95   int yPt = ny - y - 1;
96   dc.SetLogicalFunction (wxINVERT);
97   dc.SetPen (*wxGREEN_PEN);
98   dc.DrawLine (0, yPt, nx, yPt);
99   dc.DrawLine (x, 0, x, ny);
100   dc.SetLogicalFunction (wxCOPY);
101 }
102
103 bool
104 ImageFileCanvas::GetCurrentCursor (int& x, int& y)
105 {
106   x = m_xCursor;
107   y = m_yCursor;
108   
109   if (m_xCursor >= 0 && m_yCursor >= 0)
110     return true;
111   else
112     return false;
113 }
114
115 void 
116 ImageFileCanvas::OnMouseEvent(wxMouseEvent& event)
117 {
118   if (! m_pView)
119     return;
120   
121   wxClientDC dc(this);
122   PrepareDC(dc);
123   
124   wxPoint pt(event.GetLogicalPosition(dc));
125   
126   const ImageFileDocument* pIFDoc = m_pView->GetDocument();
127   if (! pIFDoc)
128     return;
129   const ImageFile& rIF = pIFDoc->getImageFile();
130   ImageFileArrayConst v = rIF.getArray();
131   int nx = rIF.nx();
132   int ny = rIF.ny();
133   const int yPt = ny - 1 - pt.y;
134   if (event.RightIsDown()) {
135     if (pt.x >= 0 && pt.x < nx && pt.y >= 0 && pt.y < ny) {
136       std::ostringstream os;
137       os << "Image value (" << pt.x << "," << yPt << ") = " << v[pt.x][yPt];
138       if (rIF.isComplex()) {
139         double dImag = rIF.getImaginaryArray()[pt.x][yPt];
140         if (dImag < 0)
141           os << " - " << -dImag;
142         else
143           os << " + " << dImag;
144         os << "i\n";
145       } else
146         os << "\n";
147       *theApp->getLog() << os.str().c_str();
148     } else
149       *theApp->getLog() << "Mouse out of image range (" << pt.x << "," << yPt << ")\n";
150   }
151   else if (event.LeftIsDown() || event.LeftUp() || event.RightUp()) {
152     if (pt.x >= 0 && pt.x < nx && pt.y >= 0 && pt.y < ny) {
153       if (m_xCursor >= 0 && m_yCursor >= 0) {
154         DrawRubberBandCursor (dc, m_xCursor, m_yCursor);
155       }
156       DrawRubberBandCursor (dc, pt.x, yPt);
157       m_xCursor = pt.x;
158       m_yCursor = yPt;
159     } else
160       *theApp->getLog() << "Mouse out of image range (" << pt.x << "," << yPt << ")\n";
161   }
162   if (event.LeftUp()) {
163     std::ostringstream os;
164     os << "Selected column " << pt.x << " , row " << yPt << "\n";
165     *theApp->getLog() << os.str().c_str();
166   }
167 }
168
169 wxSize
170 ImageFileCanvas::GetBestSize() const
171 {
172   if (! m_pView)
173     return wxSize(0,0);
174   
175   const ImageFile& rIF = m_pView->GetDocument()->getImageFile();
176   return wxSize (rIF.nx(), rIF.ny());
177 }
178
179
180 // ImageFileView
181
182 IMPLEMENT_DYNAMIC_CLASS(ImageFileView, wxView)
183
184 BEGIN_EVENT_TABLE(ImageFileView, wxView)
185 EVT_MENU(IFMENU_FILE_EXPORT, ImageFileView::OnExport)
186 EVT_MENU(IFMENU_FILE_PROPERTIES, ImageFileView::OnProperties)
187 EVT_MENU(IFMENU_VIEW_SCALE_MINMAX, ImageFileView::OnScaleMinMax)
188 EVT_MENU(IFMENU_VIEW_SCALE_AUTO, ImageFileView::OnScaleAuto)
189 EVT_MENU(IFMENU_VIEW_SCALE_FULL, ImageFileView::OnScaleFull)
190 EVT_MENU(IFMENU_COMPARE_IMAGES, ImageFileView::OnCompare)
191 EVT_MENU(IFMENU_COMPARE_ROW, ImageFileView::OnCompareRow)
192 EVT_MENU(IFMENU_COMPARE_COL, ImageFileView::OnCompareCol)
193 EVT_MENU(IFMENU_FILTER_INVERTVALUES, ImageFileView::OnInvertValues)
194 EVT_MENU(IFMENU_FILTER_SQUARE, ImageFileView::OnSquare)
195 EVT_MENU(IFMENU_FILTER_SQRT, ImageFileView::OnSquareRoot)
196 EVT_MENU(IFMENU_FILTER_LOG, ImageFileView::OnLog)
197 EVT_MENU(IFMENU_FILTER_EXP, ImageFileView::OnExp)
198 EVT_MENU(IFMENU_FILTER_FOURIER, ImageFileView::OnFourier)
199 EVT_MENU(IFMENU_FILTER_INVERSE_FOURIER, ImageFileView::OnInverseFourier)
200 EVT_MENU(IFMENU_FILTER_SHUFFLEFOURIERTONATURALORDER, ImageFileView::OnShuffleFourierToNaturalOrder)
201 EVT_MENU(IFMENU_FILTER_SHUFFLENATURALTOFOURIERORDER, ImageFileView::OnShuffleNaturalToFourierOrder)
202 EVT_MENU(IFMENU_IMAGE_ADD, ImageFileView::OnAdd)
203 EVT_MENU(IFMENU_IMAGE_SUBTRACT, ImageFileView::OnSubtract)
204 EVT_MENU(IFMENU_IMAGE_MULTIPLY, ImageFileView::OnMultiply)
205 EVT_MENU(IFMENU_IMAGE_DIVIDE, ImageFileView::OnDivide)
206 EVT_MENU(IFMENU_IMAGE_SCALESIZE, ImageFileView::OnScaleSize)
207 #ifdef HAVE_FFT
208 EVT_MENU(IFMENU_FILTER_FFT, ImageFileView::OnFFT)
209 EVT_MENU(IFMENU_FILTER_IFFT, ImageFileView::OnIFFT)
210 EVT_MENU(IFMENU_FILTER_FFT_ROWS, ImageFileView::OnFFTRows)
211 EVT_MENU(IFMENU_FILTER_IFFT_ROWS, ImageFileView::OnIFFTRows)
212 EVT_MENU(IFMENU_FILTER_FFT_COLS, ImageFileView::OnFFTCols)
213 EVT_MENU(IFMENU_FILTER_IFFT_COLS, ImageFileView::OnIFFTCols)
214 #endif
215 EVT_MENU(IFMENU_FILTER_MAGNITUDE, ImageFileView::OnMagnitude)
216 EVT_MENU(IFMENU_FILTER_PHASE, ImageFileView::OnPhase)
217 EVT_MENU(IFMENU_PLOT_ROW, ImageFileView::OnPlotRow)
218 EVT_MENU(IFMENU_PLOT_COL, ImageFileView::OnPlotCol)
219 #ifdef HAVE_FFT
220 EVT_MENU(IFMENU_PLOT_FFT_ROW, ImageFileView::OnPlotFFTRow)
221 EVT_MENU(IFMENU_PLOT_FFT_COL, ImageFileView::OnPlotFFTCol)
222 #endif
223 EVT_MENU(IFMENU_PLOT_HISTOGRAM, ImageFileView::OnPlotHistogram)
224 END_EVENT_TABLE()
225
226 ImageFileView::ImageFileView() 
227 : wxView(), m_pFrame(NULL), m_pCanvas(NULL), m_pFileMenu(0), m_bMinSpecified(false), m_bMaxSpecified(false)
228 {
229   m_iDefaultExportFormatID = ImageFile::FORMAT_PNG;
230 }
231
232 ImageFileView::~ImageFileView()
233 {
234   GetDocumentManager()->FileHistoryRemoveMenu (m_pFileMenu);
235   GetDocumentManager()->ActivateView(this, FALSE, TRUE);
236 }
237
238 void
239 ImageFileView::OnProperties (wxCommandEvent& event)
240 {
241   const ImageFile& rIF = GetDocument()->getImageFile();
242   if (rIF.nx() == 0 || rIF.ny() == 0)
243     *theApp->getLog() << "Properties: empty imagefile\n";
244   else {
245     const std::string& rFilename = rIF.getFilename();
246     std::ostringstream os;
247     double min, max, mean, mode, median, stddev;
248     rIF.statistics (rIF.getArray(), min, max, mean, mode, median, stddev);
249     os << "Filename: " << rFilename << "\n";
250     os << "Size: (" << rIF.nx() << "," << rIF.ny() << ")\n";
251     os << "Data type: ";
252     if (rIF.isComplex())
253       os << "Complex\n";
254     else
255       os << "Real\n";
256     os << "\nMinimum: "<<min<<"\nMaximum: "<<max<<"\nMean: "<<mean<<"\nMedian: "<<median<<"\nMode: "<<mode<<"\nStandard Deviation: "<<stddev << "\n";
257     if (rIF.isComplex()) {
258       rIF.statistics (rIF.getImaginaryArray(), min, max, mean, mode, median, stddev);
259       os << "\nImaginary: min: "<<min<<"\nmax: "<<max<<"\nmean: "<<mean<<"\nmedian: "<<median<<"\nmode: "<<mode<<"\nstddev: "<<stddev << "\n";
260     }
261     if (rIF.nLabels() > 0) {
262       os << "\n";
263       rIF.printLabelsBrief (os);
264     }
265     *theApp->getLog() << os.str().c_str();
266     wxMessageDialog dialogMsg (getFrameForChild(), os.str().c_str(), "Imagefile Properties", wxOK | wxICON_INFORMATION);
267     dialogMsg.ShowModal();
268   }
269 }
270
271 void 
272 ImageFileView::OnScaleAuto (wxCommandEvent& event)
273 {
274   const ImageFile& rIF = GetDocument()->getImageFile();
275   double min, max, mean, mode, median, stddev;
276   rIF.statistics(min, max, mean, mode, median, stddev);
277   DialogAutoScaleParameters dialogAutoScale (getFrameForChild(), mean, mode, median, stddev, m_dAutoScaleFactor);
278   int iRetVal = dialogAutoScale.ShowModal();
279   if (iRetVal == wxID_OK) {
280     m_bMinSpecified = true;
281     m_bMaxSpecified = true;
282     double dMin, dMax;
283     if (dialogAutoScale.getMinMax (&dMin, &dMax)) {
284       m_dMinPixel = dMin;
285       m_dMaxPixel = dMax;
286       m_dAutoScaleFactor = dialogAutoScale.getAutoScaleFactor();
287       OnUpdate (this, NULL);
288     }
289   }
290 }
291
292 void 
293 ImageFileView::OnScaleMinMax (wxCommandEvent& event)
294 {
295   const ImageFile& rIF = GetDocument()->getImageFile();
296   double min, max;
297   if (! m_bMinSpecified && ! m_bMaxSpecified)
298     rIF.getMinMax (min, max);
299   
300   if (m_bMinSpecified)
301     min = m_dMinPixel;
302   if (m_bMaxSpecified)
303     max = m_dMaxPixel;
304   
305   DialogGetMinMax dialogMinMax (getFrameForChild(), "Set Image Minimum & Maximum", min, max);
306   int retVal = dialogMinMax.ShowModal();
307   if (retVal == wxID_OK) {
308     m_bMinSpecified = true;
309     m_bMaxSpecified = true;
310     m_dMinPixel = dialogMinMax.getMinimum();
311     m_dMaxPixel = dialogMinMax.getMaximum();
312     OnUpdate (this, NULL);
313   }
314 }
315
316 void 
317 ImageFileView::OnScaleFull (wxCommandEvent& event)
318 {
319   if (m_bMinSpecified || m_bMaxSpecified) {
320     m_bMinSpecified = false;
321     m_bMaxSpecified = false;
322     OnUpdate (this, NULL);
323   }
324 }
325
326 void
327 ImageFileView::OnCompare (wxCommandEvent& event)
328 {
329   std::vector<ImageFileDocument*> vecIF;
330   theApp->getCompatibleImages (GetDocument(), vecIF);
331   
332   if (vecIF.size() == 0) {
333     wxMessageBox("There are no compatible image files open for comparision", "No comparison images");
334   } else {
335     DialogGetComparisonImage dialogGetCompare(getFrameForChild(), "Get Comparison Image", vecIF, true);
336     
337     if (dialogGetCompare.ShowModal() == wxID_OK) {
338       const ImageFile& rIF = GetDocument()->getImageFile();
339       ImageFileDocument* pCompareDoc = dialogGetCompare.getImageFileDocument();
340       const ImageFile& rCompareIF = pCompareDoc->getImageFile();
341       std::ostringstream os;
342       double min, max, mean, mode, median, stddev;
343       rIF.statistics (min, max, mean, mode, median, stddev);
344       os << GetFrame()->GetTitle().c_str() << ": minimum=" << min << ", maximum=" << max << ", mean=" << mean << ", mode=" << mode << ", median=" << median << ", stddev=" << stddev << "\n";
345       rCompareIF.statistics (min, max, mean, mode, median, stddev);
346       os << pCompareDoc->GetFirstView()->GetFrame()->GetTitle().c_str() << ": minimum=" << min << ", maximum=" << max << ", mean=" << mean << ", mode=" << mode << ", median=" << median << ", stddev=" << stddev << "\n";
347       os << "\n";
348       double d, r, e;
349       rIF.comparativeStatistics (rCompareIF, d, r, e);
350       os << "Comparative Statistics: d=" << d << ", r=" << r << ", e=" << e << "\n";
351       *theApp->getLog() << os.str().c_str();
352       if (dialogGetCompare.getMakeDifferenceImage()) {
353         ImageFileDocument* pDifferenceDoc = theApp->newImageDoc();
354         if (! pDifferenceDoc) {
355           sys_error (ERR_SEVERE, "Unable to create image file");
356           return;
357         }
358         ImageFile& differenceImage = pDifferenceDoc->getImageFile();
359         
360         differenceImage.setArraySize (rIF.nx(), rIF.ny());
361         if (! rIF.subtractImages (rCompareIF, differenceImage)) {
362           pDifferenceDoc->getView()->getFrame()->Close(true);
363           return;
364         }
365         
366         wxString s = GetFrame()->GetTitle() + ": ";
367         differenceImage.labelsCopy (rIF, s.c_str());
368         s = pCompareDoc->GetFirstView()->GetFrame()->GetTitle() + ": ";
369         differenceImage.labelsCopy (rCompareIF, s.c_str());
370         std::ostringstream osLabel;
371         osLabel << "Compare image " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str() 
372           << " and " << pCompareDoc->GetFirstView()->GetFrame()->GetTitle().c_str() << ": "
373           << os.str().c_str();
374         differenceImage.labelAdd (os.str().c_str());
375         if (theApp->getSetModifyNewDocs())
376           pDifferenceDoc->Modify(true);
377         pDifferenceDoc->UpdateAllViews(this);
378         pDifferenceDoc->getView()->OnUpdate (this, NULL);
379         pDifferenceDoc->getView()->getFrame()->Show(true);
380       }
381       wxMessageBox(os.str().c_str(), "Image Comparison");
382     }
383   }
384 }
385
386 void
387 ImageFileView::OnInvertValues (wxCommandEvent& event)
388 {
389   ImageFile& rIF = GetDocument()->getImageFile();
390   rIF.invertPixelValues (rIF);
391   rIF.labelAdd ("Invert Pixel Values");
392   if (theApp->getSetModifyNewDocs())
393     GetDocument()->Modify(TRUE);
394   GetDocument()->UpdateAllViews(this);
395 }
396
397 void
398 ImageFileView::OnSquare (wxCommandEvent& event)
399 {
400   ImageFile& rIF = GetDocument()->getImageFile();
401   rIF.square (rIF);
402   rIF.labelAdd ("Square Pixel Values");
403   if (theApp->getSetModifyNewDocs())
404     GetDocument()->Modify(TRUE);
405   GetDocument()->UpdateAllViews(this);
406 }
407
408 void
409 ImageFileView::OnSquareRoot (wxCommandEvent& event)
410 {
411   ImageFile& rIF = GetDocument()->getImageFile();
412   rIF.sqrt (rIF);
413   rIF.labelAdd ("Square-root Pixel Values");
414   if (theApp->getSetModifyNewDocs())
415     GetDocument()->Modify(TRUE);
416   GetDocument()->UpdateAllViews(this);
417 }
418
419 void
420 ImageFileView::OnLog (wxCommandEvent& event)
421 {
422   ImageFile& rIF = GetDocument()->getImageFile();
423   rIF.log (rIF);
424   rIF.labelAdd ("Logrithm base-e Pixel Values");
425   if (theApp->getSetModifyNewDocs())
426     GetDocument()->Modify(TRUE);
427   GetDocument()->UpdateAllViews(this);
428 }
429
430 void
431 ImageFileView::OnExp (wxCommandEvent& event)
432 {
433   ImageFile& rIF = GetDocument()->getImageFile();
434   rIF.exp (rIF);
435   rIF.labelAdd ("Exponent base-e Pixel Values");
436   if (theApp->getSetModifyNewDocs())
437     GetDocument()->Modify(TRUE);
438   GetDocument()->UpdateAllViews(this);
439 }
440
441 void
442 ImageFileView::OnAdd (wxCommandEvent& event)
443 {
444   std::vector<ImageFileDocument*> vecIF;
445   theApp->getCompatibleImages (GetDocument(), vecIF);
446   
447   if (vecIF.size() == 0) {
448     wxMessageBox ("There are no compatible image files open for comparision", "No comparison images");
449   } else {
450     DialogGetComparisonImage dialogGetCompare (getFrameForChild(), "Get Image to Add", vecIF, false);
451     
452     if (dialogGetCompare.ShowModal() == wxID_OK) {
453       ImageFile& rIF = GetDocument()->getImageFile();
454       ImageFileDocument* pRHSDoc = dialogGetCompare.getImageFileDocument();
455       const ImageFile& rRHSIF = pRHSDoc->getImageFile();
456       ImageFileDocument* pNewDoc = theApp->newImageDoc();
457       if (! pNewDoc) {
458         sys_error (ERR_SEVERE, "Unable to create image file");
459         return;
460       }
461       ImageFile& newImage = pNewDoc->getImageFile();  
462       newImage.setArraySize (rIF.nx(), rIF.ny());
463       rIF.addImages (rRHSIF, newImage);
464       std::ostringstream os;
465       os << "Add image " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str() << " and " 
466         << pRHSDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
467       wxString s = GetDocument()->GetFirstView()->GetFrame()->GetTitle() + ": ";
468       newImage.labelsCopy (rIF, s.c_str());
469       s = pRHSDoc->GetFirstView()->GetFrame()->GetTitle() + ": ";
470       newImage.labelsCopy (rRHSIF, s.c_str());
471       newImage.labelAdd (os.str().c_str());
472       *theApp->getLog() << os.str().c_str() << "\n";
473       if (theApp->getSetModifyNewDocs())
474         pNewDoc->Modify(TRUE);
475       pNewDoc->UpdateAllViews(this);
476       pNewDoc->getView()->OnUpdate (this, NULL);
477       pNewDoc->getView()->getFrame()->Show(true);
478     }
479   }
480 }
481
482 void
483 ImageFileView::OnSubtract (wxCommandEvent& event)
484 {
485   std::vector<ImageFileDocument*> vecIF;
486   theApp->getCompatibleImages (GetDocument(), vecIF);
487   
488   if (vecIF.size() == 0) {
489     wxMessageBox ("There are no compatible image files open for comparision", "No comparison images");
490   } else {
491     DialogGetComparisonImage dialogGetCompare (getFrameForChild(), "Get Image to Subtract", vecIF, false);
492     
493     if (dialogGetCompare.ShowModal() == wxID_OK) {
494       ImageFile& rIF = GetDocument()->getImageFile();
495       ImageFileDocument* pRHSDoc = dialogGetCompare.getImageFileDocument();
496       const ImageFile& rRHSIF = pRHSDoc->getImageFile();
497       ImageFileDocument* pNewDoc = theApp->newImageDoc();
498       if (! pNewDoc) {
499         sys_error (ERR_SEVERE, "Unable to create image file");
500         return;
501       }
502       ImageFile& newImage = pNewDoc->getImageFile();  
503       newImage.setArraySize (rIF.nx(), rIF.ny());
504       rIF.subtractImages (rRHSIF, newImage);
505       std::ostringstream os;
506       os << "Subtract image " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str() << " and " 
507         << pRHSDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
508       wxString s = GetDocument()->GetFirstView()->GetFrame()->GetTitle() + ": ";
509       newImage.labelsCopy (rIF, s.c_str());
510       s = pRHSDoc->GetFirstView()->GetFrame()->GetTitle() + ": ";
511       newImage.labelsCopy (rRHSIF, s.c_str());
512       newImage.labelAdd (os.str().c_str());
513       *theApp->getLog() << os.str().c_str() << "\n";
514       if (theApp->getSetModifyNewDocs())
515         pNewDoc->Modify(TRUE);
516       pNewDoc->UpdateAllViews(this);
517       pNewDoc->getView()->OnUpdate (this, NULL);
518       pNewDoc->getView()->getFrame()->Show(true);
519     }
520   }
521 }
522
523 void
524 ImageFileView::OnMultiply (wxCommandEvent& event)
525 {
526   std::vector<ImageFileDocument*> vecIF;
527   theApp->getCompatibleImages (GetDocument(), vecIF);
528   
529   if (vecIF.size() == 0) {
530     wxMessageBox ("There are no compatible image files open for comparision", "No comparison images");
531   } else {
532     DialogGetComparisonImage dialogGetCompare (getFrameForChild(), "Get Image to Multiply", vecIF, false);
533     
534     if (dialogGetCompare.ShowModal() == wxID_OK) {
535       ImageFile& rIF = GetDocument()->getImageFile();
536       ImageFileDocument* pRHSDoc = dialogGetCompare.getImageFileDocument();
537       const ImageFile& rRHSIF = pRHSDoc->getImageFile();
538       ImageFileDocument* pNewDoc = theApp->newImageDoc();
539       if (! pNewDoc) {
540         sys_error (ERR_SEVERE, "Unable to create image file");
541         return;
542       }
543       ImageFile& newImage = pNewDoc->getImageFile();  
544       newImage.setArraySize (rIF.nx(), rIF.ny());
545       rIF.multiplyImages (rRHSIF, newImage);
546       std::ostringstream os;
547       os << "Multiply image " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str() << " and " 
548         << pRHSDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
549       wxString s = GetDocument()->GetFirstView()->GetFrame()->GetTitle() + ": ";
550       newImage.labelsCopy (rIF, s.c_str());
551       s = pRHSDoc->GetFirstView()->GetFrame()->GetTitle() + ": ";
552       newImage.labelsCopy (rRHSIF, s.c_str());
553       newImage.labelAdd (os.str().c_str());
554       *theApp->getLog() << os.str().c_str() << "\n";
555       if (theApp->getSetModifyNewDocs())
556         pNewDoc->Modify(TRUE);
557       pNewDoc->UpdateAllViews(this);
558       pNewDoc->getView()->OnUpdate (this, NULL);
559       pNewDoc->getView()->getFrame()->Show(true);
560     }
561   }
562 }
563
564 void
565 ImageFileView::OnDivide (wxCommandEvent& event)
566 {
567   std::vector<ImageFileDocument*> vecIF;
568   theApp->getCompatibleImages (GetDocument(), vecIF);
569   
570   if (vecIF.size() == 0) {
571     wxMessageBox ("There are no compatible image files open for comparision", "No comparison images");
572   } else {
573     DialogGetComparisonImage dialogGetCompare (getFrameForChild(), "Get Image to Divide", vecIF, false);
574     
575     if (dialogGetCompare.ShowModal() == wxID_OK) {
576       ImageFile& rIF = GetDocument()->getImageFile();
577       ImageFileDocument* pRHSDoc = dialogGetCompare.getImageFileDocument();
578       const ImageFile& rRHSIF = pRHSDoc->getImageFile();
579       ImageFileDocument* pNewDoc = theApp->newImageDoc();
580       if (! pNewDoc) {
581         sys_error (ERR_SEVERE, "Unable to create image file");
582         return;
583       }
584       ImageFile& newImage = pNewDoc->getImageFile();  
585       newImage.setArraySize (rIF.nx(), rIF.ny());
586       rIF.divideImages (rRHSIF, newImage);
587       std::ostringstream os;
588       os << "Divide image " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str() << " by " 
589         << pRHSDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
590       wxString s = GetDocument()->GetFirstView()->GetFrame()->GetTitle() + ": ";
591       newImage.labelsCopy (rIF, s.c_str());
592       s = pRHSDoc->GetFirstView()->GetFrame()->GetTitle() + ": ";
593       newImage.labelsCopy (rRHSIF, s.c_str());
594       newImage.labelAdd (os.str().c_str());
595       *theApp->getLog() << os.str().c_str() << "\n";
596       if (theApp->getSetModifyNewDocs())
597         pNewDoc->Modify(TRUE);
598       pNewDoc->UpdateAllViews(this);
599       pNewDoc->getView()->OnUpdate (this, NULL);
600       pNewDoc->getView()->getFrame()->Show(true);
601     }
602   }
603 }
604
605
606 #ifdef HAVE_FFT
607 void
608 ImageFileView::OnFFT (wxCommandEvent& event)
609 {
610   ImageFile& rIF = GetDocument()->getImageFile();
611   rIF.fft (rIF);
612   rIF.labelAdd ("FFT Image");
613   m_bMinSpecified = false;
614   m_bMaxSpecified = false;
615   if (theApp->getSetModifyNewDocs())
616     GetDocument()->Modify(TRUE);
617   GetDocument()->UpdateAllViews(this);
618 }
619
620 void
621 ImageFileView::OnIFFT (wxCommandEvent& event)
622 {
623   ImageFile& rIF = GetDocument()->getImageFile();
624   rIF.ifft (rIF);
625   rIF.labelAdd ("IFFT Image");
626   m_bMinSpecified = false;
627   m_bMaxSpecified = false;
628   if (theApp->getSetModifyNewDocs())
629     GetDocument()->Modify(TRUE);
630   GetDocument()->UpdateAllViews(this);
631 }
632
633 void
634 ImageFileView::OnFFTRows (wxCommandEvent& event)
635 {
636   ImageFile& rIF = GetDocument()->getImageFile();
637   rIF.fftRows (rIF);
638   rIF.labelAdd ("FFT Rows");
639   m_bMinSpecified = false;
640   m_bMaxSpecified = false;
641   if (theApp->getSetModifyNewDocs())
642     GetDocument()->Modify(TRUE);
643   GetDocument()->UpdateAllViews(this);
644 }
645
646 void
647 ImageFileView::OnIFFTRows (wxCommandEvent& event)
648 {
649   ImageFile& rIF = GetDocument()->getImageFile();
650   rIF.ifftRows (rIF);
651   rIF.labelAdd ("IFFT Rows");
652   m_bMinSpecified = false;
653   m_bMaxSpecified = false;
654   if (theApp->getSetModifyNewDocs())
655     GetDocument()->Modify(TRUE);
656   GetDocument()->UpdateAllViews(this);
657 }
658
659 void
660 ImageFileView::OnFFTCols (wxCommandEvent& event)
661 {
662   ImageFile& rIF = GetDocument()->getImageFile();
663   rIF.fftCols (rIF);
664   rIF.labelAdd ("FFT Columns");
665   m_bMinSpecified = false;
666   m_bMaxSpecified = false;
667   if (theApp->getSetModifyNewDocs())
668     GetDocument()->Modify(TRUE);
669   GetDocument()->UpdateAllViews(this);
670 }
671
672 void
673 ImageFileView::OnIFFTCols (wxCommandEvent& event)
674 {
675   ImageFile& rIF = GetDocument()->getImageFile();
676   rIF.ifftCols (rIF);
677   rIF.labelAdd ("IFFT Columns");
678   m_bMinSpecified = false;
679   m_bMaxSpecified = false;
680   if (theApp->getSetModifyNewDocs())
681     GetDocument()->Modify(TRUE);
682   GetDocument()->UpdateAllViews(this);
683 }
684 #endif
685
686 void
687 ImageFileView::OnFourier (wxCommandEvent& event)
688 {
689   ImageFile& rIF = GetDocument()->getImageFile();
690   wxProgressDialog dlgProgress (wxString("Fourier"), wxString("Fourier Progress"), 1, getFrameForChild(), wxPD_APP_MODAL);
691   rIF.fourier (rIF);
692   rIF.labelAdd ("Fourier Image");
693   m_bMinSpecified = false;
694   m_bMaxSpecified = false;
695   if (theApp->getSetModifyNewDocs())
696     GetDocument()->Modify(TRUE);
697   GetDocument()->UpdateAllViews(this);
698 }
699
700 void
701 ImageFileView::OnInverseFourier (wxCommandEvent& event)
702 {
703   ImageFile& rIF = GetDocument()->getImageFile();
704   wxProgressDialog dlgProgress (wxString("Inverse Fourier"), wxString("Inverse Fourier Progress"), 1, getFrameForChild(), wxPD_APP_MODAL);
705   rIF.inverseFourier (rIF);
706   rIF.labelAdd ("Inverse Fourier Image");
707   m_bMinSpecified = false;
708   m_bMaxSpecified = false;
709   if (theApp->getSetModifyNewDocs())
710     GetDocument()->Modify(TRUE);
711   GetDocument()->UpdateAllViews(this);
712 }
713
714 void
715 ImageFileView::OnShuffleNaturalToFourierOrder (wxCommandEvent& event)
716 {
717   ImageFile& rIF = GetDocument()->getImageFile();
718   Fourier::shuffleNaturalToFourierOrder (rIF);
719   rIF.labelAdd ("Shuffle Natural To Fourier Order");
720   m_bMinSpecified = false;
721   m_bMaxSpecified = false;
722   if (theApp->getSetModifyNewDocs())
723     GetDocument()->Modify(TRUE);
724   GetDocument()->UpdateAllViews(this);
725 }
726
727 void
728 ImageFileView::OnShuffleFourierToNaturalOrder (wxCommandEvent& event)
729 {
730   ImageFile& rIF = GetDocument()->getImageFile();
731   Fourier::shuffleFourierToNaturalOrder (rIF);
732   rIF.labelAdd ("Shuffle Fourier To Natural Order");
733   m_bMinSpecified = false;
734   m_bMaxSpecified = false;
735   if (theApp->getSetModifyNewDocs())
736     GetDocument()->Modify(TRUE);
737   GetDocument()->UpdateAllViews(this);
738 }
739
740 void
741 ImageFileView::OnMagnitude (wxCommandEvent& event)
742 {
743   ImageFile& rIF = GetDocument()->getImageFile();
744   if (rIF.isComplex()) {
745     rIF.magnitude (rIF);
746     rIF.labelAdd ("Magnitude of complex-image");
747     m_bMinSpecified = false;
748     m_bMaxSpecified = false;
749     if (theApp->getSetModifyNewDocs())
750       GetDocument()->Modify(TRUE);
751     GetDocument()->UpdateAllViews(this);
752   }
753 }
754
755 void
756 ImageFileView::OnPhase (wxCommandEvent& event)
757 {
758   ImageFile& rIF = GetDocument()->getImageFile();
759   if (rIF.isComplex()) {
760     rIF.phase (rIF);
761     rIF.labelAdd ("Phase of complex-image");
762     m_bMinSpecified = false;
763     m_bMaxSpecified = false;
764     if (theApp->getSetModifyNewDocs())
765       GetDocument()->Modify(TRUE);
766     GetDocument()->UpdateAllViews(this);
767   }
768 }
769
770
771 ImageFileCanvas* 
772 ImageFileView::CreateCanvas (wxFrame* parent)
773 {
774   ImageFileCanvas* pCanvas;
775   int width, height;
776   parent->GetClientSize(&width, &height);
777   
778   pCanvas = new ImageFileCanvas (this, parent, wxPoint(0, 0), wxSize(width, height), 0);
779   
780   pCanvas->SetScrollbars(20, 20, 50, 50);
781   pCanvas->SetBackgroundColour(*wxWHITE);
782   pCanvas->Clear();
783   
784   return pCanvas;
785 }
786
787 #if CTSIM_MDI
788 wxDocMDIChildFrame*
789 #else
790 wxDocChildFrame*
791 #endif
792 ImageFileView::CreateChildFrame(wxDocument *doc, wxView *view)
793 {
794 #if CTSIM_MDI
795   wxDocMDIChildFrame* subframe = new wxDocMDIChildFrame (doc, view, theApp->getMainFrame(), -1, "ImageFile Frame", wxPoint(-1, -1), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
796 #else
797   wxDocChildFrame* subframe = new wxDocChildFrame (doc, view, theApp->getMainFrame(), -1, "ImageFile Frame", wxPoint(-1, -1), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
798 #endif
799   theApp->setIconForFrame (subframe);
800   
801   wxMenu *m_pFileMenu = new wxMenu;
802   
803   m_pFileMenu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
804   m_pFileMenu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
805   m_pFileMenu->Append(wxID_OPEN, "&Open...\tCtrl-O");
806   m_pFileMenu->Append(wxID_SAVE, "&Save\tCtrl-S");
807   m_pFileMenu->Append(wxID_SAVEAS, "Save &As...");
808   m_pFileMenu->Append(wxID_CLOSE, "&Close\tCtrl-W");
809   
810   m_pFileMenu->AppendSeparator();
811   m_pFileMenu->Append(IFMENU_FILE_PROPERTIES, "P&roperties");
812   m_pFileMenu->Append(IFMENU_FILE_EXPORT, "&Export...");
813   
814   m_pFileMenu->AppendSeparator();
815   m_pFileMenu->Append(wxID_PRINT, "&Print...");
816   m_pFileMenu->Append(wxID_PRINT_SETUP, "Print &Setup...");
817   m_pFileMenu->Append(wxID_PREVIEW, "Print Pre&view");
818 #ifdef CTSIM_MDI
819   m_pFileMenu->AppendSeparator();
820   m_pFileMenu->Append(MAINMENU_FILE_EXIT, "E&xit");
821 #endif
822   GetDocumentManager()->FileHistoryAddFilesToMenu(m_pFileMenu);
823   GetDocumentManager()->FileHistoryUseMenu(m_pFileMenu);
824   
825   wxMenu *view_menu = new wxMenu;
826   view_menu->Append(IFMENU_VIEW_SCALE_MINMAX, "Display Scale S&et...\tCtrl-E");
827   view_menu->Append(IFMENU_VIEW_SCALE_AUTO, "Display Scale &Auto...\tCtrl-A");
828   view_menu->Append(IFMENU_VIEW_SCALE_FULL, "Display F&ull Scale\tCtrl-U");
829   
830   wxMenu* filter_menu = new wxMenu;
831   filter_menu->Append (IFMENU_FILTER_INVERTVALUES, "&Invert Values");
832   filter_menu->Append (IFMENU_FILTER_SQUARE, "&Square");
833   filter_menu->Append (IFMENU_FILTER_SQRT, "Square &Root");
834   filter_menu->Append (IFMENU_FILTER_LOG, "&Log");
835   filter_menu->Append (IFMENU_FILTER_EXP, "&Exp");
836   filter_menu->AppendSeparator();
837 #ifdef HAVE_FFT
838   filter_menu->Append (IFMENU_FILTER_FFT, "2D &FFT");
839   filter_menu->Append (IFMENU_FILTER_IFFT, "2D &IFFT");
840   filter_menu->Append (IFMENU_FILTER_FFT_ROWS, "FFT Rows");
841   filter_menu->Append (IFMENU_FILTER_IFFT_ROWS, "IFFT Rows");
842   filter_menu->Append (IFMENU_FILTER_FFT_COLS, "FFT Columns");
843   filter_menu->Append (IFMENU_FILTER_IFFT_COLS, "IFFT Columns");
844   filter_menu->Append (IFMENU_FILTER_FOURIER, "F&ourier");
845   filter_menu->Append (IFMENU_FILTER_INVERSE_FOURIER, "Inverse Fo&urier");
846 #else
847   filter_menu->Append (IFMENU_FILTER_FOURIER, "&Fourier");
848   filter_menu->Append (IFMENU_FILTER_INVERSE_FOURIER, "&Inverse Fourier");
849 #endif
850   filter_menu->Append (IFMENU_FILTER_SHUFFLEFOURIERTONATURALORDER, "S&huffle Fourier to Natural Order");
851   filter_menu->Append (IFMENU_FILTER_SHUFFLENATURALTOFOURIERORDER, "Shu&ffle Natural to Fourier Order");
852   filter_menu->Append (IFMENU_FILTER_MAGNITUDE, "&Magnitude");
853   filter_menu->Append (IFMENU_FILTER_PHASE, "&Phase");
854   
855   wxMenu* image_menu = new wxMenu;
856   image_menu->Append (IFMENU_IMAGE_ADD, "&Add...");
857   image_menu->Append (IFMENU_IMAGE_SUBTRACT, "&Subtract...");
858   image_menu->Append (IFMENU_IMAGE_MULTIPLY, "&Multiply...");
859   image_menu->Append (IFMENU_IMAGE_DIVIDE, "&Divide...");
860   image_menu->AppendSeparator();
861   image_menu->Append (IFMENU_IMAGE_SCALESIZE, "S&cale Size...");
862   
863   wxMenu *analyze_menu = new wxMenu;
864   analyze_menu->Append (IFMENU_PLOT_ROW, "Plot &Row");
865   analyze_menu->Append (IFMENU_PLOT_COL, "Plot &Column");
866   analyze_menu->Append (IFMENU_PLOT_HISTOGRAM, "Plot &Histogram");
867   analyze_menu->AppendSeparator();
868   analyze_menu->Append (IFMENU_PLOT_FFT_ROW, "Plot FFT Row");
869   analyze_menu->Append (IFMENU_PLOT_FFT_COL, "Plot FFT Column");
870   analyze_menu->AppendSeparator();
871   analyze_menu->Append (IFMENU_COMPARE_IMAGES, "Compare &Images...");
872   analyze_menu->Append (IFMENU_COMPARE_ROW, "Compare &Row");
873   analyze_menu->Append (IFMENU_COMPARE_COL, "Compare &Column");
874   
875   wxMenu *help_menu = new wxMenu;
876   help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents\tF1");
877   help_menu->Append(MAINMENU_HELP_TOPICS, "&Topics\tCtrl-H");
878   help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
879   
880   wxMenuBar *menu_bar = new wxMenuBar;
881   
882   menu_bar->Append(m_pFileMenu, "&File");
883   menu_bar->Append(view_menu, "&View");
884   menu_bar->Append(image_menu, "&Image");
885   menu_bar->Append(filter_menu, "Fi&lter");
886   menu_bar->Append(analyze_menu, "&Analyze");
887   menu_bar->Append(help_menu, "&Help");
888   
889   subframe->SetMenuBar(menu_bar);
890   
891   subframe->Centre(wxBOTH);
892   
893   wxAcceleratorEntry accelEntries[10];
894   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('O'), wxID_OPEN);
895   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('S'), wxID_SAVE);
896   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('W'), wxID_CLOSE);
897   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('H'), MAINMENU_HELP_TOPICS);
898   accelEntries[4].Set (wxACCEL_CTRL, static_cast<int>('P'), MAINMENU_FILE_CREATE_PHANTOM);
899   accelEntries[5].Set (wxACCEL_CTRL, static_cast<int>('F'), MAINMENU_FILE_CREATE_FILTER);
900   accelEntries[6].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS);
901   accelEntries[7].Set (wxACCEL_CTRL, static_cast<int>('A'), IFMENU_VIEW_SCALE_AUTO);
902   accelEntries[8].Set (wxACCEL_CTRL, static_cast<int>('U'), IFMENU_VIEW_SCALE_FULL);
903   accelEntries[9].Set (wxACCEL_CTRL, static_cast<int>('E'), IFMENU_VIEW_SCALE_MINMAX);
904   wxAcceleratorTable accelTable (10, accelEntries);
905   subframe->SetAcceleratorTable (accelTable);
906   
907   return subframe;
908 }
909
910
911 bool 
912 ImageFileView::OnCreate (wxDocument *doc, long WXUNUSED(flags) )
913 {
914   m_pFrame = CreateChildFrame(doc, this);
915      (m_pFrame);
916   
917   m_bMinSpecified = false;
918   m_bMaxSpecified = false;
919   m_dAutoScaleFactor = 1.;
920   
921   int width, height;
922   m_pFrame->GetClientSize (&width, &height);
923   m_pFrame->SetTitle("ImageFileView");
924   m_pCanvas = CreateCanvas (m_pFrame);
925   
926   int x, y;  // X requires a forced resize
927   m_pFrame->GetSize(&x, &y);
928   m_pFrame->SetSize(-1, -1, x, y);
929   m_pFrame->SetFocus();
930   m_pFrame->Show(true);
931   Activate(true);
932   
933   return true;
934 }
935
936 void 
937 ImageFileView::OnDraw (wxDC* dc)
938 {
939   wxSize sizeWindow = m_pFrame->GetClientSize();
940   wxSize sizeBest = m_pCanvas->GetBestSize();
941   if (sizeWindow.x > sizeBest.x || sizeWindow.y > sizeBest.y)
942     m_pFrame->SetClientSize (sizeBest);
943   
944   if (m_bitmap.Ok())
945     dc->DrawBitmap(m_bitmap, 0, 0, false);
946   
947   int xCursor, yCursor;
948   if (m_pCanvas->GetCurrentCursor (xCursor, yCursor))
949     m_pCanvas->DrawRubberBandCursor (*dc, xCursor, yCursor);
950 }
951
952
953 void 
954 ImageFileView::OnUpdate (wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
955 {
956   const ImageFile& rIF = GetDocument()->getImageFile();
957   ImageFileArrayConst v = rIF.getArray();
958   int nx = rIF.nx();
959   int ny = rIF.ny();
960   if (v != NULL && nx != 0 && ny != 0) {
961     if (! m_bMinSpecified || ! m_bMaxSpecified) {
962       double min, max;
963       rIF.getMinMax (min, max);
964       if (! m_bMinSpecified)
965         m_dMinPixel = min;
966       if (! m_bMaxSpecified)
967         m_dMaxPixel = max;
968     }
969     double scaleWidth = m_dMaxPixel - m_dMinPixel;
970     
971     unsigned char* imageData = new unsigned char [nx * ny * 3];
972     for (int ix = 0; ix < nx; ix++) {
973       for (int iy = 0; iy < ny; iy++) {
974         double scaleValue = ((v[ix][iy] - m_dMinPixel) / scaleWidth) * 255;
975         int intensity = static_cast<int>(scaleValue + 0.5);
976         intensity = clamp (intensity, 0, 255);
977         int baseAddr = ((ny - 1 - iy) * nx + ix) * 3;
978         imageData[baseAddr] = imageData[baseAddr+1] = imageData[baseAddr+2] = intensity;
979       }
980     }
981     wxImage image (nx, ny, imageData, true);
982     m_bitmap = image.ConvertToBitmap();
983     delete imageData;
984     int xSize = nx;
985     int ySize = ny;
986     ySize = clamp (ySize, 0, 800);
987     m_pFrame->SetClientSize (xSize, ySize);
988     m_pCanvas->SetScrollbars(20, 20, nx/20, ny/20);
989     m_pCanvas->SetBackgroundColour(*wxWHITE);
990   } 
991   
992   if (m_pCanvas)
993     m_pCanvas->Refresh();
994 }
995
996 bool 
997 ImageFileView::OnClose (bool deleteWindow)
998 {
999   if (! GetDocument() || ! GetDocument()->Close())
1000     return false;
1001   
1002   if (m_pCanvas) {
1003         m_pCanvas->Show(false);
1004     m_pCanvas->setView(NULL);
1005     m_pCanvas = NULL;
1006   }
1007   wxString s(theApp->GetAppName());
1008   if (m_pFrame)
1009     m_pFrame->SetTitle(s);
1010   
1011   SetFrame(NULL);
1012   Activate(false);
1013
1014   if (deleteWindow) {
1015     m_pFrame->Show(false);
1016         ::wxYield();
1017     m_pFrame->Destroy();
1018     m_pFrame = NULL;
1019   }
1020   return true;
1021 }
1022
1023 void
1024 ImageFileView::OnExport (wxCommandEvent& event)
1025 {
1026   ImageFile& rIF = GetDocument()->getImageFile();
1027   ImageFileArrayConst v = rIF.getArray();
1028   int nx = rIF.nx();
1029   int ny = rIF.ny();
1030   if (v != NULL && nx != 0 && ny != 0) {
1031     if (! m_bMinSpecified || ! m_bMaxSpecified) {
1032       double min, max;
1033       rIF.getMinMax (min, max);
1034       if (! m_bMinSpecified)
1035         m_dMinPixel = min;
1036       if (! m_bMaxSpecified)
1037         m_dMaxPixel = max;
1038     }
1039     
1040     DialogExportParameters dialogExport (getFrameForChild(), m_iDefaultExportFormatID);
1041     if (dialogExport.ShowModal() == wxID_OK) {
1042       wxString strFormatName (dialogExport.getFormatName ());
1043       m_iDefaultExportFormatID = ImageFile::convertFormatNameToID (strFormatName.c_str());
1044       
1045       wxString strExt;
1046       wxString strWildcard;
1047       if (m_iDefaultExportFormatID == ImageFile::FORMAT_PGM || m_iDefaultExportFormatID == ImageFile::FORMAT_PGMASCII) {
1048         strExt = ".pgm";
1049         strWildcard = "PGM Files (*.pgm)|*.pgm";
1050       }
1051 #ifdef HAVE_PNG
1052       else if (m_iDefaultExportFormatID == ImageFile::FORMAT_PNG || m_iDefaultExportFormatID == ImageFile::FORMAT_PNG16) {
1053         strExt = ".png";
1054         strWildcard = "PNG Files (*.png)|*.png";
1055       }
1056 #endif
1057       
1058       const wxString& strFilename = wxFileSelector (wxString("Export Filename"), wxString(""), 
1059         wxString(""), strExt, strWildcard, wxOVERWRITE_PROMPT | wxHIDE_READONLY | wxSAVE);
1060       if (strFilename) {
1061         rIF.exportImage (strFormatName.c_str(), strFilename.c_str(), 1, 1, m_dMinPixel, m_dMaxPixel);
1062         *theApp->getLog() << "Exported file " << strFilename << "\n";
1063       }
1064     }
1065   }
1066 }
1067
1068 void
1069 ImageFileView::OnScaleSize (wxCommandEvent& event)
1070 {
1071   ImageFile& rIF = GetDocument()->getImageFile();
1072   unsigned int iOldNX = rIF.nx();
1073   unsigned int iOldNY = rIF.ny();
1074   
1075   DialogGetXYSize dialogGetXYSize (getFrameForChild(), "Set New X & Y Dimensions", iOldNX, iOldNY);
1076   if (dialogGetXYSize.ShowModal() == wxID_OK) {
1077     unsigned int iNewNX = dialogGetXYSize.getXSize();
1078     unsigned int iNewNY = dialogGetXYSize.getYSize();
1079     std::ostringstream os;
1080     os << "Scale Size from (" << iOldNX << "," << iOldNY << ") to (" << iNewNX << "," << iNewNY << ")";
1081     ImageFileDocument* pScaledDoc = theApp->newImageDoc();
1082     if (! pScaledDoc) {
1083       sys_error (ERR_SEVERE, "Unable to create image file");
1084       return;
1085     }
1086     ImageFile& rScaledIF = pScaledDoc->getImageFile();
1087     rScaledIF.setArraySize (iNewNX, iNewNY);
1088     rScaledIF.labelsCopy (rIF);
1089     rScaledIF.labelAdd (os.str().c_str());
1090     rIF.scaleImage (rScaledIF);
1091     *theApp->getLog() << os.str().c_str() << "\n";
1092     if (theApp->getSetModifyNewDocs())
1093       pScaledDoc->Modify(TRUE);
1094     pScaledDoc->UpdateAllViews (this);
1095     pScaledDoc->getView()->OnUpdate (this, NULL);
1096     pScaledDoc->getView()->getFrame()->Show(true);
1097   }
1098 }
1099
1100 void
1101 ImageFileView::OnPlotRow (wxCommandEvent& event)
1102 {
1103   int xCursor, yCursor;
1104   if (! m_pCanvas->GetCurrentCursor (xCursor, yCursor)) {
1105     wxMessageBox ("No row selected. Please use left mouse button on image to select column","Error");
1106     return;
1107   }
1108   
1109   const ImageFile& rIF = GetDocument()->getImageFile();
1110   ImageFileArrayConst v = rIF.getArray();
1111   ImageFileArrayConst vImag = rIF.getImaginaryArray();
1112   int nx = rIF.nx();
1113   int ny = rIF.ny();
1114   
1115   if (v != NULL && yCursor < ny) {
1116     double* pX = new double [nx];
1117     double* pYReal = new double [nx];
1118     double *pYImag = NULL;
1119     double *pYMag = NULL;
1120     if (rIF.isComplex()) {
1121       pYImag = new double [nx];
1122       pYMag = new double [nx];
1123     }
1124     for (int i = 0; i < nx; i++) {
1125       pX[i] = i;
1126       pYReal[i] = v[i][yCursor];
1127       if (rIF.isComplex()) {
1128         pYImag[i] = vImag[i][yCursor];
1129         pYMag[i] = ::sqrt (v[i][yCursor] * v[i][yCursor] + vImag[i][yCursor] * vImag[i][yCursor]);
1130       }
1131     }
1132     PlotFileDocument* pPlotDoc = theApp->newPlotDoc();
1133     if (! pPlotDoc) {
1134       sys_error (ERR_SEVERE, "Internal error: unable to create Plot file");
1135     } else {
1136       PlotFile& rPlotFile = pPlotDoc->getPlotFile();
1137       std::ostringstream os;
1138       os << "Row " << yCursor;
1139       std::string title("title ");
1140       title += os.str();
1141       rPlotFile.addEzsetCommand (title.c_str());
1142       rPlotFile.addEzsetCommand ("xlabel Column");
1143       rPlotFile.addEzsetCommand ("ylabel Pixel Value");
1144       rPlotFile.addEzsetCommand ("lxfrac 0");
1145       rPlotFile.addEzsetCommand ("box");
1146       rPlotFile.addEzsetCommand ("grid");
1147       rPlotFile.addEzsetCommand ("curve 1");
1148       rPlotFile.addEzsetCommand ("color 1");
1149       if (rIF.isComplex()) {
1150         rPlotFile.addEzsetCommand ("dash 1");
1151         rPlotFile.addEzsetCommand ("curve 2");
1152         rPlotFile.addEzsetCommand ("color 4");
1153         rPlotFile.addEzsetCommand ("dash 3");
1154         rPlotFile.addEzsetCommand ("curve 3");
1155         rPlotFile.addEzsetCommand ("color 0");
1156         rPlotFile.addEzsetCommand ("solid");
1157         rPlotFile.setCurveSize (4, nx);
1158       } else
1159         rPlotFile.setCurveSize (2, nx);
1160       rPlotFile.addColumn (0, pX);
1161       rPlotFile.addColumn (1, pYReal); 
1162       if (rIF.isComplex()) {
1163         rPlotFile.addColumn (2, pYImag);
1164         rPlotFile.addColumn (3, pYMag);
1165       }
1166       for (unsigned int iL = 0; iL < rIF.nLabels(); iL++)
1167         rPlotFile.addDescription (rIF.labelGet(iL).getLabelString().c_str());
1168       os << " Plot of " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1169       *theApp->getLog() << os.str().c_str() << "\n";
1170       rPlotFile.addDescription (os.str().c_str());
1171     }
1172     delete pX;
1173     delete pYReal;
1174     if (rIF.isComplex()) {
1175       delete pYImag;
1176       delete pYMag;
1177     }
1178     if (theApp->getSetModifyNewDocs())
1179       pPlotDoc->Modify(true);
1180     pPlotDoc->UpdateAllViews();
1181   }
1182 }
1183
1184 void
1185 ImageFileView::OnPlotCol (wxCommandEvent& event)
1186 {
1187   int xCursor, yCursor;
1188   if (! m_pCanvas->GetCurrentCursor (xCursor, yCursor)) {
1189     wxMessageBox ("No column selected. Please use left mouse button on image to select column","Error");
1190     return;
1191   }
1192   
1193   const ImageFile& rIF = GetDocument()->getImageFile();
1194   ImageFileArrayConst v = rIF.getArray();
1195   ImageFileArrayConst vImag = rIF.getImaginaryArray();
1196   int nx = rIF.nx();
1197   int ny = rIF.ny();
1198   
1199   if (v != NULL && xCursor < nx) {
1200     double* pX = new double [ny];
1201     double* pYReal = new double [ny];
1202     double* pYImag = NULL;
1203     double* pYMag = NULL;
1204     if (rIF.isComplex()) {
1205       pYImag = new double [ny];
1206       pYMag = new double [ny];
1207     }
1208     for (int i = 0; i < ny; i++) {
1209       pX[i] = i;
1210       pYReal[i] = v[xCursor][i];
1211       if (rIF.isComplex()) {
1212         pYImag[i] = vImag[xCursor][i];
1213         pYMag[i] = ::sqrt (v[xCursor][i] * v[xCursor][i] + vImag[xCursor][i] * vImag[xCursor][i]);
1214       }
1215     }
1216     PlotFileDocument* pPlotDoc = theApp->newPlotDoc();
1217     if (! pPlotDoc) {
1218       sys_error (ERR_SEVERE, "Internal error: unable to create Plot file");
1219     } else {
1220       PlotFile& rPlotFile = pPlotDoc->getPlotFile();
1221       std::ostringstream os;
1222       os << "Column " << xCursor;
1223       std::string title("title ");
1224       title += os.str();
1225       rPlotFile.addEzsetCommand (title.c_str());
1226       rPlotFile.addEzsetCommand ("xlabel Row");
1227       rPlotFile.addEzsetCommand ("ylabel Pixel Value");
1228       rPlotFile.addEzsetCommand ("lxfrac 0");
1229       rPlotFile.addEzsetCommand ("box");
1230       rPlotFile.addEzsetCommand ("grid");
1231       rPlotFile.addEzsetCommand ("curve 1");
1232       rPlotFile.addEzsetCommand ("color 1");
1233       if (rIF.isComplex()) {
1234         rPlotFile.addEzsetCommand ("dash 1");
1235         rPlotFile.addEzsetCommand ("curve 2");
1236         rPlotFile.addEzsetCommand ("color 4");
1237         rPlotFile.addEzsetCommand ("dash 3");
1238         rPlotFile.addEzsetCommand ("curve 3");
1239         rPlotFile.addEzsetCommand ("color 0");
1240         rPlotFile.addEzsetCommand ("solid");
1241         rPlotFile.setCurveSize (4, ny);
1242       } else
1243         rPlotFile.setCurveSize (2, ny);
1244       rPlotFile.addColumn (0, pX);
1245       rPlotFile.addColumn (1, pYReal); 
1246       if (rIF.isComplex()) {
1247         rPlotFile.addColumn (2, pYImag);
1248         rPlotFile.addColumn (3, pYMag);
1249       }
1250       for (unsigned int iL = 0; iL < rIF.nLabels(); iL++)
1251         rPlotFile.addDescription (rIF.labelGet(iL).getLabelString().c_str());
1252       os << " Plot of " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1253       *theApp->getLog() << os.str().c_str() << "\n";
1254       rPlotFile.addDescription (os.str().c_str());
1255     }
1256     delete pX;
1257     delete pYReal;
1258     if (rIF.isComplex()) {
1259       delete pYImag;
1260       delete pYMag;
1261     }
1262     if (theApp->getSetModifyNewDocs())
1263       pPlotDoc->Modify(true);
1264     pPlotDoc->UpdateAllViews();
1265   }
1266 }
1267
1268 #ifdef HAVE_FFT
1269 void
1270 ImageFileView::OnPlotFFTRow (wxCommandEvent& event)
1271 {
1272   int xCursor, yCursor;
1273   if (! m_pCanvas->GetCurrentCursor (xCursor, yCursor)) {
1274     wxMessageBox ("No row selected. Please use left mouse button on image to select column","Error");
1275     return;
1276   }
1277   
1278   const ImageFile& rIF = GetDocument()->getImageFile();
1279   ImageFileArrayConst v = rIF.getArray();
1280   ImageFileArrayConst vImag = rIF.getImaginaryArray();
1281   int nx = rIF.nx();
1282   int ny = rIF.ny();
1283   
1284   if (v != NULL && yCursor < ny) {
1285     fftw_complex* pcIn = new fftw_complex [nx];
1286     
1287     int i;
1288     for (i = 0; i < nx; i++) {
1289       pcIn[i].re = v[i][yCursor];
1290       if (rIF.isComplex())
1291         pcIn[i].im = vImag[i][yCursor];
1292       else
1293         pcIn[i].im = 0;
1294     }
1295     
1296     fftw_plan plan = fftw_create_plan (nx, FFTW_FORWARD, FFTW_IN_PLACE);
1297     fftw_one (plan, pcIn, NULL);
1298     fftw_destroy_plan (plan);
1299     
1300     double* pX = new double [nx];
1301     double* pYReal = new double [nx];
1302     double* pYImag = new double [nx];
1303     double* pYMag = new double [nx];
1304     for (i = 0; i < nx; i++) {
1305       pX[i] = i;
1306       pYReal[i] = pcIn[i].re;
1307       pYImag[i] = pcIn[i].im;
1308       pYMag[i] = ::sqrt (pcIn[i].re * pcIn[i].re + pcIn[i].im * pcIn[i].im);
1309     }
1310     Fourier::shuffleFourierToNaturalOrder (pYReal, nx);
1311     Fourier::shuffleFourierToNaturalOrder (pYImag, nx);
1312     Fourier::shuffleFourierToNaturalOrder (pYMag, nx);
1313     
1314     PlotFileDocument* pPlotDoc = theApp->newPlotDoc();
1315     if (! pPlotDoc) {
1316       sys_error (ERR_SEVERE, "Internal error: unable to create Plot file");
1317     } else {
1318       PlotFile& rPlotFile = pPlotDoc->getPlotFile();
1319       std::ostringstream os;
1320       os << "Row " << yCursor;
1321       std::string title("title ");
1322       title += os.str();
1323       rPlotFile.addEzsetCommand (title.c_str());
1324       rPlotFile.addEzsetCommand ("xlabel Column");
1325       rPlotFile.addEzsetCommand ("ylabel Pixel Value");
1326       rPlotFile.addEzsetCommand ("lxfrac 0");
1327       rPlotFile.addEzsetCommand ("curve 1");
1328       rPlotFile.addEzsetCommand ("color 1");
1329       rPlotFile.addEzsetCommand ("dash 1");
1330       rPlotFile.addEzsetCommand ("curve 2");
1331       rPlotFile.addEzsetCommand ("color 4");
1332       rPlotFile.addEzsetCommand ("dash 3");
1333       rPlotFile.addEzsetCommand ("curve 3");
1334       rPlotFile.addEzsetCommand ("color 0");
1335       rPlotFile.addEzsetCommand ("solid");
1336       rPlotFile.addEzsetCommand ("box");
1337       rPlotFile.addEzsetCommand ("grid");
1338       rPlotFile.setCurveSize (4, nx);
1339       rPlotFile.addColumn (0, pX);
1340       rPlotFile.addColumn (1, pYReal);
1341       rPlotFile.addColumn (2, pYImag);
1342       rPlotFile.addColumn (3, pYMag);
1343       for (int iL = 0; iL < rIF.nLabels(); iL++)
1344         rPlotFile.addDescription (rIF.labelGet(iL).getLabelString().c_str());
1345       os << " FFT Plot of " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1346       *theApp->getLog() << os.str().c_str() << "\n";
1347       rPlotFile.addDescription (os.str().c_str());
1348     }
1349     delete pX;
1350     delete pYReal;
1351     delete pYImag;
1352     delete pYMag;
1353     delete [] pcIn;
1354     
1355     if (theApp->getSetModifyNewDocs())
1356       pPlotDoc->Modify(true);
1357     pPlotDoc->UpdateAllViews();
1358   }
1359 }
1360
1361 void
1362 ImageFileView::OnPlotFFTCol (wxCommandEvent& event)
1363 {
1364   int xCursor, yCursor;
1365   if (! m_pCanvas->GetCurrentCursor (xCursor, yCursor)) {
1366     wxMessageBox ("No column selected. Please use left mouse button on image to select column","Error");
1367     return;
1368   }
1369   
1370   const ImageFile& rIF = GetDocument()->getImageFile();
1371   ImageFileArrayConst v = rIF.getArray();
1372   ImageFileArrayConst vImag = rIF.getImaginaryArray();
1373   int nx = rIF.nx();
1374   int ny = rIF.ny();
1375   
1376   if (v != NULL && xCursor < nx) {
1377     fftw_complex* pcIn = new fftw_complex [ny];
1378     double *pdTemp = new double [ny];
1379     
1380     int i;
1381     for (i = 0; i < ny; i++)
1382       pdTemp[i] = v[xCursor][i];
1383     Fourier::shuffleNaturalToFourierOrder (pdTemp, ny);
1384     for (i = 0; i < ny; i++) 
1385       pcIn[i].re = pdTemp[i];
1386     
1387     for (i = 0; i < ny; i++) {
1388       if (rIF.isComplex())
1389         pdTemp[i] = vImag[xCursor][i];
1390       else
1391         pdTemp[i] = 0;
1392     }
1393     Fourier::shuffleNaturalToFourierOrder (pdTemp, ny);
1394     for (i = 0; i < ny; i++)
1395       pcIn[i].im = pdTemp[i];
1396     
1397     fftw_plan plan = fftw_create_plan (ny, FFTW_BACKWARD, FFTW_IN_PLACE);
1398     fftw_one (plan, pcIn, NULL);
1399     fftw_destroy_plan (plan);
1400     
1401     double* pX = new double [ny];
1402     double* pYReal = new double [ny];
1403     double* pYImag = new double [ny];
1404     double* pYMag = new double [ny];
1405     for (i = 0; i < ny; i++) {
1406       pX[i] = i;
1407       pYReal[i] = pcIn[i].re;
1408       pYImag[i] = pcIn[i].im;
1409       pYMag[i] = ::sqrt (pcIn[i].re * pcIn[i].re + pcIn[i].im * pcIn[i].im);
1410     }
1411     
1412     PlotFileDocument* pPlotDoc = theApp->newPlotDoc();
1413     if (! pPlotDoc) {
1414       sys_error (ERR_SEVERE, "Internal error: unable to create Plot file");
1415     } else {
1416       PlotFile& rPlotFile = pPlotDoc->getPlotFile();
1417       std::ostringstream os;
1418       os << "Column " << xCursor;
1419       std::string title("title ");
1420       title += os.str();
1421       rPlotFile.addEzsetCommand (title.c_str());
1422       rPlotFile.addEzsetCommand ("xlabel Column");
1423       rPlotFile.addEzsetCommand ("ylabel Pixel Value");
1424       rPlotFile.addEzsetCommand ("lxfrac 0");
1425       rPlotFile.addEzsetCommand ("curve 1");
1426       rPlotFile.addEzsetCommand ("color 1");
1427       rPlotFile.addEzsetCommand ("dash 1");
1428       rPlotFile.addEzsetCommand ("curve 2");
1429       rPlotFile.addEzsetCommand ("color 4");
1430       rPlotFile.addEzsetCommand ("dash 3");
1431       rPlotFile.addEzsetCommand ("curve 3");
1432       rPlotFile.addEzsetCommand ("color 0");
1433       rPlotFile.addEzsetCommand ("solid");
1434       rPlotFile.addEzsetCommand ("box");
1435       rPlotFile.addEzsetCommand ("grid");
1436       rPlotFile.setCurveSize (4, ny);
1437       rPlotFile.addColumn (0, pX);
1438       rPlotFile.addColumn (1, pYReal);
1439       rPlotFile.addColumn (2, pYImag);
1440       rPlotFile.addColumn (3, pYMag);
1441       for (int iL = 0; iL < rIF.nLabels(); iL++)
1442         rPlotFile.addDescription (rIF.labelGet(iL).getLabelString().c_str());
1443       os << " FFT Plot of " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1444       *theApp->getLog() << os.str().c_str() << "\n";
1445       rPlotFile.addDescription (os.str().c_str());
1446     }
1447     delete pX;
1448     delete pYReal;
1449     delete pYImag;
1450     delete pYMag;
1451     delete pdTemp;
1452     delete [] pcIn;
1453     
1454     if (theApp->getSetModifyNewDocs())
1455       pPlotDoc->Modify(true);
1456     pPlotDoc->UpdateAllViews();
1457   }
1458 }
1459 #endif
1460
1461 void
1462 ImageFileView::OnCompareCol (wxCommandEvent& event)
1463 {
1464   int xCursor, yCursor;
1465   if (! m_pCanvas->GetCurrentCursor (xCursor, yCursor)) {
1466     wxMessageBox ("No column selected. Please use left mouse button on image to select column","Error");
1467     return;
1468   }
1469   
1470   std::vector<ImageFileDocument*> vecIFDoc;
1471   theApp->getCompatibleImages (GetDocument(), vecIFDoc);
1472   if (vecIFDoc.size() == 0) {
1473     wxMessageBox ("No compatible images for Column Comparison", "Error");
1474     return;
1475   }
1476   DialogGetComparisonImage dialogGetCompare (getFrameForChild(), "Get Comparison Image", vecIFDoc, false);
1477   
1478   if (dialogGetCompare.ShowModal() == wxID_OK) {
1479     ImageFileDocument* pCompareDoc = dialogGetCompare.getImageFileDocument();
1480     const ImageFile& rIF = GetDocument()->getImageFile();
1481     const ImageFile& rCompareIF = pCompareDoc->getImageFile();
1482     
1483     ImageFileArrayConst v1 = rIF.getArray();
1484     ImageFileArrayConst v2 = rCompareIF.getArray();
1485     int nx = rIF.nx();
1486     int ny = rIF.ny();
1487     
1488     if (v1 != NULL && xCursor < nx) {
1489       double* pX = new double [ny];
1490       double* pY1 = new double [ny];
1491       double* pY2 = new double [ny];
1492       for (int i = 0; i < ny; i++) {
1493         pX[i] = i;
1494         pY1[i] = v1[xCursor][i];
1495         pY2[i] = v2[xCursor][i];
1496       }
1497       PlotFileDocument* pPlotDoc = theApp->newPlotDoc();
1498       if (! pPlotDoc) {
1499         sys_error (ERR_SEVERE, "Internal error: unable to create Plot file");
1500       } else {
1501         PlotFile& rPlotFile = pPlotDoc->getPlotFile();
1502         std::ostringstream os;
1503         os << "Column " << xCursor << " Comparison";
1504         std::string title("title ");
1505         title += os.str();
1506         rPlotFile.addEzsetCommand (title.c_str());
1507         rPlotFile.addEzsetCommand ("xlabel Row");
1508         rPlotFile.addEzsetCommand ("ylabel Pixel Value");
1509         rPlotFile.addEzsetCommand ("lxfrac 0");
1510         rPlotFile.addEzsetCommand ("curve 1");
1511         rPlotFile.addEzsetCommand ("color 2");
1512         rPlotFile.addEzsetCommand ("curve 2");
1513         rPlotFile.addEzsetCommand ("color 4");
1514         rPlotFile.addEzsetCommand ("dash 5");
1515         rPlotFile.addEzsetCommand ("box");
1516         rPlotFile.addEzsetCommand ("grid");
1517         rPlotFile.setCurveSize (3, ny);
1518         rPlotFile.addColumn (0, pX);
1519         rPlotFile.addColumn (1, pY1);
1520         rPlotFile.addColumn (2, pY2);
1521         
1522         unsigned int iL;
1523         for (iL = 0; iL < rIF.nLabels(); iL++) {
1524           std::string s = GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1525           s += ": ";
1526           s += rIF.labelGet(iL).getLabelString();
1527           rPlotFile.addDescription (s.c_str());
1528         }
1529         for (iL = 0; iL < rCompareIF.nLabels(); iL++) {
1530           std::string s = pCompareDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
1531           s += ": ";
1532           s += rCompareIF.labelGet(iL).getLabelString();
1533           rPlotFile.addDescription (s.c_str());
1534         }
1535         os << " Between " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str() << " and "
1536           << pCompareDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
1537         *theApp->getLog() << os.str().c_str() << "\n";
1538         rPlotFile.addDescription (os.str().c_str());
1539       }
1540       delete pX;
1541       delete pY1;
1542       delete pY2;
1543       if (theApp->getSetModifyNewDocs())
1544         pPlotDoc->Modify(true);
1545       pPlotDoc->UpdateAllViews();
1546     }
1547   }
1548 }
1549
1550 void
1551 ImageFileView::OnCompareRow (wxCommandEvent& event)
1552 {
1553   int xCursor, yCursor;
1554   if (! m_pCanvas->GetCurrentCursor (xCursor, yCursor)) {
1555     wxMessageBox ("No column selected. Please use left mouse button on image to select column","Error");
1556     return;
1557   }
1558   
1559   std::vector<ImageFileDocument*> vecIFDoc;
1560   theApp->getCompatibleImages (GetDocument(), vecIFDoc);
1561   
1562   if (vecIFDoc.size() == 0) {
1563     wxMessageBox ("No compatible images for Row Comparison", "Error");
1564     return;
1565   }
1566   
1567   DialogGetComparisonImage dialogGetCompare (getFrameForChild(), "Get Comparison Image", vecIFDoc, false);
1568   
1569   if (dialogGetCompare.ShowModal() == wxID_OK) {
1570     ImageFileDocument* pCompareDoc = dialogGetCompare.getImageFileDocument();
1571     const ImageFile& rIF = GetDocument()->getImageFile();
1572     const ImageFile& rCompareIF = pCompareDoc->getImageFile();
1573     
1574     ImageFileArrayConst v1 = rIF.getArray();
1575     ImageFileArrayConst v2 = rCompareIF.getArray();
1576     int nx = rIF.nx();
1577     int ny = rIF.ny();
1578     
1579     if (v1 != NULL && yCursor < ny) {
1580       double* pX = new double [nx];
1581       double* pY1 = new double [nx];
1582       double* pY2 = new double [nx];
1583       for (int i = 0; i < nx; i++) {
1584         pX[i] = i;
1585         pY1[i] = v1[i][yCursor];
1586         pY2[i] = v2[i][yCursor];
1587       }
1588       PlotFileDocument* pPlotDoc = theApp->newPlotDoc();
1589       if (! pPlotDoc) {
1590         sys_error (ERR_SEVERE, "Internal error: unable to create Plot file");
1591       } else {
1592         PlotFile& rPlotFile = pPlotDoc->getPlotFile();
1593         std::ostringstream os;
1594         os << "Row " << yCursor << " Comparison";
1595         std::string title("title ");
1596         title += os.str();
1597         rPlotFile.addEzsetCommand (title.c_str());
1598         rPlotFile.addEzsetCommand ("xlabel Column");
1599         rPlotFile.addEzsetCommand ("ylabel Pixel Value");
1600         rPlotFile.addEzsetCommand ("lxfrac 0");
1601         rPlotFile.addEzsetCommand ("curve 1");
1602         rPlotFile.addEzsetCommand ("color 2");
1603         rPlotFile.addEzsetCommand ("curve 2");
1604         rPlotFile.addEzsetCommand ("color 4");
1605         rPlotFile.addEzsetCommand ("dash 5");
1606         rPlotFile.addEzsetCommand ("box");
1607         rPlotFile.addEzsetCommand ("grid");
1608         rPlotFile.setCurveSize (3, nx);
1609         rPlotFile.addColumn (0, pX);
1610         rPlotFile.addColumn (1, pY1);
1611         rPlotFile.addColumn (2, pY2);
1612         unsigned int iL;
1613         for (iL = 0; iL < rIF.nLabels(); iL++) {
1614           std::string s = GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1615           s += ": ";
1616           s += rIF.labelGet(iL).getLabelString();
1617           rPlotFile.addDescription (s.c_str());
1618         }
1619         for (iL = 0; iL < rCompareIF.nLabels(); iL++) {
1620           std::string s = pCompareDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
1621           s += ": ";
1622           s += rCompareIF.labelGet(iL).getLabelString();
1623           rPlotFile.addDescription (s.c_str());
1624         }
1625         os << " Between " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str() << " and "
1626           << pCompareDoc->GetFirstView()->GetFrame()->GetTitle().c_str();
1627         *theApp->getLog() << os.str().c_str() << "\n";
1628         rPlotFile.addDescription (os.str().c_str());
1629       }
1630       delete pX;
1631       delete pY1;
1632       delete pY2;
1633       if (theApp->getSetModifyNewDocs())
1634         pPlotDoc->Modify(true);
1635       pPlotDoc->UpdateAllViews();
1636     }
1637   }
1638 }
1639
1640 static int NUMBER_HISTOGRAM_BINS = 256;
1641
1642 void
1643 ImageFileView::OnPlotHistogram (wxCommandEvent& event)
1644
1645   const ImageFile& rIF = GetDocument()->getImageFile();
1646   ImageFileArrayConst v = rIF.getArray();
1647   int nx = rIF.nx();
1648   int ny = rIF.ny();
1649   
1650   if (v != NULL && nx > 0 && ny > 0) {
1651     PlotFileDocument* pPlotDoc = theApp->newPlotDoc();
1652     if (! pPlotDoc) {
1653       sys_error (ERR_SEVERE, "Internal error: unable to create Plot file");
1654       return;
1655     }
1656     
1657     double* pX = new double [NUMBER_HISTOGRAM_BINS];
1658     double* pY = new double [NUMBER_HISTOGRAM_BINS];
1659     double dMin, dMax;
1660     rIF.getMinMax (dMin, dMax);
1661     double dBinWidth = (dMax - dMin) / NUMBER_HISTOGRAM_BINS;
1662     
1663     for (int i = 0; i < NUMBER_HISTOGRAM_BINS; i++) {
1664       pX[i] = dMin + (i + 0.5) * dBinWidth;
1665       pY[i] = 0;
1666     }
1667     for (int ix = 0; ix < nx; ix++)
1668       for (int iy = 0; iy < ny; iy++) {
1669         int iBin = nearest<int> ((v[ix][iy] - dMin) / dBinWidth);
1670         if (iBin >= 0 && iBin < NUMBER_HISTOGRAM_BINS)
1671           pY[iBin] += 1;
1672       }
1673       
1674       PlotFile& rPlotFile = pPlotDoc->getPlotFile();
1675       std::ostringstream os;
1676       os << "Histogram";
1677       std::string title("title ");
1678       title += os.str();
1679       rPlotFile.addEzsetCommand (title.c_str());
1680       rPlotFile.addEzsetCommand ("xlabel Pixel Value");
1681       rPlotFile.addEzsetCommand ("ylabel Count");
1682       rPlotFile.addEzsetCommand ("box");
1683       rPlotFile.addEzsetCommand ("grid");
1684       rPlotFile.setCurveSize (2, NUMBER_HISTOGRAM_BINS);
1685       rPlotFile.addColumn (0, pX);
1686       rPlotFile.addColumn (1, pY);
1687       for (unsigned int iL = 0; iL < rIF.nLabels(); iL++) {
1688         std::string s = GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1689         s += ": ";
1690         s += rIF.labelGet(iL).getLabelString();
1691         rPlotFile.addDescription (s.c_str());
1692       }
1693       os << " Plot of " << GetDocument()->GetFirstView()->GetFrame()->GetTitle().c_str();
1694       *theApp->getLog() << os.str().c_str() << "\n";
1695       rPlotFile.addDescription (os.str().c_str());
1696       delete pX;
1697       delete pY;
1698       if (theApp->getSetModifyNewDocs())
1699         pPlotDoc->Modify(true);
1700       pPlotDoc->UpdateAllViews();
1701   }
1702 }
1703
1704
1705 // PhantomCanvas
1706
1707 PhantomCanvas::PhantomCanvas (PhantomFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style)
1708 : wxScrolledWindow(frame, -1, pos, size, style)
1709 {
1710   m_pView = v;
1711 }
1712
1713 PhantomCanvas::~PhantomCanvas ()
1714 {
1715   m_pView = NULL;
1716 }
1717
1718 void 
1719 PhantomCanvas::OnDraw (wxDC& dc)
1720 {
1721   if (m_pView)
1722     m_pView->OnDraw(& dc);
1723 }
1724
1725
1726 // PhantomFileView
1727
1728 IMPLEMENT_DYNAMIC_CLASS(PhantomFileView, wxView)
1729
1730 BEGIN_EVENT_TABLE(PhantomFileView, wxView)
1731 EVT_MENU(PHMMENU_FILE_PROPERTIES, PhantomFileView::OnProperties)
1732 EVT_MENU(PHMMENU_PROCESS_RASTERIZE, PhantomFileView::OnRasterize)
1733 EVT_MENU(PHMMENU_PROCESS_PROJECTIONS, PhantomFileView::OnProjections)
1734 END_EVENT_TABLE()
1735
1736 PhantomFileView::PhantomFileView() 
1737 : wxView(), m_pFrame(NULL), m_pCanvas(NULL), m_pFileMenu(0)
1738 {
1739 #if defined(DEBUG) || defined(_DEBUG)
1740   m_iDefaultNDet = 165;
1741   m_iDefaultNView = 180;
1742 #else
1743   m_iDefaultNDet = 367;
1744   m_iDefaultNView = 320;
1745 #endif
1746   m_iDefaultNSample = 1;
1747   m_dDefaultRotation = 1;
1748   m_dDefaultFocalLength = 2;
1749   m_dDefaultFieldOfView = 1;
1750   m_iDefaultGeometry = Scanner::GEOMETRY_PARALLEL;
1751   m_iDefaultTrace = Trace::TRACE_NONE;
1752   
1753 #ifdef DEBUG 
1754   m_iDefaultRasterNX = 115;
1755   m_iDefaultRasterNY = 115;
1756   m_iDefaultRasterNSamples = 1;
1757 #else
1758   m_iDefaultRasterNX = 256;
1759   m_iDefaultRasterNY = 256;
1760   m_iDefaultRasterNSamples = 2;
1761 #endif
1762 }
1763
1764 PhantomFileView::~PhantomFileView()
1765 {
1766   GetDocumentManager()->FileHistoryRemoveMenu (m_pFileMenu);
1767   GetDocumentManager()->ActivateView(this, FALSE, TRUE);
1768 }
1769
1770 void
1771 PhantomFileView::OnProperties (wxCommandEvent& event)
1772 {
1773   const int idPhantom = GetDocument()->getPhantomID();
1774   const wxString& namePhantom = GetDocument()->getPhantomName();
1775   std::ostringstream os;
1776   os << "Phantom " << namePhantom.c_str() << " (" << idPhantom << ")" << "\n";
1777   const Phantom& rPhantom = GetDocument()->getPhantom();
1778   rPhantom.printDefinitions (os);
1779 #if DEBUG
1780   rPhantom.print (os);
1781 #endif
1782   *theApp->getLog() << os.str().c_str() << "\n";
1783   wxMessageBox (os.str().c_str(), "Phantom Properties");
1784 }
1785
1786
1787 void
1788 PhantomFileView::OnProjections (wxCommandEvent& event)
1789 {
1790   DialogGetProjectionParameters dialogProjection (getFrameForChild(), m_iDefaultNDet, m_iDefaultNView, m_iDefaultNSample, m_dDefaultRotation, m_dDefaultFocalLength, m_dDefaultFieldOfView, m_iDefaultGeometry, m_iDefaultTrace);
1791   int retVal = dialogProjection.ShowModal();
1792   if (retVal == wxID_OK) {
1793     m_iDefaultNDet = dialogProjection.getNDet();
1794     m_iDefaultNView = dialogProjection.getNView();
1795     m_iDefaultNSample = dialogProjection.getNSamples();
1796     m_iDefaultTrace = dialogProjection.getTrace();
1797     m_dDefaultRotation = dialogProjection.getRotAngle();
1798     m_dDefaultFocalLength = dialogProjection.getFocalLengthRatio();
1799     m_dDefaultFieldOfView = dialogProjection.getFieldOfViewRatio();
1800     wxString sGeometry = dialogProjection.getGeometry();
1801     m_iDefaultGeometry = Scanner::convertGeometryNameToID (sGeometry.c_str());
1802     
1803     if (m_iDefaultNDet > 0 && m_iDefaultNView > 0 && sGeometry != "") {
1804       const Phantom& rPhantom = GetDocument()->getPhantom();
1805       ProjectionFileDocument* pProjectionDoc = theApp->newProjectionDoc();
1806       if (! pProjectionDoc) {
1807         sys_error (ERR_SEVERE, "Unable to create projection document");
1808         return;
1809       }
1810       Projections& rProj = pProjectionDoc->getProjections();
1811       Scanner theScanner (rPhantom, sGeometry.c_str(), m_iDefaultNDet, m_iDefaultNView, m_iDefaultNSample, m_dDefaultRotation, m_dDefaultFocalLength, m_dDefaultFieldOfView);
1812       if (theScanner.fail()) {
1813         *theApp->getLog() << "Failed making scanner: " << theScanner.failMessage().c_str() << "\n";
1814         return;
1815       }
1816       rProj.initFromScanner (theScanner);
1817       m_dDefaultRotation /= PI;  // convert back to PI units
1818       
1819       Timer timer;
1820       if (m_iDefaultTrace > Trace::TRACE_CONSOLE) {
1821         ProjectionsDialog dialogProjections (theScanner, rProj, rPhantom, m_iDefaultTrace, dynamic_cast<wxWindow*>(getFrameForChild()));
1822         for (int iView = 0; iView < rProj.nView(); iView++) {
1823           ::wxYield();
1824           if (dialogProjections.isCancelled() || ! dialogProjections.projectView (iView)) {
1825             pProjectionDoc->getView()->getFrame()->Close(true);
1826             return;
1827           }
1828           ::wxYield();
1829           while (dialogProjections.isPaused()) {
1830             ::wxYield();
1831             ::wxUsleep(50);
1832           }
1833         }
1834       } else {
1835         wxProgressDialog dlgProgress (wxString("Projection"), wxString("Projection Progress"), rProj.nView() + 1, getFrameForChild(), wxPD_CAN_ABORT);
1836         for (int i = 0; i < rProj.nView(); i++) {
1837           theScanner.collectProjections (rProj, rPhantom, i, 1, true, m_iDefaultTrace);
1838           if (! dlgProgress.Update (i+1)) {
1839             pProjectionDoc->getView()->getFrame()->Close(true);
1840             return;
1841           }
1842         }
1843       }
1844       
1845       std::ostringstream os;
1846       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();
1847       rProj.setCalcTime (timer.timerEnd());
1848       rProj.setRemark (os.str());
1849       *theApp->getLog() << os.str().c_str() << "\n";
1850       
1851       m_pFrame->Lower();
1852       ::wxYield();
1853       ProjectionFileView* projView = pProjectionDoc->getView();
1854       if (projView) {
1855         projView->OnUpdate (projView, NULL);
1856                 if (projView->getCanvas())
1857               projView->getCanvas()->SetClientSize (m_iDefaultNDet, m_iDefaultNView);
1858         if (wxFrame* pFrame = projView->getFrame()) {
1859           pFrame->Show(true);
1860           pFrame->SetFocus();
1861           pFrame->Raise();
1862         }
1863         GetDocumentManager()->ActivateView (projView, true, false);
1864       }
1865       ::wxYield();
1866       if (theApp->getSetModifyNewDocs())
1867         pProjectionDoc->Modify(true);
1868       pProjectionDoc->UpdateAllViews(this);
1869     }
1870   }
1871 }
1872
1873
1874 void
1875 PhantomFileView::OnRasterize (wxCommandEvent& event)
1876 {
1877   DialogGetRasterParameters dialogRaster (getFrameForChild(), m_iDefaultRasterNX, m_iDefaultRasterNY, m_iDefaultRasterNSamples);
1878   int retVal = dialogRaster.ShowModal();
1879   if (retVal == wxID_OK) {
1880     m_iDefaultRasterNX = dialogRaster.getXSize();
1881     m_iDefaultRasterNY  = dialogRaster.getYSize();
1882     m_iDefaultRasterNSamples = dialogRaster.getNSamples();
1883     if (m_iDefaultRasterNSamples < 1)
1884       m_iDefaultRasterNSamples = 1;
1885     if (m_iDefaultRasterNX > 0 && m_iDefaultRasterNY > 0) {
1886       const Phantom& rPhantom = GetDocument()->getPhantom();
1887       ImageFileDocument* pRasterDoc = theApp->newImageDoc();
1888       if (! pRasterDoc) {
1889         sys_error (ERR_SEVERE, "Unable to create image file");
1890         return;
1891       }
1892       ImageFile& imageFile = pRasterDoc->getImageFile();
1893       
1894       imageFile.setArraySize (m_iDefaultRasterNX, m_iDefaultRasterNX);
1895       wxProgressDialog dlgProgress (wxString("Rasterize"), wxString("Rasterization Progress"), imageFile.nx() + 1, getFrameForChild(), wxPD_CAN_ABORT);
1896       Timer timer;
1897       for (unsigned int i = 0; i < imageFile.nx(); i++) {
1898         rPhantom.convertToImagefile (imageFile, m_iDefaultRasterNSamples, Trace::TRACE_NONE, i, 1, true);
1899         if (! dlgProgress.Update(i+1)) {
1900           pRasterDoc->Close();
1901           pRasterDoc->getView()->getFrame()->Close(true);
1902           return;
1903         }
1904       }
1905       if (theApp->getSetModifyNewDocs())
1906         pRasterDoc->Modify(true);
1907       pRasterDoc->UpdateAllViews(this);
1908       pRasterDoc->getView()->getFrame()->Show(true);
1909       std::ostringstream os;
1910       os << "Rasterize Phantom " << rPhantom.name() << ": XSize=" << m_iDefaultRasterNX << ", YSize=" 
1911         << m_iDefaultRasterNY << ", nSamples=" << m_iDefaultRasterNSamples;
1912       *theApp->getLog() << os.str().c_str() << "\n";
1913       imageFile.labelAdd (os.str().c_str(), timer.timerEnd());
1914       ImageFileView* rasterView = pRasterDoc->getView();
1915       if (rasterView) {
1916         rasterView->getFrame()->SetFocus();
1917         rasterView->OnUpdate (rasterView, NULL);
1918       }
1919       
1920     }
1921   }
1922 }
1923
1924
1925 PhantomCanvas* 
1926 PhantomFileView::CreateCanvas (wxFrame *parent)
1927 {
1928   PhantomCanvas* pCanvas;
1929   int width, height;
1930   parent->GetClientSize(&width, &height);
1931   
1932   pCanvas = new PhantomCanvas (this, parent, wxPoint(0, 0), wxSize(width, height), 0);
1933   
1934   pCanvas->SetBackgroundColour(*wxWHITE);
1935   pCanvas->Clear();
1936   
1937   return pCanvas;
1938 }
1939
1940 #if CTSIM_MDI
1941 wxDocMDIChildFrame*
1942 #else
1943 wxDocChildFrame*
1944 #endif
1945 PhantomFileView::CreateChildFrame(wxDocument *doc, wxView *view)
1946 {
1947 #if CTSIM_MDI
1948   wxDocMDIChildFrame *subframe = new wxDocMDIChildFrame (doc, view, theApp->getMainFrame(), -1, "Phantom Frame", wxPoint(10, 10), wxSize(256, 256), wxDEFAULT_FRAME_STYLE);
1949 #else
1950   wxDocChildFrame *subframe = new wxDocChildFrame (doc, view, theApp->getMainFrame(), -1, "Phantom Frame", wxPoint(10, 10), wxSize(256, 256), wxDEFAULT_FRAME_STYLE);
1951 #endif
1952   theApp->setIconForFrame (subframe);
1953   
1954   wxMenu *m_pFileMenu = new wxMenu;
1955   
1956   m_pFileMenu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
1957   m_pFileMenu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
1958   m_pFileMenu->Append(wxID_OPEN, "&Open...\tCtrl-O");
1959   m_pFileMenu->Append(wxID_SAVEAS, "Save &As...");
1960   m_pFileMenu->Append(wxID_CLOSE, "&Close");
1961   
1962   m_pFileMenu->AppendSeparator();
1963   m_pFileMenu->Append(PHMMENU_FILE_PROPERTIES, "P&roperties");
1964   
1965   m_pFileMenu->AppendSeparator();
1966   m_pFileMenu->Append(wxID_PRINT, "&Print...");
1967   m_pFileMenu->Append(wxID_PRINT_SETUP, "Print &Setup...");
1968   m_pFileMenu->Append(wxID_PREVIEW, "Print Pre&view");
1969 #ifdef CTSIM_MDI
1970   m_pFileMenu->AppendSeparator();
1971   m_pFileMenu->Append(MAINMENU_FILE_EXIT, "E&xit");
1972 #endif
1973   GetDocumentManager()->FileHistoryAddFilesToMenu(m_pFileMenu);
1974   GetDocumentManager()->FileHistoryUseMenu(m_pFileMenu);
1975   
1976   wxMenu *process_menu = new wxMenu;
1977   process_menu->Append(PHMMENU_PROCESS_RASTERIZE, "&Rasterize...\tCtrl-R");
1978   process_menu->Append(PHMMENU_PROCESS_PROJECTIONS, "&Projections...\tCtrl-J");
1979   
1980   wxMenu *help_menu = new wxMenu;
1981   help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents\tF1");
1982   help_menu->Append(MAINMENU_HELP_TOPICS, "&Topics\tCtrl-H");
1983   help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
1984   
1985   wxMenuBar *menu_bar = new wxMenuBar;
1986   
1987   menu_bar->Append(m_pFileMenu, "&File");
1988   menu_bar->Append(process_menu, "&Process");
1989   menu_bar->Append(help_menu, "&Help");
1990   
1991   subframe->SetMenuBar(menu_bar);
1992   subframe->Centre(wxBOTH);
1993   
1994   wxAcceleratorEntry accelEntries[8];
1995   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('O'), wxID_OPEN);
1996   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('S'), wxID_SAVE);
1997   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('H'), MAINMENU_HELP_TOPICS);
1998   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('P'), MAINMENU_FILE_CREATE_PHANTOM);
1999   accelEntries[4].Set (wxACCEL_CTRL, static_cast<int>('F'), MAINMENU_FILE_CREATE_FILTER);
2000   accelEntries[5].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS);
2001   accelEntries[6].Set (wxACCEL_CTRL, static_cast<int>('J'), PHMMENU_PROCESS_PROJECTIONS);
2002   accelEntries[7].Set (wxACCEL_CTRL, static_cast<int>('R'), PHMMENU_PROCESS_RASTERIZE);
2003   wxAcceleratorTable accelTable (8, accelEntries);
2004   subframe->SetAcceleratorTable (accelTable);
2005   
2006   return subframe;
2007 }
2008
2009
2010 bool 
2011 PhantomFileView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
2012 {
2013   m_pFrame = CreateChildFrame(doc, this);
2014   SetFrame(m_pFrame);
2015   
2016   int width, height;
2017   m_pFrame->GetClientSize(&width, &height);
2018   m_pFrame->SetTitle("PhantomFileView");
2019   m_pCanvas = CreateCanvas (m_pFrame);
2020   
2021 #ifdef __X__
2022   int x, y;  // X requires a forced resize
2023   m_pFrame->GetSize(&x, &y);
2024   m_pFrame->SetSize(-1, -1, x, y);
2025 #endif
2026   
2027   m_pFrame->Show(true);
2028   Activate(true);
2029   
2030   return true;
2031 }
2032
2033 void 
2034 PhantomFileView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
2035 {
2036   if (m_pCanvas)
2037     m_pCanvas->Refresh();
2038 }
2039
2040 bool 
2041 PhantomFileView::OnClose (bool deleteWindow)
2042 {
2043   if (! GetDocument() || ! GetDocument()->Close())
2044     return false;
2045   
2046   if (m_pCanvas) {
2047         m_pCanvas->Show(false);
2048     m_pCanvas->setView(NULL);
2049     m_pCanvas = NULL;
2050   }
2051   wxString s(wxTheApp->GetAppName());
2052   if (m_pFrame)
2053     m_pFrame->SetTitle(s);
2054   
2055   SetFrame(NULL);
2056   Activate(false);
2057   
2058   if (deleteWindow) {
2059    m_pFrame->Show(false);
2060         ::wxYield();
2061      m_pFrame->Destroy();
2062     m_pFrame = NULL;
2063   }
2064   
2065   return true;
2066 }
2067
2068 void
2069 PhantomFileView::OnDraw (wxDC* dc)
2070 {
2071   int xsize, ysize;
2072   m_pCanvas->GetClientSize (&xsize, &ysize);
2073   SGPDriver driver (dc, xsize, ysize);
2074   SGP sgp (driver);
2075   const Phantom& rPhantom = GetDocument()->getPhantom();
2076   sgp.setColor (C_RED);
2077   rPhantom.show (sgp);
2078 }
2079
2080 // ProjectionCanvas
2081
2082 ProjectionFileCanvas::ProjectionFileCanvas (ProjectionFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style)
2083 : wxScrolledWindow(frame, -1, pos, size, style)
2084 {
2085   m_pView = v;
2086 }
2087
2088 ProjectionFileCanvas::~ProjectionFileCanvas ()
2089 {
2090   m_pView = NULL;
2091 }
2092
2093 void 
2094 ProjectionFileCanvas::OnDraw(wxDC& dc)
2095 {
2096   if (m_pView)
2097     m_pView->OnDraw(& dc);
2098 }
2099
2100 wxSize
2101 ProjectionFileCanvas::GetBestSize () const
2102 {
2103   wxSize best (0, 0);
2104   if (m_pView) {
2105     Projections& rProj = m_pView->GetDocument()->getProjections();
2106     best.Set (rProj.nDet(), rProj.nView());
2107   }
2108   
2109   return best;
2110 }
2111
2112
2113 // ProjectionFileView
2114
2115 IMPLEMENT_DYNAMIC_CLASS(ProjectionFileView, wxView)
2116
2117 BEGIN_EVENT_TABLE(ProjectionFileView, wxView)
2118 EVT_MENU(PJMENU_FILE_PROPERTIES, ProjectionFileView::OnProperties)
2119 EVT_MENU(PJMENU_RECONSTRUCT_FBP, ProjectionFileView::OnReconstructFBP)
2120 EVT_MENU(PJMENU_CONVERT_POLAR, ProjectionFileView::OnConvertPolar)
2121 EVT_MENU(PJMENU_CONVERT_FFT_POLAR, ProjectionFileView::OnConvertFFTPolar)
2122 END_EVENT_TABLE()
2123
2124 ProjectionFileView::ProjectionFileView() 
2125 : wxView(), m_pCanvas(NULL), m_pFrame(NULL), m_pFileMenu(0)
2126 {
2127 #ifdef DEBUG
2128   m_iDefaultNX = 115;
2129   m_iDefaultNY = 115;
2130 #else
2131   m_iDefaultNX = 256;
2132   m_iDefaultNY = 256;
2133 #endif
2134
2135   m_iDefaultFilter = SignalFilter::FILTER_ABS_BANDLIMIT;
2136   m_dDefaultFilterParam = 1.;
2137 #if HAVE_FFTW
2138   m_iDefaultFilterMethod = ProcessSignal::FILTER_METHOD_RFFTW;
2139   m_iDefaultFilterGeneration = ProcessSignal::FILTER_GENERATION_INVERSE_FOURIER;
2140 #else
2141   m_iDefaultFilterMethod = ProcessSignal::FILTER_METHOD_CONVOLUTION;
2142   m_iDefaultFilterGeneration = ProcessSignal::FILTER_GENERATION_DIRECT;
2143 #endif
2144   m_iDefaultZeropad = 1;
2145   m_iDefaultBackprojector = Backprojector::BPROJ_IDIFF3;
2146   m_iDefaultInterpolation = Backprojector::INTERP_LINEAR;
2147   m_iDefaultInterpParam = 1;
2148   m_iDefaultTrace = Trace::TRACE_NONE;
2149   
2150   m_iDefaultPolarNX = 256;
2151   m_iDefaultPolarNY = 256;
2152   m_iDefaultPolarInterpolation = Projections::POLAR_INTERP_BILINEAR;
2153   m_iDefaultPolarZeropad = 1;
2154 }
2155
2156 ProjectionFileView::~ProjectionFileView()
2157 {
2158   GetDocumentManager()->FileHistoryRemoveMenu (m_pFileMenu);
2159   GetDocumentManager()->ActivateView(this, FALSE, TRUE);;
2160 }
2161
2162 void
2163 ProjectionFileView::OnProperties (wxCommandEvent& event)
2164 {
2165   const Projections& rProj = GetDocument()->getProjections();
2166   std::ostringstream os;
2167   rProj.printScanInfo(os);
2168   *theApp->getLog() << os.str().c_str();
2169   wxMessageDialog dialogMsg (getFrameForChild(), os.str().c_str(), "Projection File Properties", wxOK | wxICON_INFORMATION);
2170   dialogMsg.ShowModal();
2171 }
2172
2173
2174 void
2175 ProjectionFileView::OnConvertPolar (wxCommandEvent& event)
2176 {
2177   Projections& rProj = GetDocument()->getProjections();
2178   DialogGetConvertPolarParameters dialogPolar (getFrameForChild(), "Convert Polar", m_iDefaultPolarNX, m_iDefaultPolarNY,
2179     m_iDefaultPolarInterpolation, -1);
2180   if (dialogPolar.ShowModal() == wxID_OK) {
2181     wxString strInterpolation (dialogPolar.getInterpolationName());
2182     m_iDefaultPolarNX = dialogPolar.getXSize();
2183     m_iDefaultPolarNY = dialogPolar.getYSize();
2184     ImageFileDocument* pPolarDoc = theApp->newImageDoc();
2185     ImageFile& rIF = pPolarDoc->getImageFile();
2186     if (! pPolarDoc) {
2187       sys_error (ERR_SEVERE, "Unable to create image file");
2188       return;
2189     }
2190     rIF.setArraySize (m_iDefaultPolarNX, m_iDefaultPolarNY);
2191     m_iDefaultPolarInterpolation = Projections::convertInterpNameToID (strInterpolation.c_str());
2192     rProj.convertPolar (rIF, m_iDefaultPolarInterpolation);
2193     rIF.labelAdd (rProj.getLabel().getLabelString().c_str(), rProj.calcTime());
2194     std::ostringstream os;
2195     os << "Convert projection file " << GetFrame()->GetTitle().c_str() << " to polar image: xSize=" 
2196       << m_iDefaultPolarNX << ", ySize=" << m_iDefaultPolarNY << ", interpolation=" 
2197       << strInterpolation.c_str();
2198     *theApp->getLog() << os.str().c_str() << "\n";
2199     rIF.labelAdd (os.str().c_str());
2200     if (theApp->getSetModifyNewDocs())
2201       pPolarDoc->Modify(true);
2202     pPolarDoc->UpdateAllViews();
2203     pPolarDoc->getView()->OnUpdate (this, NULL);
2204     pPolarDoc->getView()->getFrame()->Show(true);
2205   }
2206 }
2207
2208 void
2209 ProjectionFileView::OnConvertFFTPolar (wxCommandEvent& event)
2210 {
2211   Projections& rProj = GetDocument()->getProjections();
2212   DialogGetConvertPolarParameters dialogPolar (getFrameForChild(), "Convert to FFT Polar", m_iDefaultPolarNX, m_iDefaultPolarNY,
2213     m_iDefaultPolarInterpolation, m_iDefaultPolarZeropad);
2214   if (dialogPolar.ShowModal() == wxID_OK) {
2215     wxString strInterpolation (dialogPolar.getInterpolationName());
2216     m_iDefaultPolarNX = dialogPolar.getXSize();
2217     m_iDefaultPolarNY = dialogPolar.getYSize();
2218     m_iDefaultPolarZeropad = dialogPolar.getZeropad();
2219     ImageFileDocument* pPolarDoc = theApp->newImageDoc();
2220     ImageFile& rIF = pPolarDoc->getImageFile();
2221     if (! pPolarDoc) {
2222       sys_error (ERR_SEVERE, "Unable to create image file");
2223       return;
2224     }
2225     rIF.setArraySize (m_iDefaultPolarNX, m_iDefaultPolarNY);
2226     m_iDefaultPolarInterpolation = Projections::convertInterpNameToID (strInterpolation.c_str());
2227     rProj.convertFFTPolar (rIF, m_iDefaultPolarInterpolation, m_iDefaultPolarZeropad);
2228     rIF.labelAdd (rProj.getLabel().getLabelString().c_str(), rProj.calcTime());
2229     std::ostringstream os;
2230     os << "Convert projection file " << GetFrame()->GetTitle().c_str() << " to FFT polar image: xSize=" 
2231       << m_iDefaultPolarNX << ", ySize=" << m_iDefaultPolarNY << ", interpolation=" 
2232       << strInterpolation.c_str() << ", zeropad=" << m_iDefaultPolarZeropad;
2233     *theApp->getLog() << os.str().c_str() << "\n";
2234     rIF.labelAdd (os.str().c_str());
2235     if (theApp->getSetModifyNewDocs())
2236       pPolarDoc->Modify(true);
2237     pPolarDoc->UpdateAllViews();
2238     pPolarDoc->getView()->OnUpdate (this, NULL);
2239     pPolarDoc->getView()->getFrame()->Show(true);
2240   }
2241 }
2242
2243 void
2244 ProjectionFileView::OnReconstructFourier (wxCommandEvent& event)
2245 {
2246   wxMessageBox ("Fourier Reconstruction is not yet supported", "Unimplemented function");
2247 }
2248
2249 void
2250 ProjectionFileView::OnReconstructFBP (wxCommandEvent& event)
2251 {
2252   DialogGetReconstructionParameters dialogReconstruction (getFrameForChild(), m_iDefaultNX, m_iDefaultNY, m_iDefaultFilter, m_dDefaultFilterParam, m_iDefaultFilterMethod, m_iDefaultFilterGeneration, m_iDefaultZeropad, m_iDefaultInterpolation, m_iDefaultInterpParam, m_iDefaultBackprojector, m_iDefaultTrace);
2253   
2254   int retVal = dialogReconstruction.ShowModal();
2255   if (retVal == wxID_OK) {
2256     m_iDefaultNX = dialogReconstruction.getXSize();
2257     m_iDefaultNY = dialogReconstruction.getYSize();
2258     wxString optFilterName = dialogReconstruction.getFilterName();
2259     m_iDefaultFilter = SignalFilter::convertFilterNameToID (optFilterName.c_str());
2260     m_dDefaultFilterParam = dialogReconstruction.getFilterParam();
2261     wxString optFilterMethodName = dialogReconstruction.getFilterMethodName();
2262     m_iDefaultFilterMethod = ProcessSignal::convertFilterMethodNameToID(optFilterMethodName.c_str());
2263     m_iDefaultZeropad = dialogReconstruction.getZeropad();
2264     wxString optFilterGenerationName = dialogReconstruction.getFilterGenerationName();
2265     m_iDefaultFilterGeneration = ProcessSignal::convertFilterGenerationNameToID (optFilterGenerationName.c_str());
2266     wxString optInterpName = dialogReconstruction.getInterpName();
2267     m_iDefaultInterpolation = Backprojector::convertInterpNameToID (optInterpName.c_str());
2268     m_iDefaultInterpParam = dialogReconstruction.getInterpParam();
2269     wxString optBackprojectName = dialogReconstruction.getBackprojectName();
2270     m_iDefaultBackprojector = Backprojector::convertBackprojectNameToID (optBackprojectName.c_str());
2271     m_iDefaultTrace = dialogReconstruction.getTrace();
2272     if (m_iDefaultNX > 0 && m_iDefaultNY > 0) {
2273       ImageFileDocument* pReconDoc = theApp->newImageDoc();
2274       if (! pReconDoc) {
2275         sys_error (ERR_SEVERE, "Unable to create image file");
2276         return;
2277       }
2278       ImageFile& imageFile = pReconDoc->getImageFile();
2279       const Projections& rProj = GetDocument()->getProjections();
2280       imageFile.setArraySize (m_iDefaultNX, m_iDefaultNY);
2281       
2282       Reconstructor* pReconstruct = new Reconstructor (rProj, imageFile, optFilterName.c_str(), m_dDefaultFilterParam, optFilterMethodName.c_str(), m_iDefaultZeropad, optFilterGenerationName.c_str(), optInterpName.c_str(), m_iDefaultInterpParam, optBackprojectName.c_str(), m_iDefaultTrace);
2283       
2284       Timer timerRecon;
2285       if (m_iDefaultTrace > Trace::TRACE_CONSOLE) {
2286         ReconstructDialog* pDlgReconstruct = new ReconstructDialog (*pReconstruct, rProj, imageFile, m_iDefaultTrace, getFrameForChild());
2287         for (int iView = 0; iView < rProj.nView(); iView++) {
2288           ::wxYield();
2289           ::wxYield();
2290           if (pDlgReconstruct->isCancelled() || ! pDlgReconstruct->reconstructView (iView)) {
2291             delete pDlgReconstruct;
2292             delete pReconstruct;
2293             pReconDoc->getView()->getFrame()->Close(true);
2294             return;
2295           }
2296           ::wxYield();
2297           ::wxYield();
2298           while (pDlgReconstruct->isPaused()) {
2299             ::wxYield();
2300             ::wxUsleep(50);
2301           }
2302         }
2303         delete pDlgReconstruct;
2304       } else {
2305         wxProgressDialog dlgProgress (wxString("Reconstruction"), wxString("Reconstruction Progress"), rProj.nView() + 1, getFrameForChild(), wxPD_CAN_ABORT);
2306         for (int i = 0; i < rProj.nView(); i++) {
2307           pReconstruct->reconstructView (i, 1);
2308           if (! dlgProgress.Update(i + 1)) {
2309             delete pReconstruct;
2310             pReconDoc->getView()->getFrame()->Close(true);
2311             return;
2312           }
2313         }
2314       }
2315       delete pReconstruct;
2316       if (theApp->getSetModifyNewDocs())
2317         pReconDoc->Modify(true);
2318       pReconDoc->UpdateAllViews(this);
2319       if (ImageFileView* rasterView = pReconDoc->getView()) {
2320         rasterView->OnUpdate (rasterView, NULL);
2321         rasterView->getFrame()->SetFocus();
2322         rasterView->getFrame()->Show(true);
2323       }
2324       std::ostringstream os;
2325       os << "Reconstruct " << rProj.getFilename() << ": xSize=" << m_iDefaultNX << ", ySize=" << m_iDefaultNY << ", Filter=" << optFilterName.c_str() << ", FilterParam=" << m_dDefaultFilterParam << ", FilterMethod=" << optFilterMethodName.c_str() << ", FilterGeneration=" << optFilterGenerationName.c_str() << ", Zeropad=" << m_iDefaultZeropad << ", Interpolation=" << optInterpName.c_str() << ", InterpolationParam=" << m_iDefaultInterpParam << ", Backprojection=" << optBackprojectName.c_str();
2326       *theApp->getLog() << os.str().c_str() << "\n";
2327       imageFile.labelAdd (rProj.getLabel());
2328       imageFile.labelAdd (os.str().c_str(), timerRecon.timerEnd());
2329     }
2330   }
2331 }
2332
2333
2334 ProjectionFileCanvas* 
2335 ProjectionFileView::CreateCanvas (wxFrame *parent)
2336 {
2337   ProjectionFileCanvas* pCanvas;
2338   int width, height;
2339   parent->GetClientSize(&width, &height);
2340   
2341   pCanvas = new ProjectionFileCanvas (this, parent, wxPoint(0, 0), wxSize(width, height), 0);
2342   
2343   pCanvas->SetScrollbars(20, 20, 50, 50);
2344   pCanvas->SetBackgroundColour(*wxWHITE);
2345   pCanvas->Clear();
2346   
2347   return pCanvas;
2348 }
2349
2350 #if CTSIM_MDI
2351 wxDocMDIChildFrame*
2352 #else
2353 wxDocChildFrame*
2354 #endif
2355 ProjectionFileView::CreateChildFrame(wxDocument *doc, wxView *view)
2356 {
2357 #ifdef CTSIM_MDI
2358   wxDocMDIChildFrame *subframe = new wxDocMDIChildFrame (doc, view, theApp->getMainFrame(), -1, "Projection Frame", wxPoint(10, 10), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
2359 #else
2360   wxDocChildFrame *subframe = new wxDocChildFrame (doc, view, theApp->getMainFrame(), -1, "Projection Frame", wxPoint(10, 10), wxSize(0, 0), wxDEFAULT_FRAME_STYLE);
2361 #endif
2362   theApp->setIconForFrame (subframe);
2363   
2364   wxMenu *m_pFileMenu = new wxMenu;
2365   
2366   m_pFileMenu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
2367   m_pFileMenu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
2368   m_pFileMenu->Append(wxID_OPEN, "&Open...\tCtrl-O");
2369   m_pFileMenu->Append(wxID_SAVE, "&Save\tCtrl-S");
2370   m_pFileMenu->Append(wxID_SAVEAS, "Save &As...");
2371   m_pFileMenu->Append(wxID_CLOSE, "&Close\tCtrl-W");
2372   
2373   m_pFileMenu->AppendSeparator();
2374   m_pFileMenu->Append(PJMENU_FILE_PROPERTIES, "P&roperties");
2375   
2376   m_pFileMenu->AppendSeparator();
2377   m_pFileMenu->Append(wxID_PRINT, "&Print...");
2378   m_pFileMenu->Append(wxID_PRINT_SETUP, "Print &Setup...");
2379   m_pFileMenu->Append(wxID_PREVIEW, "Print Pre&view");
2380 #ifdef CTSIM_MDI
2381   m_pFileMenu->AppendSeparator();
2382   m_pFileMenu->Append(MAINMENU_FILE_EXIT, "E&xit");
2383 #endif
2384   GetDocumentManager()->FileHistoryAddFilesToMenu(m_pFileMenu);
2385   GetDocumentManager()->FileHistoryUseMenu(m_pFileMenu);
2386   
2387   wxMenu *convert_menu = new wxMenu;
2388   convert_menu->Append (PJMENU_CONVERT_POLAR, "&Polar Image...\tCtrl-L");
2389   convert_menu->Append (PJMENU_CONVERT_FFT_POLAR, "&FFT->Polar Image...\tCtrl-I");
2390   
2391   wxMenu *reconstruct_menu = new wxMenu;
2392   reconstruct_menu->Append (PJMENU_RECONSTRUCT_FBP, "&Filtered Backprojection...\tCtrl-R");
2393   reconstruct_menu->Append (PJMENU_RECONSTRUCT_FOURIER, "&Fourier...\tCtrl-E");
2394   
2395   wxMenu *help_menu = new wxMenu;
2396   help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents\tF1");
2397   help_menu->Append(MAINMENU_HELP_TOPICS, "&Topics\tCtrl-H");
2398   help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
2399   
2400   wxMenuBar *menu_bar = new wxMenuBar;
2401   
2402   menu_bar->Append (m_pFileMenu, "&File");
2403   menu_bar->Append (convert_menu, "&Convert");
2404   menu_bar->Append (reconstruct_menu, "&Reconstruct");
2405   menu_bar->Append (help_menu, "&Help");
2406   
2407   subframe->SetMenuBar(menu_bar);  
2408   subframe->Centre(wxBOTH);
2409   
2410   wxAcceleratorEntry accelEntries[11];
2411   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('O'), wxID_OPEN);
2412   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('S'), wxID_SAVE);
2413   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('W'), wxID_CLOSE);
2414   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('H'), MAINMENU_HELP_TOPICS);
2415   accelEntries[4].Set (wxACCEL_CTRL, static_cast<int>('P'), MAINMENU_FILE_CREATE_PHANTOM);
2416   accelEntries[5].Set (wxACCEL_CTRL, static_cast<int>('F'), MAINMENU_FILE_CREATE_FILTER);
2417   accelEntries[6].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS);
2418   accelEntries[7].Set (wxACCEL_CTRL, static_cast<int>('L'), PJMENU_CONVERT_POLAR);
2419   accelEntries[8].Set (wxACCEL_CTRL, static_cast<int>('I'), PJMENU_CONVERT_FFT_POLAR);
2420   accelEntries[9].Set (wxACCEL_CTRL, static_cast<int>('R'), PJMENU_RECONSTRUCT_FBP);
2421   accelEntries[10].Set (wxACCEL_CTRL, static_cast<int>('E'), PJMENU_RECONSTRUCT_FOURIER);
2422   wxAcceleratorTable accelTable (11, accelEntries);
2423   subframe->SetAcceleratorTable (accelTable);
2424   
2425   return subframe;
2426 }
2427
2428
2429 bool 
2430 ProjectionFileView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
2431 {
2432   m_pFrame = CreateChildFrame(doc, this);
2433   SetFrame(m_pFrame);
2434   
2435   int width, height;
2436   m_pFrame->GetClientSize (&width, &height);
2437   m_pFrame->SetTitle ("ProjectionFileView");
2438   m_pCanvas = CreateCanvas (m_pFrame);
2439   
2440 #ifdef __X__
2441   int x, y;  // X requires a forced resize
2442   m_pFrame->GetSize(&x, &y);
2443   m_pFrame->SetSize(-1, -1, x, y);
2444 #endif
2445   
2446   m_pFrame->Show(true);
2447   Activate(true);
2448   
2449   return true;
2450 }
2451
2452 void 
2453 ProjectionFileView::OnDraw (wxDC* dc)
2454 {
2455   wxSize clientSize = m_pFrame->GetClientSize();
2456   wxSize bestSize = m_pCanvas->GetBestSize();
2457   
2458   if (clientSize.x > bestSize.x || clientSize.y > bestSize.y)
2459     m_pFrame->SetClientSize (bestSize);
2460   
2461   if (m_bitmap.Ok())
2462     dc->DrawBitmap (m_bitmap, 0, 0, false);
2463 }
2464
2465
2466 void 
2467 ProjectionFileView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
2468 {
2469   const Projections& rProj = GetDocument()->getProjections();
2470   const int nDet = rProj.nDet();
2471   const int nView = rProj.nView();
2472   if (nDet != 0 && nView != 0) {
2473     const DetectorArray& detarray = rProj.getDetectorArray(0);
2474     const DetectorValue* detval = detarray.detValues();
2475     double min = detval[0];
2476     double max = detval[0];
2477     for (int iy = 0; iy < nView; iy++) {
2478       const DetectorArray& detarray = rProj.getDetectorArray(iy);
2479       const DetectorValue* detval = detarray.detValues();
2480       for (int ix = 0; ix < nDet; ix++) {
2481         if (min > detval[ix])
2482           min = detval[ix];
2483         else if (max < detval[ix])
2484           max = detval[ix];
2485       }
2486     }
2487     
2488     unsigned char* imageData = new unsigned char [nDet * nView * 3];
2489     double scale = (max - min) / 255;
2490     for (int iy2 = 0; iy2 < nView; iy2++) {
2491       const DetectorArray& detarray = rProj.getDetectorArray (iy2);
2492       const DetectorValue* detval = detarray.detValues();
2493       for (int ix = 0; ix < nDet; ix++) {
2494         int intensity = static_cast<int>(((detval[ix] - min) / scale) + 0.5);
2495         intensity = clamp(intensity, 0, 255);
2496         int baseAddr = (iy2 * nDet + ix) * 3;
2497         imageData[baseAddr] = imageData[baseAddr+1] = imageData[baseAddr+2] = intensity;
2498       }
2499     }
2500     wxImage image (nDet, nView, imageData, true);
2501     m_bitmap = image.ConvertToBitmap();
2502     delete imageData;
2503     int xSize = nDet;
2504     int ySize = nView;
2505     xSize = clamp (xSize, 0, 800);
2506     ySize = clamp (ySize, 0, 800);
2507     m_pFrame->SetClientSize (xSize, ySize);
2508     m_pCanvas->SetScrollbars (20, 20, nDet/20, nView/20);
2509   }
2510   
2511   if (m_pCanvas)
2512     m_pCanvas->Refresh();
2513 }
2514
2515 bool 
2516 ProjectionFileView::OnClose (bool deleteWindow)
2517 {
2518   if (! GetDocument() || ! GetDocument()->Close())
2519     return false;
2520   
2521   if (m_pCanvas) {
2522         m_pCanvas->Show(false);
2523     m_pCanvas->setView(NULL);
2524     m_pCanvas = NULL;
2525   }
2526   wxString s(wxTheApp->GetAppName());
2527   if (m_pFrame)
2528     m_pFrame->SetTitle(s);
2529   
2530   SetFrame(NULL);
2531   Activate(false);
2532   
2533   if (deleteWindow) {
2534     m_pFrame->Show(false);
2535         ::wxYield();
2536     m_pFrame->Destroy();
2537     m_pFrame = NULL;
2538   }
2539   return true;
2540 }
2541
2542
2543
2544 // PlotFileCanvas
2545 PlotFileCanvas::PlotFileCanvas (PlotFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style)
2546 : wxScrolledWindow(frame, -1, pos, size, style)
2547 {
2548   m_pView = v;
2549 }
2550
2551 PlotFileCanvas::~PlotFileCanvas ()
2552 {
2553   m_pView = NULL;
2554 }
2555
2556 void 
2557 PlotFileCanvas::OnDraw(wxDC& dc)
2558 {
2559   if (m_pView)
2560     m_pView->OnDraw(& dc);
2561 }
2562
2563
2564 // PlotFileView
2565
2566 IMPLEMENT_DYNAMIC_CLASS(PlotFileView, wxView)
2567
2568 BEGIN_EVENT_TABLE(PlotFileView, wxView)
2569 EVT_MENU(PJMENU_FILE_PROPERTIES, PlotFileView::OnProperties)
2570 EVT_MENU(PLOTMENU_VIEW_SCALE_MINMAX, PlotFileView::OnScaleMinMax)
2571 EVT_MENU(PLOTMENU_VIEW_SCALE_AUTO, PlotFileView::OnScaleAuto)
2572 EVT_MENU(PLOTMENU_VIEW_SCALE_FULL, PlotFileView::OnScaleFull)
2573 END_EVENT_TABLE()
2574
2575 PlotFileView::PlotFileView() 
2576 : wxView(), m_pFrame(NULL), m_pCanvas(NULL), m_pEZPlot(NULL), m_pFileMenu(0), m_bMinSpecified(false), m_bMaxSpecified(false)
2577 {
2578 }
2579
2580 PlotFileView::~PlotFileView()
2581 {
2582   if (m_pEZPlot)
2583     delete m_pEZPlot;
2584   
2585   GetDocumentManager()->FileHistoryRemoveMenu (m_pFileMenu);  
2586 }
2587
2588 void
2589 PlotFileView::OnProperties (wxCommandEvent& event)
2590 {
2591   const PlotFile& rPlot = GetDocument()->getPlotFile();
2592   std::ostringstream os;
2593   os << "Columns: " << rPlot.getNumColumns() << ", Records: " << rPlot.getNumRecords() << "\n";
2594   rPlot.printHeadersBrief (os);
2595   *theApp->getLog() << os.str().c_str();
2596   wxMessageDialog dialogMsg (getFrameForChild(), os.str().c_str(), "Plot File Properties", wxOK | wxICON_INFORMATION);
2597   dialogMsg.ShowModal();
2598 }
2599
2600
2601 void 
2602 PlotFileView::OnScaleAuto (wxCommandEvent& event)
2603 {
2604   const PlotFile& rPlotFile = GetDocument()->getPlotFile();
2605   double min, max, mean, mode, median, stddev;
2606   rPlotFile.statistics (1, min, max, mean, mode, median, stddev);
2607   DialogAutoScaleParameters dialogAutoScale (getFrameForChild(), mean, mode, median, stddev, m_dAutoScaleFactor);
2608   int iRetVal = dialogAutoScale.ShowModal();
2609   if (iRetVal == wxID_OK) {
2610     m_bMinSpecified = true;
2611     m_bMaxSpecified = true;
2612     double dMin, dMax;
2613     if (dialogAutoScale.getMinMax (&dMin, &dMax)) {
2614       m_dMinPixel = dMin;
2615       m_dMaxPixel = dMax;
2616       m_dAutoScaleFactor = dialogAutoScale.getAutoScaleFactor();
2617       OnUpdate (this, NULL);
2618     }
2619   }
2620 }
2621
2622 void 
2623 PlotFileView::OnScaleMinMax (wxCommandEvent& event)
2624 {
2625   const PlotFile& rPlotFile = GetDocument()->getPlotFile();
2626   double min;
2627   double max;
2628   
2629   if (! m_bMinSpecified || ! m_bMaxSpecified) {
2630     if (! rPlotFile.getMinMax (1, min, max)) {
2631       *theApp->getLog() << "Error: unable to find Min/Max\n";
2632       return;
2633     }
2634   }
2635   
2636   if (m_bMinSpecified)
2637     min = m_dMinPixel;
2638   if (m_bMaxSpecified)
2639     max = m_dMaxPixel;
2640   
2641   DialogGetMinMax dialogMinMax (getFrameForChild(), "Set Y-axis Minimum & Maximum", min, max);
2642   int retVal = dialogMinMax.ShowModal();
2643   if (retVal == wxID_OK) {
2644     m_bMinSpecified = true;
2645     m_bMaxSpecified = true;
2646     m_dMinPixel = dialogMinMax.getMinimum();
2647     m_dMaxPixel = dialogMinMax.getMaximum();
2648     OnUpdate (this, NULL);
2649   }
2650 }
2651
2652 void 
2653 PlotFileView::OnScaleFull (wxCommandEvent& event)
2654 {
2655   if (m_bMinSpecified || m_bMaxSpecified) {
2656     m_bMinSpecified = false;
2657     m_bMaxSpecified = false;
2658     OnUpdate (this, NULL);
2659   }
2660 }
2661
2662
2663 PlotFileCanvas* 
2664 PlotFileView::CreateCanvas (wxFrame* parent)
2665 {
2666   PlotFileCanvas* pCanvas;
2667   int width, height;
2668   parent->GetClientSize(&width, &height);
2669   
2670   pCanvas = new PlotFileCanvas (this, parent, wxPoint(0, 0), wxSize(width, height), 0);
2671   
2672   pCanvas->SetBackgroundColour(*wxWHITE);
2673   pCanvas->Clear();
2674   
2675   return pCanvas;
2676 }
2677
2678 #if CTSIM_MDI
2679 wxDocMDIChildFrame*
2680 #else
2681 wxDocChildFrame*
2682 #endif
2683 PlotFileView::CreateChildFrame(wxDocument *doc, wxView *view)
2684 {
2685 #ifdef CTSIM_MDI
2686   wxDocMDIChildFrame *subframe = new wxDocMDIChildFrame (doc, view, theApp->getMainFrame(), -1, "Plot Frame", wxPoint(10, 10), wxSize(500, 300), wxDEFAULT_FRAME_STYLE);
2687 #else
2688   wxDocChildFrame *subframe = new wxDocChildFrame(doc, view, theApp->getMainFrame(), -1, "Plot Frame", wxPoint(10, 10), wxSize(500, 300), wxDEFAULT_FRAME_STYLE);
2689 #endif
2690   theApp->setIconForFrame (subframe);
2691   
2692   wxMenu *m_pFileMenu = new wxMenu;
2693   
2694   m_pFileMenu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
2695   m_pFileMenu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
2696   m_pFileMenu->Append(wxID_OPEN, "&Open...\tCtrl-O");
2697   m_pFileMenu->Append(wxID_SAVE, "&Save\tCtrl-S");
2698   m_pFileMenu->Append(wxID_SAVEAS, "Save &As...");
2699   m_pFileMenu->Append(wxID_CLOSE, "&Close\tCtrl-W");
2700   
2701   m_pFileMenu->AppendSeparator();
2702   m_pFileMenu->Append(PJMENU_FILE_PROPERTIES, "P&roperties");
2703   
2704   m_pFileMenu->AppendSeparator();
2705   m_pFileMenu->Append(wxID_PRINT, "&Print...");
2706   m_pFileMenu->Append(wxID_PRINT_SETUP, "Print &Setup...");
2707   m_pFileMenu->Append(wxID_PREVIEW, "Print Pre&view");
2708 #ifdef CTSIM_MDI
2709   m_pFileMenu->AppendSeparator();
2710   m_pFileMenu->Append(MAINMENU_FILE_EXIT, "E&xit");
2711 #endif
2712   GetDocumentManager()->FileHistoryAddFilesToMenu(m_pFileMenu);
2713   GetDocumentManager()->FileHistoryUseMenu(m_pFileMenu);
2714   
2715   wxMenu *view_menu = new wxMenu;
2716   view_menu->Append(PLOTMENU_VIEW_SCALE_MINMAX, "Display Scale &Set...\tCtrl-E");
2717   view_menu->Append(PLOTMENU_VIEW_SCALE_AUTO, "Display Scale &Auto...\tCtrl-A");
2718   view_menu->Append(PLOTMENU_VIEW_SCALE_FULL, "Display &Full Scale\tCtrl-U");
2719   
2720   wxMenu *help_menu = new wxMenu;
2721   help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents\tF1");
2722   help_menu->Append(MAINMENU_HELP_TOPICS, "&Topics\tCtrl-H");
2723   help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
2724   
2725   wxMenuBar *menu_bar = new wxMenuBar;
2726   
2727   menu_bar->Append(m_pFileMenu, "&File");
2728   menu_bar->Append(view_menu, "&View");
2729   menu_bar->Append(help_menu, "&Help");
2730   
2731   subframe->SetMenuBar(menu_bar);
2732   subframe->Centre(wxBOTH);
2733   
2734   wxAcceleratorEntry accelEntries[10];
2735   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('O'), wxID_OPEN);
2736   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('S'), wxID_SAVE);
2737   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('W'), wxID_CLOSE);
2738   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('H'), MAINMENU_HELP_TOPICS);
2739   accelEntries[4].Set (wxACCEL_CTRL, static_cast<int>('P'), MAINMENU_FILE_CREATE_PHANTOM);
2740   accelEntries[5].Set (wxACCEL_CTRL, static_cast<int>('F'), MAINMENU_FILE_CREATE_FILTER);
2741   accelEntries[6].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS);
2742   accelEntries[7].Set (wxACCEL_CTRL, static_cast<int>('E'), PLOTMENU_VIEW_SCALE_MINMAX);
2743   accelEntries[8].Set (wxACCEL_CTRL, static_cast<int>('A'), PLOTMENU_VIEW_SCALE_AUTO);
2744   accelEntries[9].Set (wxACCEL_CTRL, static_cast<int>('U'), PLOTMENU_VIEW_SCALE_FULL);
2745   wxAcceleratorTable accelTable (10, accelEntries);
2746   subframe->SetAcceleratorTable (accelTable);
2747   
2748   return subframe;
2749 }
2750
2751
2752 bool 
2753 PlotFileView::OnCreate (wxDocument *doc, long WXUNUSED(flags) )
2754 {
2755   m_pFrame = CreateChildFrame(doc, this);
2756   SetFrame(m_pFrame);
2757   
2758   m_bMinSpecified = false;
2759   m_bMaxSpecified = false;
2760   m_dAutoScaleFactor = 1.;
2761   
2762   int width, height;
2763   m_pFrame->GetClientSize(&width, &height);
2764   m_pFrame->SetTitle ("Plot File");
2765   m_pCanvas = CreateCanvas (m_pFrame);
2766   
2767 #ifdef __X__
2768   int x, y;  // X requires a forced resize
2769   m_pFrame->GetSize(&x, &y);
2770   m_pFrame->SetSize(-1, -1, x, y);
2771 #endif
2772   
2773   m_pFrame->Show(true);
2774   Activate(true);
2775   
2776   return true;
2777 }
2778
2779 void 
2780 PlotFileView::OnDraw (wxDC* dc)
2781 {
2782   const PlotFile& rPlotFile = GetDocument()->getPlotFile();
2783   const int iNColumns = rPlotFile.getNumColumns();
2784   const int iNRecords = rPlotFile.getNumRecords();
2785   
2786   if (iNColumns > 0 && iNRecords > 0) {
2787     int xsize, ysize;
2788     m_pCanvas->GetClientSize (&xsize, &ysize);
2789     SGPDriver driver (dc, xsize, ysize);
2790     SGP sgp (driver);
2791     if (m_pEZPlot)
2792       m_pEZPlot->plot (&sgp);
2793   }
2794 }
2795
2796
2797 void 
2798 PlotFileView::OnUpdate (wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
2799 {
2800   const PlotFile& rPlotFile = GetDocument()->getPlotFile();
2801   const int iNColumns = rPlotFile.getNumColumns();
2802   const int iNRecords = rPlotFile.getNumRecords();
2803   
2804   if (iNColumns > 0 && iNRecords > 0) {
2805     if (m_pEZPlot)
2806       delete m_pEZPlot;
2807     m_pEZPlot = new EZPlot;
2808     
2809     for (unsigned int iEzset = 0; iEzset < rPlotFile.getNumEzsetCommands(); iEzset++)
2810       m_pEZPlot->ezset (rPlotFile.getEzsetCommand (iEzset));
2811     
2812     if (m_bMinSpecified) {
2813       std::ostringstream os;
2814       os << "ymin " << m_dMinPixel;
2815       m_pEZPlot->ezset (os.str());
2816     }
2817     
2818     if (m_bMaxSpecified) {
2819       std::ostringstream os;
2820       os << "ymax " << m_dMaxPixel;
2821       m_pEZPlot->ezset (os.str());
2822     }
2823     
2824     m_pEZPlot->ezset("box");
2825     m_pEZPlot->ezset("grid");
2826     
2827     double* pdXaxis = new double [iNRecords];
2828     rPlotFile.getColumn (0, pdXaxis);
2829     
2830     double* pdY = new double [iNRecords];
2831     for (int iCol = 1; iCol < iNColumns; iCol++) {
2832       rPlotFile.getColumn (iCol, pdY);
2833       m_pEZPlot->addCurve (pdXaxis, pdY, iNRecords);
2834     }
2835     
2836     delete pdXaxis;
2837     delete pdY;
2838   }
2839   
2840   if (m_pCanvas)
2841     m_pCanvas->Refresh();
2842 }
2843
2844 bool 
2845 PlotFileView::OnClose (bool deleteWindow)
2846 {
2847   if (! GetDocument() || ! GetDocument()->Close())
2848     return false;
2849   
2850   if (m_pCanvas) {
2851         m_pCanvas->Show(false);
2852     m_pCanvas->setView (NULL);
2853     m_pCanvas = NULL;
2854   }
2855   wxString s(wxTheApp->GetAppName());
2856   if (m_pFrame)
2857     m_pFrame->SetTitle(s);
2858   
2859   Activate(false);
2860   
2861   m_pFrame->SetView(NULL);
2862    SetFrame(NULL);
2863   if (deleteWindow) {
2864     m_pFrame->Show(false);
2865         ::wxYield();
2866      m_pFrame->Destroy();
2867     m_pFrame = NULL;
2868   }
2869   return true;
2870 }
2871
2872
2873 ////////////////////////////////////////////////////////////////
2874
2875
2876 IMPLEMENT_DYNAMIC_CLASS(TextFileView, wxView)
2877
2878 TextFileView::~TextFileView() 
2879 {
2880   GetDocumentManager()->FileHistoryRemoveMenu (m_pFileMenu);
2881   GetDocumentManager()->ActivateView(this, FALSE, TRUE);;
2882 }
2883
2884 bool TextFileView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
2885 {
2886   m_pFrame = CreateChildFrame(doc, this);
2887   SetFrame (m_pFrame);
2888   
2889   int width, height;
2890   m_pFrame->GetClientSize(&width, &height);
2891   m_pFrame->SetTitle("TextFile");
2892   m_pCanvas = new TextFileCanvas (this, m_pFrame, wxPoint(0, 0), wxSize(width, height), wxTE_MULTILINE | wxTE_READONLY);
2893   m_pFrame->SetTitle("Log");
2894   
2895 #ifdef __X__
2896   // X seems to require a forced resize
2897   int x, y;
2898   frame->GetSize(&x, &y);
2899   frame->SetSize(-1, -1, x, y);
2900 #endif
2901   
2902   m_pFrame->Show (true);
2903   Activate (true);
2904   
2905   return true;
2906 }
2907
2908 // Handled by wxTextWindow
2909 void TextFileView::OnDraw(wxDC *WXUNUSED(dc) )
2910 {
2911 }
2912
2913 void TextFileView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
2914 {
2915 }
2916
2917 bool 
2918 TextFileView::OnClose (bool deleteWindow)
2919 {
2920  // if (m_pFrame && m_pFrame->GetTitle() == "Log")
2921     return false;
2922   
2923   if (! GetDocument() || ! GetDocument()->Close())
2924     return false;
2925   
2926   m_pCanvas->Show(false);
2927   Activate(false);
2928
2929   SetFrame(NULL);
2930   m_pFrame->SetView(NULL);
2931   if (deleteWindow) {
2932     m_pFrame->Show(false);
2933         ::wxYield();
2934      m_pFrame->Destroy();
2935     m_pFrame = NULL;
2936     
2937   }
2938   return TRUE;
2939 }
2940
2941 #if CTSIM_MDI
2942 wxDocMDIChildFrame*
2943 #else
2944 wxDocChildFrame*
2945 #endif
2946 TextFileView::CreateChildFrame (wxDocument *doc, wxView *view)
2947 {
2948 #if CTSIM_MDI
2949   wxDocMDIChildFrame* subframe = new wxDocMDIChildFrame (doc, view, theApp->getMainFrame(), -1, "TextFile Frame", wxPoint(-1, -1), wxSize(300, 150), wxDEFAULT_FRAME_STYLE);
2950 #else
2951   wxDocChildFrame* subframe = new wxDocChildFrame (doc, view, theApp->getMainFrame(), -1, "TextFile Frame", wxPoint(-1, -1), wxSize(300, 150), wxDEFAULT_FRAME_STYLE);
2952 #endif
2953   theApp->setIconForFrame (subframe);
2954   
2955   wxMenu *m_pFileMenu = new wxMenu;
2956   
2957   m_pFileMenu->Append(MAINMENU_FILE_CREATE_PHANTOM, "Cr&eate Phantom...\tCtrl-P");
2958   m_pFileMenu->Append(MAINMENU_FILE_CREATE_FILTER, "Create &Filter...\tCtrl-F");
2959   m_pFileMenu->Append(wxID_OPEN, "&Open...\tCtrl-O");
2960   m_pFileMenu->Append(wxID_SAVE, "&Save\tCtrl-S");
2961   m_pFileMenu->Append(wxID_SAVEAS, "Save &As...");
2962   //  m_pFileMenu->Append(wxID_CLOSE, "&Close\tCtrl-W");
2963   
2964   m_pFileMenu->AppendSeparator();
2965   m_pFileMenu->Append(wxID_PRINT, "&Print...");
2966   m_pFileMenu->Append(wxID_PRINT_SETUP, "Print &Setup...");
2967   m_pFileMenu->Append(wxID_PREVIEW, "Print Pre&view");
2968 #ifdef CTSIM_MDI
2969   m_pFileMenu->AppendSeparator();
2970   m_pFileMenu->Append(MAINMENU_FILE_EXIT, "E&xit");
2971 #endif
2972   GetDocumentManager()->FileHistoryAddFilesToMenu(m_pFileMenu);
2973   GetDocumentManager()->FileHistoryUseMenu(m_pFileMenu);
2974   
2975   wxMenu *help_menu = new wxMenu;
2976   help_menu->Append(MAINMENU_HELP_CONTENTS, "&Contents\tF1");
2977   help_menu->Append(MAINMENU_HELP_TOPICS, "&Topics\tCtrl-H");
2978   help_menu->Append(MAINMENU_HELP_ABOUT, "&About");
2979   
2980   wxMenuBar *menu_bar = new wxMenuBar;
2981   
2982   menu_bar->Append(m_pFileMenu, "&File");
2983   menu_bar->Append(help_menu, "&Help");
2984   
2985   subframe->SetMenuBar(menu_bar);
2986   subframe->Centre(wxBOTH);
2987   
2988   wxAcceleratorEntry accelEntries[5];
2989   accelEntries[0].Set (wxACCEL_CTRL, static_cast<int>('O'), wxID_OPEN);
2990   accelEntries[1].Set (wxACCEL_CTRL, static_cast<int>('S'), wxID_SAVE);
2991   accelEntries[2].Set (wxACCEL_CTRL, static_cast<int>('W'), wxID_CLOSE);
2992   accelEntries[3].Set (wxACCEL_CTRL, static_cast<int>('H'), MAINMENU_HELP_TOPICS);
2993   accelEntries[4].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS);
2994   wxAcceleratorTable accelTable (5, accelEntries);
2995   subframe->SetAcceleratorTable (accelTable);
2996   
2997   return subframe;
2998 }
2999
3000
3001 // Define a constructor for my text subwindow
3002 TextFileCanvas::TextFileCanvas (TextFileView* v, wxFrame* frame, const wxPoint& pos, const wxSize& size, long style)
3003 : wxTextCtrl (frame, -1, "", pos, size, style), m_pView(v)
3004 {
3005 }
3006
3007 TextFileCanvas::~TextFileCanvas ()
3008 {
3009   m_pView = NULL;
3010 }