]> 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     void StopPlayer();
54
55     bool RefreshIfNecessary();
56
57   private:
58    ///Shows the image passed as parameter
59     void ShowImage(vtkImageData* im);
60
61     /// Previewer
62     vtkImageViewer2* mViewer;
63     /// Associated wxvtk interactor
64     crea::creawxVTKRenderWindowInteractor  *mInteractor;
65     
66     /// Current extent 
67     int mx1,mx2,my1,my2,mz1,mz2;
68     /// Current spacing
69     double mspx,mspy,mspz;
70
71     /// The vector of images to show
72     std::vector<vtkImageData*> images;
73     /// 
74     int mCurrent;
75     ///The threaded movie player
76     WxViewerPlayer* mPlayer;
77
78     /// The mutex
79     wxMutex mMutex;
80
81     /// 
82     bool mNeedRefresh;
83     vtkImageData* mLastImageShown;
84
85   };
86
87 }
88
89 #endif // USE_WIDGETS
90 // EOF
91 #endif