]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMIProjectTreeNode.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMIProjectTreeNode.cpp
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  * modelCDMIProjectTreeNode.cpp
30  *
31  *  Created on: Nov 26, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34 #include "modelCDMIProjectTreeNode.h"
35 #include <algorithm>
36
37 #include "wx/dir.h"
38
39 bool modelCDMIProjectTreeNode::CompareNodeItem(const modelCDMIProjectTreeNode* x, const modelCDMIProjectTreeNode* y)
40 {
41   bool returnValue;
42   bool noWinner = true;
43   unsigned int i = 0;
44   std::string xName = x->GetName();
45   std::string yName = y->GetName();
46   unsigned char xType = x->GetType();
47   unsigned char yType = y->GetType();
48
49   while ((i < xName.length()) && (i < yName.length()))
50   {
51     if (tolower (xName[i]) < tolower (yName[i]))
52     {
53       noWinner = false;
54       returnValue = true;
55       break;
56     }
57     else if (tolower (xName[i]) > tolower (yName[i]))
58     {
59       noWinner = false;
60       returnValue = false;
61       break;
62     }
63     i++;
64   }
65
66   if(noWinner)
67   {
68     if (xName.length() < yName.length())
69       returnValue = true;
70     else
71       returnValue = false;
72   }
73
74   if(xType != yType)
75   {
76     if(xType == wxDIR_DIRS)
77       returnValue = true;
78     else
79       returnValue = false;
80   }
81
82   return returnValue;
83 }
84
85 const wxTreeItemId& modelCDMIProjectTreeNode::GetId() const
86 {
87   return this->id;
88 }
89
90 const std::string& modelCDMIProjectTreeNode::GetPath() const
91 {
92   return this->path;
93 }
94
95 const std::string& modelCDMIProjectTreeNode::GetName() const
96 {
97   return this->name;
98 }
99
100 const unsigned char& modelCDMIProjectTreeNode::GetType() const
101 {
102   return this->type;
103 }
104
105 const int& modelCDMIProjectTreeNode::GetLevel() const
106 {
107   return this->level;
108 }
109
110 const std::vector<modelCDMIProjectTreeNode*>& modelCDMIProjectTreeNode::GetChildren() const
111 {
112   return this->children;
113 }
114
115 void modelCDMIProjectTreeNode::SetId(const wxTreeItemId& id)
116 {
117   this->id = id;
118 }
119
120 void modelCDMIProjectTreeNode::SortChildren()
121 {
122   std::sort(this->children.begin(), this->children.end(), CompareNodeItem);
123 }
124
125 void modelCDMIProjectTreeNode::SetChildren(
126     const std::vector<modelCDMIProjectTreeNode*>& children)
127 {
128   this->children.clear();
129   this->children = children;
130 }
131
132 const bool modelCDMIProjectTreeNode::Refresh(std::string*& result)
133 {
134   //TODO: implement method
135   return false;
136 }
137
138 const int& modelCDMIProjectTreeNode::GetLength()
139 {
140   return this->length;
141 }
142
143 const bool modelCDMIProjectTreeNode::OpenInFileExplorer(std::string*& result) const
144 {
145   //TODO: implement method
146   return false;
147 }