]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMProjectsTreeCtrl.cxx
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / wxCDMProjectsTreeCtrl.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Sant�)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ 
26  */
27
28
29 /*
30  * wxCreaDevManagerTreeCtrl.cpp
31  *
32  *  Created on: 19/10/2012
33  *      Author: Daniel Felipe Gonzalez Obando
34  */
35
36 #include "wxCDMProjectsTreeCtrl.h"
37
38 #include <vector>
39 #include <sstream>
40
41 #include <wx/imaglist.h>
42
43 #include "creaDevManagerIds.h"
44 #include "images/AIcon20.xpm"
45 #include "images/ApIcon20.xpm"
46 #include "images/BBIcon20.xpm"
47 #include "images/BBSIcon20.xpm"
48 #include "images/BBGIcon20.xpm"
49 #include "images/CIcon20.xpm"
50 #include "images/CFIcon20.xpm"
51 #include "images/CMIcon20.xpm"
52 #include "images/FdIcon20.xpm"
53 #include "images/FlIcon20.xpm"
54 #include "images/LbIcon20.xpm"
55 #include "images/LIcon20.xpm"
56 #include "images/PrIcon20.xpm"
57 #include "images/PkIcon20.xpm"
58
59 wxCDMProjectsTreeCtrl::wxCDMProjectsTreeCtrl(
60     wxWindow *parent,
61     wxWindowID id,
62     const wxPoint &pos,
63     const wxSize &size,
64     long style,
65     const wxValidator &validator,
66     const wxString &name
67 )
68 {
69   wxCDMProjectsTreeCtrl::Create(parent, id, pos, size, style, validator, name);
70 }
71
72 wxCDMProjectsTreeCtrl::~wxCDMProjectsTreeCtrl()
73 {
74 }
75
76 bool wxCDMProjectsTreeCtrl::Create(
77     wxWindow* parent,
78     wxWindowID id,
79     const wxPoint &pos,
80     const wxSize &size,
81     long style,
82     const wxValidator &validator,
83     const wxString &name
84 )
85 {
86   wxTreeCtrl::Create (parent, id, pos, size, style, validator, name);
87
88   this->DeleteAllItems();
89
90   wxImageList* images = new wxImageList(20, 20, true);
91   this->ID_AIcon = images->Add(wxIcon(AIcon20));
92   this->ID_ApIcon = images->Add(wxIcon(ApIcon20));
93   this->ID_BBIcon = images->Add(wxIcon(BBIcon20));
94   this->ID_BBGIcon = images->Add(wxIcon(BBGIcon20));
95   this->ID_BBSIcon = images->Add(wxIcon(BBSIcon20));
96   this->ID_Cicon = images->Add(wxIcon(CIcon20));
97   this->ID_CMIcon = images->Add(wxIcon(CMIcon20));
98   this->ID_FdIcon = images->Add(wxIcon(FdIcon20));
99   this->ID_FlIcon = images->Add(wxIcon(FlIcon20));
100   this->ID_CFIcon = images->Add(wxIcon(CFIcon20));
101   this->ID_LbIcon = images->Add(wxIcon(LbIcon20));
102   this->ID_LIcon = images->Add(wxIcon(LIcon20));
103   this->ID_PrIcon = images->Add(wxIcon(PrIcon20));
104   this->ID_PkIcon = images->Add(wxIcon(PkIcon20));
105   this->AssignImageList(images);
106
107   wxTreeItemId rootIndex = this->AddRoot(wxT("No Open Project"), this->ID_Cicon, this->ID_Cicon);
108
109   this->Update();
110   return TRUE;
111 }
112
113 void wxCDMProjectsTreeCtrl::BuildTree(std::map< wxCDMTreeItemId, modelCDMIProjectTreeNode* >& modelElements, modelCDMProject* projectTree)
114 {
115   this->Unselect();
116   std::cout << "building tree" << std::endl;
117   this->DeleteAllItems();
118   modelElements.clear();
119   if(projectTree != NULL)
120     {
121       projectTree->SetId(this->AddRoot(crea::std2wx(projectTree->GetName()), this->ID_PrIcon));
122           
123           modelElements[projectTree->GetId()] = projectTree;
124
125       std::cout << "Building TreeCtrl for " << projectTree->GetName() << std::endl;
126       this->BuildTree(projectTree->GetChildren(), modelElements, projectTree->GetId());
127
128       this->Expand(projectTree->GetId().GetWxId());
129
130       this->Update();
131     }
132   else
133     {
134       wxTreeItemId rootIndex = this-> AddRoot(_("No Open Project"), this->ID_Cicon);
135     }
136 }
137
138 void wxCDMProjectsTreeCtrl::BuildTree(const std::vector<modelCDMIProjectTreeNode*>& treeNodes, std::map< wxCDMTreeItemId, modelCDMIProjectTreeNode* >& modelElements, const wxCDMTreeItemId& parent)
139 {
140   for (int i = 0; i < (int)(treeNodes.size()); i++)
141     {
142       //cout << projectsTree[i].GetName() << endl;
143       if(treeNodes[i] != NULL)
144         {
145           int idIcon = GetIconId(treeNodes[i]);
146           wxString nodeName((treeNodes[i]->GetName()).c_str(), wxConvUTF8);
147           treeNodes[i]->SetId(wxCDMTreeItemId(this->AppendItem(parent.GetWxId(), nodeName, idIcon)));
148           
149                   modelElements[treeNodes[i]->GetId()] = treeNodes[i];
150
151           std::vector<modelCDMIProjectTreeNode*> innerChildren = treeNodes[i]->GetChildren();
152           if(innerChildren.size() > 0)
153             {
154               this->BuildTree(innerChildren, modelElements, treeNodes[i]->GetId());
155             }
156         }
157
158     }
159 }
160
161 int wxCDMProjectsTreeCtrl::GetIconId(modelCDMIProjectTreeNode* node)
162 {
163   modelCDMIProjectTreeNode* element = dynamic_cast<modelCDMProject*>(node);
164   if(element != NULL)
165     {
166       return this->ID_PrIcon;
167     }
168   else
169     {
170       element = dynamic_cast<modelCDMAppli*>(node);
171       if(element != NULL)
172         {
173           return this->ID_ApIcon;
174         }
175       else
176         {
177           element = dynamic_cast<modelCDMApplication*>(node);
178           if(element != NULL)
179             {
180               return this->ID_AIcon;
181             }
182           else
183             {
184               element = dynamic_cast<modelCDMLib*>(node);
185               if(element != NULL)
186                 {
187                   return this->ID_LbIcon;
188                 }
189               else
190                 {
191                   element = dynamic_cast<modelCDMLibrary*>(node);
192                   if(element != NULL)
193                     {
194                       return this->ID_LIcon;
195                     }
196                   else
197                     {
198                       element = dynamic_cast<modelCDMPackage*>(node);
199                       if(element != NULL)
200                         {
201                           return this->ID_PkIcon;
202                         }
203                       else
204                         {
205                           element = dynamic_cast<modelCDMBlackBox*>(node);
206                           if(element != NULL)
207                             {
208                               return this->ID_BBIcon;
209                             }
210                           else
211                             {
212                               element = dynamic_cast<modelCDMCMakeListsFile*>(node);
213                               if(element != NULL)
214                                 {
215                                   return this->ID_CMIcon;
216                                 }
217                               else
218                                 {
219                                   element = dynamic_cast<modelCDMCodeFile*>(node);
220                                   if(element != NULL)
221                                     {
222                                       return this->ID_CFIcon;
223                                     }
224                                   else
225                                     {
226                                       element = dynamic_cast<modelCDMBBSFile*>(node);
227                                       if(element != NULL)
228                                         {
229                                           return this->ID_BBSIcon;
230                                         }
231                                       else
232                                         {
233                                           element = dynamic_cast<modelCDMBBGFile*>(node);
234                                           if(element != NULL)
235                                             {
236                                               return this->ID_BBGIcon;
237                                             }
238                                           else
239                                             {
240                                               element = dynamic_cast<modelCDMFolder*>(node);
241                                               if(element != NULL)
242                                                 {
243                                                   return this->ID_FdIcon;
244                                                 }
245                                               else
246                                                 {
247                                                   element = dynamic_cast<modelCDMFile*>(node);
248                                                   if(element != NULL)
249                                                     {
250                                                       return this->ID_FlIcon;
251                                                     }
252                                                   else
253                                                     {
254                                                       return this->ID_Cicon;
255                                                     }
256                                                 }
257                                             }
258                                         }
259                                     }
260                                 }
261                             }
262                         }
263                     }
264                 }
265             }
266         }
267     }
268 }