Salome HOME
ADD a end user module (services.py) to help the manipulation of SALOME KERNEL service...
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeStudyProperties.hxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : SALOMEDSImpl_AttributeStudyProperties.hxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #ifndef _SALOMEDSImpl_AttributeStudyProperties_HeaderFile
28 #define _SALOMEDSImpl_AttributeStudyProperties_HeaderFile
29
30 #include "SALOMEDSImpl_Defines.hxx"
31 #include "DF_Attribute.hxx"
32 #include "DF_Label.hxx"
33 #include <string>
34 #include <vector>
35 #include "SALOMEDSImpl_GenericAttribute.hxx"
36
37 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_AttributeStudyProperties : public SALOMEDSImpl_GenericAttribute
38 {
39 public:
40   SALOMEDSImpl_AttributeStudyProperties();
41   ~SALOMEDSImpl_AttributeStudyProperties() {}
42
43   static const std::string& GetID();
44   const std::string&    ID() const;
45
46   static  SALOMEDSImpl_AttributeStudyProperties* Set(const DF_Label& label);
47
48   void Init();
49
50   virtual std::string Save();
51   virtual void Load(const std::string&);
52
53   void SetModification(const std::string& theUserName,
54     const int          theMinute,
55     const int          theHour,
56     const int          theDay,
57     const int          theMonth,
58     const int          theYear);
59   void GetModifications(std::vector<std::string>& theUserNames,
60     std::vector<int>&         theMinutes,
61     std::vector<int>&         theHours,
62     std::vector<int>&         theDays,
63     std::vector<int>&         theMonths,
64     std::vector<int>&         theYears) const;
65
66   std::string GetCreatorName() const;
67   bool GetCreationDate(int&           theMinute,
68     int&           theHour,
69     int&           theDay,
70     int&           theMonth,
71     int&           theYear) const;
72
73   void ChangeCreatorName(const std::string& theUserName);
74
75   void SetUnits(const std::string& theUnits);
76   std::string GetUnits();
77
78   void SetComment(const std::string& theComment);
79   std::string GetComment();
80
81   void SetCreationMode(const int theMode);
82   int GetCreationMode() const;
83
84   void SetModified(const int theModified);
85   bool IsModified() const;
86   int GetModified() const;
87
88   void SetLocked(const bool theLocked);
89   bool IsLocked() const;
90   bool IsLockChanged(const bool theErase);
91
92   void Restore(DF_Attribute* with);
93   DF_Attribute* NewEmpty() const;
94   void Paste(DF_Attribute* into);
95
96 private:
97
98   std::vector<std::string> myUserName;
99   std::vector<int> myMinute;
100   std::vector<int> myHour;
101   std::vector<int> myDay;
102   std::vector<int> myMonth;
103   std::vector<int> myYear;
104   std::string      myUnits;
105   std::string      myComment;
106   int myMode;
107   int myModified;
108   bool myLocked;
109   bool myLockChanged;
110
111 };
112
113 #endif