]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxGimmickView.h
*** empty log message ***
[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* );
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     
113     /// AddProgress Gimmick callback
114     void OnAddProgress( Gimmick::AddProgress& );
115     /// Called upon to refresh the viewer once there are no actions to be done
116     void OnInternalIdle();
117     
118     /// Progress dialog
119     wxProgressDialog* mProgressDialog;
120     ///The selection's maximum dimension
121     int mSelectionMaxDimension;
122     ///The selection's minimum dimension
123     int mSelectionMinDimension;
124     ///Image previewer
125     WxViewer* mViewer;
126     ///Currently Displayed Node
127     tree::Node* mCurImageItemToShow;
128     //Pointer holders for images to be shown
129     std::vector<ImagePointerHolder*> pointers;
130     
131     
132     wxString mCurrentDirectory;
133     
134     DECLARE_EVENT_TABLE()
135       };
136   // EO class WxGimmickView
137   //=====================================================================
138   
139   
140   /*
141
142
143
144
145
146
147
148
149         //====================================================================
150         // General
151         //====================================================================
152
153     /// Returns the size of the current selection
154     virtual int GetSelectionSize() { return 0; } 
155     /// Returns true if there is a valid selection
156     virtual bool IsSelectionValid(){ return false; }
157     /// Returns the vector of full filenames of selected images
158     virtual void GetSelectedFiles(std::vector<std::string>&){ return; }
159     /// Returns the vector of images corresponding to selection
160     virtual void GetSelectedImages(std::vector<vtkImageData*>&){ return; }
161     /// Returns the vector of DicomNode corresponding to selection
162     virtual void GetSelectedDicomNodes(std::vector<DicomNode*>&){ return; }
163    /// Returns the DicomNode corresponding to the tree item
164     virtual DicomNode* GetDicomNodeOfItem(const TreeItemId& i);
165
166         
167         /// Type of list of DicomDatabase
168     typedef std::vector<DicomDatabase*> DicomDatabaseListType;
169     /// Returns the list of DicomDatabase open
170     virtual DicomDatabaseListType& GetDicomDatabaseList() 
171     { return null; }
172     /// Returns the list of DicomDatabase open (const)
173     virtual const DicomDatabaseListType& GetDicomDatabaseList() const 
174     { return null; }
175
176         protected:
177         ///Opens an existing database, or else, creates a local database.
178     virtual void OpenOrNewDatabase(bool open){ return; }
179         ///Shows the help
180         virtual void ShowHelp();
181
182         private:
183         ///Gets the extension of the database
184         const std::string& GetDatabaseExtension() { return null; }
185         ///Sets the extension of the database
186     virtual void SetDatabaseExtension(const std::string& ext){ return; }
187
188
189         //====================================================================
190     // Preview Display Related
191         //====================================================================
192
193
194     ///Shows the image sent as a parameter
195         private:
196          virtual void ShowImage(vtkImageData* image){ return; }
197
198         //====================================================================
199     // Favorites Related
200         //====================================================================
201
202
203         public:
204         ///Loads or creates a favorites database
205     virtual void LoadOrCreateFavoritesDatabase(){ return; }
206         private:
207         ///Creates the user settings directory
208     void CreateUserSettingsDirectory(){ return; }
209         ///Obtains the user settings directory
210         const std::string& GetUserSettingsDirectory(){ return null; }
211
212         //====================================================================  
213         // Attribute Display Related
214         //====================================================================
215
216
217         ///Shows the Information regarding the node sent as a parameter
218         private:
219      virtual void ShowInformation(DicomNode*){ return; }
220    
221         //====================================================================
222     // Tree Display Related
223     //====================================================================
224
225         protected:
226     /// Completely rebuilds the view with 
227     /// current DicomDatabaseList
228     virtual void RebuildView(){ return; }
229         /// Recursively updates the part of the view corresponding 
230     /// to the DicomDatabase passed
231     /// i.e. creates items for the DicomNode which do not have
232     ///      deletes obsolete items (whose DicomNode has been deleted)
233     virtual void UpdateDicomDatabaseView(DicomDatabase*){ return; }
234     /// Recursively updates the part of the view corresponding 
235     /// to the DicomNode provided.
236     /// parent is its parent in the tree (where to insert / remove it)
237         virtual void UpdateDicomNodeView(DicomNode* n, const TreeItemId& parent){ return; }
238     
239         private:
240         ///Type definition of the data regarding the tree
241     typedef WxGimmickTreeItemData TreeItemData;
242         ///Gets the item data of the tree item passed as a parameter
243     TreeItemData* GetItemData(const TreeItemId& id){ return null; }
244     ///Type definition of the data insid a node of the tree
245     typedef WxGimmickDicomNodeData NodeData;
246
247
248         //====================================================================
249     // Class Attributes
250     //====================================================================
251
252         
253         int mSelectionType;
254     int mSelectionMaxImageDimension;
255     int mCurrentSelectionImageSize[4];
256
257         ///Existent Database List
258     DicomDatabaseListType mDicomDatabaseList;
259         ///Favorites database
260     DicomDatabase* mFavoriteDatabase;
261
262         ///Path to the database list file
263     std::string mDatabaseListFile;
264         ///Extension of the database
265     std::string mDatabaseExtension;
266
267     bool mJustStarted;
268
269     int  mFirstDicomDatabaseIconIndex;
270
271    // Previewer
272     vtkImageViewer2* mViewer;
273     
274     int mx1,mx2,my1,my2,mz1,mz2;
275     double mspx,mspy,mspz;
276   
277     // Image preview :
278     // Multi-thread image reader
279     MultiThreadImageReader mReader;
280     // map of images name to node
281     std::map<std::string,DicomNode*> mImageFileNameToNode;
282   */
283  
284 } // EO namespace creaImageIO
285
286 #endif // USE_WIDGETS
287 // EOF
288 #endif