Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/med.git] / src / MEDCalculator / MEDCalculatorBrowserMesh.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #include "MEDCalculatorBrowserMesh.hxx"
20
21 #include <sstream>
22
23 using namespace ParaMEDMEM;
24
25 //  Default constructor
26 MEDCalculatorBrowserMesh::MEDCalculatorBrowserMesh() : _selection(false)
27 {
28
29 }
30
31 //  Destructor
32 MEDCalculatorBrowserMesh::~MEDCalculatorBrowserMesh()
33 {
34 }
35
36 MEDCalculatorBrowserMesh::MEDCalculatorBrowserMesh(const char *mname) : _name(mname), _selection(false)
37 {
38 }
39
40 //  str method
41 //  Construct a std::string to print mesh, using std::cout for example
42 //  Put x or o for selected or not
43 //  Add Mesh meshname
44 //  Return a std::string
45 std::string MEDCalculatorBrowserMesh::str()
46 {
47   std::ostringstream res;
48   _selection?res<<"x ":res<<"o ";
49   res<<"Mesh "<<_name;
50   return res.str();
51 }
52
53 //  Select this mesh setting selection flag to true
54 void MEDCalculatorBrowserMesh::select()
55 {
56   _selection = true;
57 }
58
59 //  Unselect this mesh setting selection flag to false
60 void MEDCalculatorBrowserMesh::unselect()
61 {
62   _selection = false;
63 }
64
65 //  Return if this mesh is selected or not
66 bool MEDCalculatorBrowserMesh::isSelected()
67 {
68   return _selection;
69 }
70
71 //  Return the mesh name
72 const std::string& MEDCalculatorBrowserMesh::getName() const
73 {
74   return _name;
75 }
76
77 //  Return if the mesh name is equal to input or not, usefull for std::find for example
78 bool MEDCalculatorBrowserMesh::operator==(const std::string& nm)
79 {
80   return _name==nm;
81 }