]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxTreeView.h
49dd62b9c3fc87344db462404c77767e9793fce0
[creaImageIO.git] / src2 / creaImageIOWxTreeView.h
1 #ifndef __creaImageIOWxTreeView_h_INCLUDED__
2 #define __creaImageIOWxTreeView_h_INCLUDED__
3
4 #ifdef USE_WXWIDGETS
5
6 #include <creaImageIOTreeView.h>
7 #include <creaWx.h>
8
9 #include <wx/listctrl.h>
10 #include <wx/splitter.h>
11 //#include <vector>
12 const std::string empty_string("");
13 namespace creaImageIO
14 {
15
16           //=====================================================================
17   /// Data stored by the list items
18   struct ItemData
19   {
20     ItemData() : node(0), id(-1), attr(&empty_string) {}
21     // The corresponding Node
22     tree::Node* node;
23     // The id ?
24     int id;
25     // The pointer on the current attribute string to sort on
26     const std::string* attr;
27     // Was the item previously selected ?
28     // Useful for reselecting the item after sort
29     bool selected;
30   };
31   /**
32    * \ingroup View
33    */
34   //=====================================================================
35   
36   //=====================================================================
37   /// Abstract class that handles the view of a Tree through its TreeHandler
38   class WxTreeView : public wxPanel, virtual public TreeView
39     {
40     public:
41       /// Ctor
42       WxTreeView(TreeHandler*, GimmickView*, 
43                  wxWindow* parent, const wxWindowID id);
44       /// Virtual destructor
45       virtual ~WxTreeView();
46
47       
48       /// Updates the view of a level given the selected items of upper level
49       virtual void UpdateLevel( int );
50
51       ///Removes selected nodes on given level
52           virtual void RemoveSelected(std::string &i_save);
53
54           ///Returns the last selected level
55           virtual unsigned int GetLastSelectedLevel(){return mLastLevel;}
56
57       /// Callback for item selection
58       void OnItemSelected(wxListEvent& event);
59
60       /// Callback for item deselection
61       void OnItemDeSelected(wxListEvent& event);
62       
63       /// Callback for column click
64       void OnColClick(wxListEvent& event);
65       
66       /// Callback when the user needs the items sorted
67       void OnPopupSort(wxCommandEvent& event);
68       
69       ///Callback when the user need the items filtered
70       void OnPopupFilter(wxCommandEvent& event);
71
72           ///Callback when the user needs the item copied to the local disk
73       void OnLocalCopy(wxCommandEvent& event);
74
75           ///Callback when the user needs to edit a field
76       void OnEditField(wxCommandEvent& event);
77
78           ///Callback when the user needs to display alll dicom tags for a file
79           void OnDumpTags(wxCommandEvent &event);
80       
81       ///Callback on mouse click
82       void OnMouseClick(wxMouseEvent& event);
83
84           /// Displays a menu for items
85           void OnItemMenu(wxListEvent &event);
86           
87           /// Gets the attributes that are being shown and the ones that have been blocked on a specific level
88           void GetAttributes(std::vector<std::string>& areShown, std::vector<std::string>& notShown, int level);
89
90           ///Sets the non visible attributes and refreshes the GUI
91           void SetNonVisibleAttributes(const std::vector<std::string>& notShown, int level);
92
93           ///Creates a new listctrl
94           void CreateCtrl(std::vector<std::string>& notShown, int nlevel);
95   
96           ///Returns true if the attribute passed as a parameter is visible or not
97           bool IsAttributeVisible(const std::string& val, int level);
98       
99       /// Actual processing of item selection/deselection 
100       /// Called by OnItemSelected and OnItemDeSelected
101       //      void ProcessItem
102     private:
103                 wxBoxSizer      *msizer;
104       /// The struct holding the data for one level
105       /// Holds the wx control and other data
106       /// such as the vector of attribute keys corresponding to the columns
107       struct LevelType
108       {
109         // The List Control
110         wxListCtrl* wxCtrl;
111         wxSplitterWindow* wxSplitter;
112         std::vector<std::string> key;
113         // The vector of currently selected nodes of the level
114         std::vector<tree::Node*> Selected;
115         // True iff the vector Selected is up to date
116         bool SelectedUpToDate;
117         // The column used for sorting
118         unsigned int SortColumn;
119         ///Boolean that defines the direction of the sort
120         ///True is ascending order and false is descending
121         bool SortAscending;
122         //The vector of not shown attributes
123         std::vector<std::string> notShownAtts; 
124       };
125       /// The vector of levels : one for each level of the tree      
126       std::vector<LevelType> mLevelList;
127       
128       /// return the wxListCtrl of one level
129       wxListCtrl* GetCtrl(int l) { return mLevelList[l].wxCtrl; }
130       /// return the wxSplitter of one level
131       wxSplitterWindow* GetSplitter(int l) { return mLevelList[l].wxSplitter; }
132       //Returns the maximum number of levels
133       int GetNumberOfLevels(){ return mLevelList.size(); }
134       /// Gets the user selected data from the level passed as a parameter
135       /// Updates the vector if necessary
136       const std::vector<tree::Node*>& GetSelected(int level);
137       /// Set the bool SelectedUpToDate for level l
138       void SetSelectedUpToDate(int l, bool v) { mLevelList[l].SelectedUpToDate = v; }
139       /// Get the bool SelectedUpToDate for level l
140       bool GetSelectedUpToDate(int l) { return mLevelList[l].SelectedUpToDate; }
141        ///Validates the selected images
142       void ValidateSelectedImages(bool isSelection);   
143       ///Gets selected filenames
144       void GetSelectedAsString(std::vector<std::string>&s);
145           ///Gets the filenames of the given nodes and returns them on the given vector. Is recursive.
146           void GetFilenamesAsString(const std::vector<tree::Node*>& nodes, std::vector<std::string>&s);
147       /// Gets the next nodes on the list, be it up(true) or down(false).
148       void GetNodes(std::vector<tree::Node*>& nodes, bool direction);
149       /// Updates the view of a level given the selected items of upper level
150       /// Recursive method
151       virtual void RecursiveUpdateLevel( int );
152       ///Selects all the elements of a level 
153       void SelectAll(int level);
154       ///UnSelects all the elements of a level 
155       void UnSelectAll(int level);
156
157           void OnKeyDown(wxListEvent &event);
158       /// Sorts the level
159       void SortLevel(int level);
160       
161       /// Currently Selected Column
162       int mColumnSelected;
163       ///The last selected item on the list (left click)
164       long mLastSelected;
165
166           ///The last selected item on the list (right click)
167           long mLastRightSelected;
168
169           ///The last selected level (by right click)
170           int mLastRightLevel;
171       ///The color map
172       typedef std::map<tree::Node*,wxColour> ColorMap;
173       typedef std::pair<tree::Node*,wxColour> NodeColorPair;
174       ColorMap mColorMap;
175       ///Initial color palette
176       std::vector<std::string> mColorPalette;
177
178       wxMenu* menu;
179           
180       wxObject* senderCtrl;
181       int mAscendingID;
182       int mDescendingID;
183       int mFilterID;
184       unsigned int mLastLevel;
185       
186           wxMenu* menuItem;
187           int mAnonymizingID;
188           int mLocalCopyID;
189           int mEditFieldID;
190           int mDumpID;
191           
192       // If set to true then OnSelectedChanged returns immediately.
193       // Used to do avoid useless process during multiple selections 
194       // or sorting
195       bool mIgnoreSelectedChanged;
196
197       DECLARE_EVENT_TABLE()
198     };
199     // EO class WxTreeView
200     //=====================================================================
201
202         class RemoveAlertDlg : public wxDialog
203         {
204         public:
205                 RemoveAlertDlg(wxWindow *parent, 
206                                                wxString title,    
207                                                    const wxSize& size);
208                 ~RemoveAlertDlg();
209
210                 bool isChecked();
211
212         private :
213                 void onCheck(wxCommandEvent &Event);
214                 bool mSave;
215                 wxCheckBox *mcheck;
216
217         };
218
219
220 } // EO namespace creaImageIO
221
222
223 #endif // USE_WIDGETS
224 // EOF
225 #endif