]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxViewer.h
*** empty log message ***
[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 WxViewerPlayer;
23
24   class WxViewer : public wxPanel
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     /// Sets the movie size
41     void SetMovieSize(unsigned int);
42     ///Sets the ith image of the movie
43     void SetImage(int i, 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     void ShowNextImage();
50     
51     void OnInternalIdle();
52
53
54   private:
55    ///Shows the image passed as parameter
56     void ShowImage(vtkImageData* im);
57
58     /// Previewer
59     vtkImageViewer2* mViewer;
60     /// Associated wxvtk interactor
61     crea::creawxVTKRenderWindowInteractor  *mInteractor;
62     
63     /// Current extent 
64     int mx1,mx2,my1,my2,mz1,mz2;
65     /// Current spacing
66     double mspx,mspy,mspz;
67
68     /// The vector of images to show
69     std::vector<vtkImageData*> images;
70     /// 
71     int mCurrent;
72     ///The threaded movie player
73     WxViewerPlayer* mPlayer;
74
75     /// The mutex
76     wxMutex mMutex;
77
78   };
79
80 }
81
82 #endif // USE_WIDGETS
83 // EOF
84 #endif