]> Creatis software - creaImageIO.git/blob - src2/creaImageIOGimmickView.h
Clean-Up with Juan Sebastien
[creaImageIO.git] / src2 / creaImageIOGimmickView.h
1 #ifndef __creaImageIOGimmickView_h_INCLUDED__
2 #define __creaImageIOGimmickView_h_INCLUDED__
3
4 #include <creaImageIOGimmick.h>
5 #include <creaImageIOTreeView.h>
6 #include <creaImageIOSystem.h>
7 #include <creaImageIOImagePointerHolder.h>
8
9 //#include <map>
10 #include <vtkImageData.h>
11 #include <creaImageIOMultiThreadImageReader.h>
12
13 // Signal/slot mechanism for progress events
14 #include <boost/signal.hpp>
15 #include <boost/bind.hpp>
16
17 #define GIMMICK_NO_IMAGE_SELECTION 0
18 #define GIMMICK_2D_IMAGE_SELECTION 2
19 #define GIMMICK_3D_IMAGE_SELECTION 3
20 #define GIMMICK_4D_IMAGE_SELECTION 4
21
22 #define NATIVE 0
23 #define _2D 2
24 #define _3D 3
25
26
27 namespace creaImageIO
28 {
29         /**
30         * \ingroup View
31         */
32          
33         class ImageExtent;
34     //=====================================================================
35     
36     //=====================================================================
37     ///Abstract class that handles views, attributes and previews (GUI) for Gimmick.
38         class GimmickView: public MultiThreadImageReaderUser
39     {
40     public:
41       /// Ctor
42       GimmickView(Gimmick*, int number_of_threads = 0 );
43       /// Virtual destructor
44       virtual ~GimmickView();
45       /// Initializes the view : 
46       /// Creates the TreeViews for all the TreeHandler of the Controller
47       /// 
48       virtual void Initialize();
49
50       /// Type of map from View name to TreeView* 
51       /// (This map is equivalent for Views of the TreeHandlerMap of Gimmick)
52       typedef std::map<std::string, TreeView*> TreeViewMapType;
53       
54       /// Returns the TreeViewMap (ref)
55       TreeViewMapType& GetTreeViewMap() { return mTreeViewMap; }
56       /// Returns the TreeViewMap (const ref)
57       const TreeViewMapType& GetTreeViewMap() const
58       { return mTreeViewMap; }
59
60       /// Finalize 
61       virtual void Finalize();
62
63           //Returns the maximal priority
64           int GetMaximalPriority(){return mReader.GetMaximalPriority();}
65
66       ///Adds the selected Images to the given vector and validates to see if they comply with the given parameter (4D)
67       virtual void GetSelectedImages(std::vector<vtkImageData*>& s, int dim) 
68           { GimmickError("INTERNAL ERROR : GetSelectedImages not implemented"); }
69
70       virtual void GetSelectedFiles(std::vector<std::string>& s)
71       { GimmickError("INTERNAL ERROR : GetSelectedFiles not implemented"); }
72
73           virtual void GetImages(int dim, std::vector<std::string> files, std::vector<vtkImageData*>& s) 
74           { GimmickError("INTERNAL ERROR : GetImages not implemented"); }
75
76       virtual void OnSelectionChange(const std::vector<tree::Node*>& s, bool isSelection, int selection, bool mProcess)
77       { GimmickError("INTERNAL ERROR : OnSelectionChange not implemented"); }
78
79            virtual void ClearSelection()
80       { GimmickError("INTERNAL ERROR : ClearSelection not implemented"); }
81
82           ///Adds a file to ignore
83           virtual void AddIgnoreFile(tree::Node* toRemove)
84           { GimmickError("INTERNAL ERROR : AddIgnoreFile not implemented"); }
85       
86           ///Copies selected files
87           virtual void CopyFiles(const std::vector<std::string>& filenames)
88           { GimmickError("INTERNAL ERROR : CopyFiles not implemented"); }
89
90           ///Edits the fields of a given node
91           virtual void CreateEditFieldsDialog(tree::Node* node, std::vector<std::string> names, std::vector<std::string> keys)
92           { GimmickError("INTERNAL ERROR : EditFields not implemented"); }
93       
94            ///Copies selected files
95           virtual void SaveAs(const std::vector<std::string>& filenames)
96           { GimmickError("INTERNAL ERROR : SaveAs not implemented"); }
97
98
99       ///Validates the dimension compliance of the images with the maximum and minimum given, and between their sizes
100       bool ValidateSelected (tree::Node* sel, int min_dim, int max_dim);
101       
102       ///Reads the vector of images, builds it in the dimension required and returns them in the supplied vector.
103           void ReadImagesNotThreaded(std::vector<vtkImageData*>& s,std::vector<std::string> files, int dim);
104       ///Requests the reading of an image with priority and index in the 
105       /// current selection (-1 if not in selection)
106       void RequestReading(tree::Node* n, int prio, int selection_index , ImagePointerHolder *p);
107      
108       
109       ///Obtains the message of the state
110       std::string GetMessage(){return mMess;}
111       ///Obtains the message of the state
112       void SetMessage(std::string mess){mMess=mess;}
113           ///Resets the data of the extent and begins a new selection
114           void ResetExtent();
115
116       /// Create the tree views 
117       void CreateTreeViews();
118
119           /// Create a tree view with a given name
120           void CreateSingleTreeView(std::string &i_name);
121
122       /// Create the tree view for TreeHandler provided
123       virtual void CreateTreeView( TreeHandler* ) 
124       { GimmickError("INTERNAL ERROR : CreateTreeView not implemented"); }
125
126       /// Updates the TreeView of given name from level l to bottom
127       /// (calls the virtual method TreeView::UpdateLevel(l))
128       virtual void UpdateTreeViewLevel(const std::string&, int l);
129           // Multi-thread image reader callback
130           void OnMultiThreadImageReaderEvent(const std::string& filename,
131                                        MultiThreadImageReaderUser::EventType t,
132                                        vtkImageData* image);
133
134       vtkImageData* GetDefaultImage() { return mReader.GetImage(""); }
135
136
137       //=============================================
138       typedef boost::signal<void (bool)>  ValidationSignalType;
139       typedef ValidationSignalType::slot_function_type ValidationCallbackType;
140       //=============================================
141
142      //==================================================================
143       /// Adds the function f to the list of functions to call 
144       /// when the addition progresses.
145       /// f is of type ProgressCallbackType which is:
146       /// void (*ProgressCallbackType)(Progress&)
147       /// To pass a member function 'f' of an instance 'c' of a class 'C' 
148       /// as callback you have to 'bind' it, i.e. call:
149       /// ConnectValidationObserver ( boost::bind( &C::f , c, _1 ) );
150       void ConnectValidationObserver(ValidationCallbackType callback);
151      //==================================================================
152
153           
154
155         void modifyValidationSignal(bool ivalid);
156
157     private:
158         
159       /// Controller which manages the interaction with the model
160       Gimmick* mGimmick;
161       /// The views 
162       TreeViewMapType mTreeViewMap;
163       /// The message that results from the validation
164       std::string mMess;
165
166       /// Multi-thread image reader
167       MultiThreadImageReader mReader;
168       /// Internal type of image reading event
169       /// If the image pointer is non null then the image is available (loaded)
170       /// else it has been unloaded
171       struct ImageEventType
172       {
173         ImageEventType( tree::Node* no = 0,   
174                         int sel_index = -1,
175                         ImagePointerHolder* ph= 0)
176           : node(no), index(sel_index),  pointerHolder(ph){}
177         ImageEventType(vtkImageData* im )
178           : image(im) {}
179         tree::Node* node;
180         vtkImageData* image;
181                 int index;
182                 ImagePointerHolder* pointerHolder;
183       };
184       typedef std::map<std::string,ImageEventType> ImageEventTypeMap;
185       /// Map of images' names to ImageEventType
186       /// Used to associated a filename to a the data of a request
187       ImageEventTypeMap mImageEventMap;
188       // queue of image event 
189       typedef std::deque<ImageEventType> ImageEventQueueType;
190       //ImageEventQueueType mImageEventQueue;
191
192           ///The current image extent
193           ImageExtent* mImageExtent;
194           ///The validation signal
195           ValidationSignalType mValidationSignal;
196           ///Boolean that determines if the selection is valid
197           bool valid;
198           ///Boolean that determines if the reader has been started
199           bool mReaderStarted;
200       
201         };
202   // EO class GimmickView
203     //=====================================================================
204   
205
206  
207  
208 } // EO namespace creaImageIO
209
210 // EOF
211 #endif