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