]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxGimmickView.h
Added Timestamp database to avoid repetition of files on addition.
[creaImageIO.git] / src2 / creaImageIOWxGimmickView.h
1 #ifndef __creaImageIOWxGimmickView_h_INCLUDED__
2 #define __creaImageIOWxGimmickView_h_INCLUDED__
3
4 #ifdef USE_WXWIDGETS
5
6 #include <creaImageIOGimmickView.h>
7 #include <creaImageIOWxViewer.h>
8 #include <creaWx.h>
9
10 #include <wx/splitter.h>
11 #include <wx/toolbar.h> 
12 #include <wx/tbarbase.h> 
13 #include <wx/notebook.h>
14
15 namespace creaImageIO
16 {
17   /**
18    * \ingroup View
19    */
20   //=====================================================================
21   
22   //=====================================================================
23   /// Concrete derivative of GimmickView which implements a wxWidgets-based view
24
25   class WxGimmickView : public wxPanel, virtual public GimmickView
26   {
27   public:
28     
29     typedef int EventType;
30     
31     /// Ctor
32     WxGimmickView(Gimmick*, 
33                   wxWindow *parent, 
34                   const wxWindowID id,
35                   const wxPoint& pos, const wxSize& size,
36                   int min_dim = GIMMICK_2D_IMAGE_SELECTION,
37                   int max_dim = GIMMICK_3D_IMAGE_SELECTION,
38                   int number_of_threads = 0);
39     /// Virtual destructor
40     virtual ~WxGimmickView();
41     
42     /// Returns the selected files
43     ///(overloaded from GimmickView)
44     void GetSelectedFiles(std::vector<std::string>& s);
45     
46     /// Returns the selected Images so that they comply with the 
47     /// given parameter(4D) (overloaded from GimmickView)
48     void GetSelectedImages(std::vector<vtkImageData*>& s, int dim);
49
50     /// Returns the images indicated by the filenames in the vector 
51     /// so that they comply with the given parameter(dim)
52     //(overloaded from GimmickView) 
53     void GetImages(int dim, const std::vector<std::string>& files, 
54                    std::vector<vtkImageData*>& s);
55     
56     /// Callback called when a selection from a TreeView has changed 
57     //(overloaded from GimmickView)
58     void OnSelectionChange(const std::vector<tree::Node*>& s, 
59                            bool isSelection, int selection, bool mProcess);
60     ///Stops the player
61     void StopPlayer(){mViewer->StopPlayer();}
62     ///Resets the default image
63     void ClearSelection();
64     
65     
66     ///Sends a request to read the currently selected node and the ones that surround it.
67     void ReadImageThreaded(const std::vector<tree::Node*>& sel);
68     
69     
70   protected:
71     /// Creates the tool bar
72     void CreateToolBar(); 
73     
74     /// Create the tree view for TreeHandler provided 
75     /// (overloaded from GimmickView)
76     void CreateTreeView( TreeHandler*, TimestampDatabaseHandler* );
77     
78     
79   private:
80     /// Is set to true at the end of constructor 
81     /// (in order to lock callbacks from threaded objects or event 
82     /// before everything is ok)
83     bool mConstructed;
84     /// The ToolBar and the tools
85     wxToolBar*         mToolBar;
86     wxToolBarToolBase* mToolAddFile;
87     wxToolBarToolBase* mToolAddDir;
88     wxToolBarToolBase* mToolRemove;
89     wxToolBarToolBase* mToolAddDatabase;
90     wxToolBarToolBase* mToolHelp;
91     
92     wxSplitterWindow* mSplitter;
93     wxPanel*          mBottomPanel;
94     wxStaticText *    mText;
95     wxNotebook*       mNotebook;
96     
97     /// The list of icons 
98     wxImageList *    mIcon;
99     void CreateIconList();
100     
101     Gimmick * mGimmick;
102     /// Callback for adding files
103     void OnAddFiles(wxCommandEvent& event);
104     /// Callback for adding dir
105     void OnAddDir(wxCommandEvent& event);
106     /// Callback for removing files
107     void OnRemove(wxCommandEvent& event);
108     
109     /// Display a message box with the last addition statistics
110     void DisplayAddSummary();
111
112         /// Test a directory to know if contains sub-directory to analyze
113         bool isNeedRecursive(std::string i_name);
114     
115     /// AddProgress Gimmick callback
116     void OnAddProgress( Gimmick::AddProgress& );
117     /// Called upon to refresh the viewer once there are no actions to be done
118     void OnInternalIdle();
119     
120     /// Progress dialog
121     wxProgressDialog* mProgressDialog;
122     ///The selection's maximum dimension
123     int mSelectionMaxDimension;
124     ///The selection's minimum dimension
125     int mSelectionMinDimension;
126     ///Image previewer
127     WxViewer* mViewer;
128     ///Currently Displayed Node
129     tree::Node* mCurImageItemToShow;
130     //Pointer holders for images to be shown
131     std::vector<ImagePointerHolder*> pointers;
132     
133     
134     wxString mCurrentDirectory;
135     
136     DECLARE_EVENT_TABLE()
137       };
138   // EO class WxGimmickView
139   //=====================================================================
140   
141   
142   /*
143
144
145
146
147
148
149
150
151         //====================================================================
152         // General
153         //====================================================================
154
155     /// Returns the size of the current selection
156     virtual int GetSelectionSize() { return 0; } 
157     /// Returns true if there is a valid selection
158     virtual bool IsSelectionValid(){ return false; }
159     /// Returns the vector of full filenames of selected images
160     virtual void GetSelectedFiles(std::vector<std::string>&){ return; }
161     /// Returns the vector of images corresponding to selection
162     virtual void GetSelectedImages(std::vector<vtkImageData*>&){ return; }
163     /// Returns the vector of DicomNode corresponding to selection
164     virtual void GetSelectedDicomNodes(std::vector<DicomNode*>&){ return; }
165    /// Returns the DicomNode corresponding to the tree item
166     virtual DicomNode* GetDicomNodeOfItem(const TreeItemId& i);
167
168         
169         /// Type of list of DicomDatabase
170     typedef std::vector<DicomDatabase*> DicomDatabaseListType;
171     /// Returns the list of DicomDatabase open
172     virtual DicomDatabaseListType& GetDicomDatabaseList() 
173     { return null; }
174     /// Returns the list of DicomDatabase open (const)
175     virtual const DicomDatabaseListType& GetDicomDatabaseList() const 
176     { return null; }
177
178         protected:
179         ///Opens an existing database, or else, creates a local database.
180     virtual void OpenOrNewDatabase(bool open){ return; }
181         ///Shows the help
182         virtual void ShowHelp();
183
184         private:
185         ///Gets the extension of the database
186         const std::string& GetDatabaseExtension() { return null; }
187         ///Sets the extension of the database
188     virtual void SetDatabaseExtension(const std::string& ext){ return; }
189
190
191         //====================================================================
192     // Preview Display Related
193         //====================================================================
194
195
196     ///Shows the image sent as a parameter
197         private:
198          virtual void ShowImage(vtkImageData* image){ return; }
199
200         //====================================================================
201     // Favorites Related
202         //====================================================================
203
204
205         public:
206         ///Loads or creates a favorites database
207     virtual void LoadOrCreateFavoritesDatabase(){ return; }
208         private:
209         ///Creates the user settings directory
210     void CreateUserSettingsDirectory(){ return; }
211         ///Obtains the user settings directory
212         const std::string& GetUserSettingsDirectory(){ return null; }
213
214         //====================================================================  
215         // Attribute Display Related
216         //====================================================================
217
218
219         ///Shows the Information regarding the node sent as a parameter
220         private:
221      virtual void ShowInformation(DicomNode*){ return; }
222    
223         //====================================================================
224     // Tree Display Related
225     //====================================================================
226
227         protected:
228     /// Completely rebuilds the view with 
229     /// current DicomDatabaseList
230     virtual void RebuildView(){ return; }
231         /// Recursively updates the part of the view corresponding 
232     /// to the DicomDatabase passed
233     /// i.e. creates items for the DicomNode which do not have
234     ///      deletes obsolete items (whose DicomNode has been deleted)
235     virtual void UpdateDicomDatabaseView(DicomDatabase*){ return; }
236     /// Recursively updates the part of the view corresponding 
237     /// to the DicomNode provided.
238     /// parent is its parent in the tree (where to insert / remove it)
239         virtual void UpdateDicomNodeView(DicomNode* n, const TreeItemId& parent){ return; }
240     
241         private:
242         ///Type definition of the data regarding the tree
243     typedef WxGimmickTreeItemData TreeItemData;
244         ///Gets the item data of the tree item passed as a parameter
245     TreeItemData* GetItemData(const TreeItemId& id){ return null; }
246     ///Type definition of the data insid a node of the tree
247     typedef WxGimmickDicomNodeData NodeData;
248
249
250         //====================================================================
251     // Class Attributes
252     //====================================================================
253
254         
255         int mSelectionType;
256     int mSelectionMaxImageDimension;
257     int mCurrentSelectionImageSize[4];
258
259         ///Existent Database List
260     DicomDatabaseListType mDicomDatabaseList;
261         ///Favorites database
262     DicomDatabase* mFavoriteDatabase;
263
264         ///Path to the database list file
265     std::string mDatabaseListFile;
266         ///Extension of the database
267     std::string mDatabaseExtension;
268
269     bool mJustStarted;
270
271     int  mFirstDicomDatabaseIconIndex;
272
273    // Previewer
274     vtkImageViewer2* mViewer;
275     
276     int mx1,mx2,my1,my2,mz1,mz2;
277     double mspx,mspy,mspz;
278   
279     // Image preview :
280     // Multi-thread image reader
281     MultiThreadImageReader mReader;
282     // map of images name to node
283     std::map<std::string,DicomNode*> mImageFileNameToNode;
284   */
285  
286 } // EO namespace creaImageIO
287
288 #endif // USE_WIDGETS
289 // EOF
290 #endif