]> 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
36 bool modelCDMIProjectTreeNode::CompareNodeItem(const modelCDMIProjectTreeNode& x, const modelCDMIProjectTreeNode& y)
37 {
38   bool returnValue;
39   bool noWinner = true;
40   unsigned int i = 0;
41   std::string xName = x.GetName();
42   std::string yName = y.GetName();
43   unsigned char xType = x.GetType();
44   unsigned char yType = y.GetType();
45
46   while ((i < xName.length()) && (i < yName.length()))
47   {
48     if (tolower (xName[i]) < tolower (yName[i]))
49     {
50       noWinner = false;
51       returnValue = true;
52       break;
53     }
54     else if (tolower (xName[i]) > tolower (yName[i]))
55     {
56       noWinner = false;
57       returnValue = false;
58       break;
59     }
60     i++;
61   }
62
63   if(noWinner)
64   {
65     if (xName.length() < yName.length())
66       returnValue = true;
67     else
68       returnValue = false;
69   }
70
71   if(xType != yType)
72   {
73     if(xType == DT_DIR)
74       returnValue = true;
75     else
76       returnValue = false;
77   }
78
79   return returnValue;
80 }
81
82 const wxTreeItemId& modelCDMIProjectTreeNode::GetId() const
83 {
84   return this->id;
85 }
86
87 const std::string& modelCDMIProjectTreeNode::GetPath() const
88 {
89   return this->path;
90 }
91
92 const std::string& modelCDMIProjectTreeNode::GetName() const
93 {
94   return this->name;
95 }
96
97 const unsigned char& modelCDMIProjectTreeNode::GetType() const
98 {
99   return this->type;
100 }
101
102 const int& modelCDMIProjectTreeNode::GetLevel() const
103 {
104   return this->level;
105 }
106
107 const std::vector<modelCDMIProjectTreeNode*>& modelCDMIProjectTreeNode::GetChildren() const
108 {
109   return this->children;
110 }
111
112 void modelCDMIProjectTreeNode::SetId(const wxTreeItemId& id)
113 {
114   this->id = id;
115 }
116
117 void modelCDMIProjectTreeNode::SetChildren(
118     const std::vector<modelCDMIProjectTreeNode*>& children)
119 {
120   this->children.clear();
121   this->children = children;
122 }
123
124 const bool modelCDMIProjectTreeNode::Refresh(std::string*& result)
125 {
126   //TODO: implement method
127   return false;
128 }
129
130 const bool modelCDMIProjectTreeNode::OpenInFileExplorer(std::string*& result) const
131 {
132   //TODO: implement method
133   return false;
134 }