]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxViewer.h
Debugged the thread and added a deletion on exit
[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   private:
56    ///Shows the image passed as parameter
57     void ShowImage(vtkImageData* im);
58
59     /// Previewer
60     vtkImageViewer2* mViewer;
61     /// Associated wxvtk interactor
62     crea::creawxVTKRenderWindowInteractor  *mInteractor;
63     
64     /// Current extent 
65     int mx1,mx2,my1,my2,mz1,mz2;
66     /// Current spacing
67     double mspx,mspy,mspz;
68
69     /// The vector of images to show
70     std::vector<vtkImageData*> images;
71     /// 
72     int mCurrent;
73     ///The threaded movie player
74     WxViewerPlayer* mPlayer;
75
76     /// The mutex
77     wxMutex mMutex;
78
79   };
80
81 }
82
83 #endif // USE_WIDGETS
84 // EOF
85 #endif