]> Creatis software - creaImageIO.git/blob - src2/creaImageIOGimmickView.h
Correction d'un crash au moment de la validation sur le viewer
[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       
83       ///Validates the dimension compliance of the images with the maximum and minimum given, and between their sizes
84       bool ValidateSelected (tree::Node* sel, int min_dim, int max_dim);
85       
86       ///Reads the vector of images, builds it in the dimension required and returns them in the supplied vector.
87           void ReadImagesNotThreaded(std::vector<vtkImageData*>& s,std::vector<std::string> files, int dim);
88       ///Requests the reading of an image with priority and index in the 
89       /// current selection (-1 if not in selection)
90       void RequestReading(tree::Node* n, int prio, int selection_index , ImagePointerHolder *p);
91      
92       
93       ///Obtains the message of the state
94       std::string GetMessage(){return mMess;}
95       ///Obtains the message of the state
96       void SetMessage(std::string mess){mMess=mess;}
97           ///Resets the data of the extent and begins a new selection
98           void ResetExtent();
99
100       /// Create the tree views 
101       void CreateTreeViews();
102
103       /// Create the tree view for TreeHandler provided
104       virtual void CreateTreeView( TreeHandler*) 
105       { GimmickError("INTERNAL ERROR : CreateTreeView not implemented"); }
106
107       /// Updates the TreeView of given name from level l to bottom
108       /// (calls the virtual method TreeView::UpdateLevel(l))
109       virtual void UpdateTreeViewLevel(const std::string&, int l);
110           // Multi-thread image reader callback
111           void OnMultiThreadImageReaderEvent(const std::string& filename,
112                                        MultiThreadImageReaderUser::EventType t,
113                                        vtkImageData* image);
114
115       vtkImageData* GetDefaultImage() { return mReader.GetImage(""); }
116
117
118       //=============================================
119       typedef boost::signal<void (bool)>  ValidationSignalType;
120       typedef ValidationSignalType::slot_function_type ValidationCallbackType;
121       //=============================================
122
123      //==================================================================
124       /// Adds the function f to the list of functions to call 
125       /// when the addition progresses.
126       /// f is of type ProgressCallbackType which is:
127       /// void (*ProgressCallbackType)(Progress&)
128       /// To pass a member function 'f' of an instance 'c' of a class 'C' 
129       /// as callback you have to 'bind' it, i.e. call:
130       /// ConnectValidationObserver ( boost::bind( &C::f , c, _1 ) );
131       void ConnectValidationObserver(ValidationCallbackType callback);
132      //==================================================================
133
134         void modifyValidationSignal(bool ivalid);
135
136     private:
137         
138       /// Controller which manages the interaction with the model
139       Gimmick* mGimmick;
140       /// The views 
141       TreeViewMapType mTreeViewMap;
142       /// The message that results from the validation
143       std::string mMess;
144
145       /// Multi-thread image reader
146       MultiThreadImageReader mReader;
147       /// Internal type of image reading event
148       /// If the image pointer is non null then the image is available (loaded)
149       /// else it has been unloaded
150       struct ImageEventType
151       {
152         ImageEventType( tree::Node* no = 0,   
153                         int sel_index = -1,
154                         ImagePointerHolder* ph= 0)
155           : node(no), index(sel_index),  pointerHolder(ph){}
156         ImageEventType(vtkImageData* im )
157           : image(im) {}
158         tree::Node* node;
159         vtkImageData* image;
160                 int index;
161                 ImagePointerHolder* pointerHolder;
162       };
163       typedef std::map<std::string,ImageEventType> ImageEventTypeMap;
164       /// Map of images' names to ImageEventType
165       /// Used to associated a filename to a the data of a request
166       ImageEventTypeMap mImageEventMap;
167       // queue of image event 
168       typedef std::deque<ImageEventType> ImageEventQueueType;
169       //ImageEventQueueType mImageEventQueue;
170
171           ///The current image extent
172           ImageExtent* mImageExtent;
173           ///The validation signal
174           ValidationSignalType mValidationSignal;
175           ///Boolean that determines if the selection is valid
176           bool valid;
177           ///Boolean that determines if the reader has been started
178           bool mReaderStarted;
179       
180         };
181   // EO class GimmickView
182     //=====================================================================
183   
184
185   /*
186
187
188
189
190
191
192
193
194         //====================================================================
195         // General
196         //====================================================================
197
198     /// Returns the size of the current selection
199     virtual int GetSelectionSize() { return 0; } 
200     /// Returns true if there is a valid selection
201     virtual bool IsSelectionValid(){ return false; }
202     /// Returns the vector of full filenames of selected images
203     virtual void GetSelectedFiles(std::vector<std::string>&){ return; }
204     /// Returns the vector of images corresponding to selection
205     virtual void GetSelectedImages(std::vector<vtkImageData*>&){ return; }
206     /// Returns the vector of DicomNode corresponding to selection
207     virtual void GetSelectedDicomNodes(std::vector<DicomNode*>&){ return; }
208    /// Returns the DicomNode corresponding to the tree item
209     virtual DicomNode* GetDicomNodeOfItem(const TreeItemId& i);
210
211         
212         /// Type of list of DicomDatabase
213     typedef std::vector<DicomDatabase*> DicomDatabaseListType;
214     /// Returns the list of DicomDatabase open
215     virtual DicomDatabaseListType& GetDicomDatabaseList() 
216     { return null; }
217     /// Returns the list of DicomDatabase open (const)
218     virtual const DicomDatabaseListType& GetDicomDatabaseList() const 
219     { return null; }
220
221         protected:
222         ///Opens an existing database, or else, creates a local database.
223     virtual void OpenOrNewDatabase(bool open){ return; }
224         ///Shows the help
225         virtual void ShowHelp();
226
227         private:
228         ///Gets the extension of the database
229         const std::string& GetDatabaseExtension() { return null; }
230         ///Sets the extension of the database
231     virtual void SetDatabaseExtension(const std::string& ext){ return; }
232
233
234         //====================================================================
235     // Preview Display Related
236         //====================================================================
237
238
239     ///Shows the image sent as a parameter
240         private:
241          virtual void ShowImage(vtkImageData* image){ return; }
242
243         //====================================================================
244     // Favorites Related
245         //====================================================================
246
247
248         public:
249         ///Loads or creates a favorites database
250     virtual void LoadOrCreateFavoritesDatabase(){ return; }
251         private:
252         ///Creates the user settings directory
253     void CreateUserSettingsDirectory(){ return; }
254         ///Obtains the user settings directory
255         const std::string& GetUserSettingsDirectory(){ return null; }
256
257         //====================================================================  
258         // Attribute Display Related
259         //====================================================================
260
261
262         ///Shows the Information regarding the node sent as a parameter
263         private:
264      virtual void ShowInformation(DicomNode*){ return; }
265    
266         //====================================================================
267     // Tree Display Related
268     //====================================================================
269
270         protected:
271     /// Completely rebuilds the view with 
272     /// current DicomDatabaseList
273     virtual void RebuildView(){ return; }
274         /// Recursively updates the part of the view corresponding 
275     /// to the DicomDatabase passed
276     /// i.e. creates items for the DicomNode which do not have
277     ///      deletes obsolete items (whose DicomNode has been deleted)
278     virtual void UpdateDicomDatabaseView(DicomDatabase*){ return; }
279     /// Recursively updates the part of the view corresponding 
280     /// to the DicomNode provided.
281     /// parent is its parent in the tree (where to insert / remove it)
282         virtual void UpdateDicomNodeView(DicomNode* n, const TreeItemId& parent){ return; }
283     
284         private:
285         ///Type definition of the data regarding the tree
286     typedef WxGimmickTreeItemData TreeItemData;
287         ///Gets the item data of the tree item passed as a parameter
288     TreeItemData* GetItemData(const TreeItemId& id){ return null; }
289     ///Type definition of the data insid a node of the tree
290     typedef WxGimmickDicomNodeData NodeData;
291
292
293         //====================================================================
294     // Class Attributes
295     //====================================================================
296
297         
298         int mSelectionType;
299     int mSelectionMaxImageDimension;
300     int mCurrentSelectionImageSize[4];
301
302         ///Existent Database List
303     DicomDatabaseListType mDicomDatabaseList;
304         ///Favorites database
305     DicomDatabase* mFavoriteDatabase;
306
307         ///Path to the database list file
308     std::string mDatabaseListFile;
309         ///Extension of the database
310     std::string mDatabaseExtension;
311
312     bool mJustStarted;
313
314     int  mFirstDicomDatabaseIconIndex;
315
316    // Previewer
317     vtkImageViewer2* mViewer;
318     
319     int mx1,mx2,my1,my2,mz1,mz2;
320     double mspx,mspy,mspz;
321   
322     // Image preview :
323     // Multi-thread image reader
324     MultiThreadImageReader mReader;
325     // map of images name to node
326     std::map<std::string,DicomNode*> mImageFileNameToNode;
327   */
328  
329 } // EO namespace creaImageIO
330
331 // EOF
332 #endif