]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxViewer.h
Linux compat
[creaImageIO.git] / src2 / creaImageIOWxViewer.h
1 #ifndef __creaImageIOWxViewer_h_INCLUDED__
2 #define __creaImageIOWxViewer_h_INCLUDED__
3
4 #ifdef USE_WXWIDGETS
5
6 // wx
7 #include <creaWx.h>
8 #include <wx/image.h>
9 #include <wx/imaglist.h>
10 #include <wx/splitter.h>
11
12 #include <creaImageIOSystem.h>
13
14 // For image preview 
15 // vtk and wxvtk classes
16 #include "creawxVTKRenderWindowInteractor.h"
17 #include "vtkImageViewer2.h"
18
19 namespace creaImageIO
20 {
21
22   class ThreadedMovie;
23
24   class WxViewer : public wxFrame
25   {
26
27           public:
28                   friend class ThreadedMovie;
29     /// Ctor 
30     WxViewer();
31     WxViewer(wxWindow *parent, 
32                    const wxWindowID id,
33                    wxString title,
34                    const wxPoint& pos, 
35                    const wxSize& size);
36     /// Dtor
37     virtual ~WxViewer();
38         ///Shows the image in the vector as a movie
39         void ShowImages();
40         ///Shows the image passed as parameter
41         void ShowImage(vtkImageData* im);
42         ///Adds an image to the selection
43         void AddImage(vtkImageData* im);
44         ///Clears the selection of images
45         void ClearImages();
46         ///Returns true if the image vector is empty
47         bool ImagesEmpty();
48
49   private:
50         /// Previewer
51     vtkImageViewer2* mViewer;
52     /// Associated wxvtk interactor
53         crea::creawxVTKRenderWindowInteractor  *mInteractor;
54   
55     int mx1,mx2,my1,my2,mz1,mz2;
56     double mspx,mspy,mspz;
57
58         /// The vector of images to show
59         std::vector<vtkImageData*> images;
60         ///The threaded movie
61         ThreadedMovie* mMovie;
62
63   };
64
65 }
66
67 #endif // USE_WIDGETS
68 // EOF
69 #endif