Salome HOME
CCAR: add a check to see if the CORBA object exists (non_existent())
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeStudyProperties.hxx
1 //  Copyright (C) 2007-2008  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 //  File   : SALOMEDSImpl_AttributeStudyProperties.hxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #ifndef _SALOMEDSImpl_AttributeStudyProperties_HeaderFile
27 #define _SALOMEDSImpl_AttributeStudyProperties_HeaderFile
28
29 #include "SALOMEDSImpl_Defines.hxx"
30 #include "DF_Attribute.hxx"
31 #include "DF_Label.hxx"
32 #include <string>
33 #include <vector>
34 #include "SALOMEDSImpl_GenericAttribute.hxx"
35
36 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_AttributeStudyProperties : public SALOMEDSImpl_GenericAttribute
37 {
38 public:
39   SALOMEDSImpl_AttributeStudyProperties();
40   ~SALOMEDSImpl_AttributeStudyProperties() {}
41
42   static const std::string& GetID();
43   const std::string&    ID() const;
44
45   static  SALOMEDSImpl_AttributeStudyProperties* Set(const DF_Label& label);
46
47   void Init();
48
49   virtual std::string Save();
50   virtual void Load(const std::string&);
51
52   void SetModification(const std::string& theUserName,
53     const int          theMinute,
54     const int          theHour,
55     const int          theDay,
56     const int          theMonth,
57     const int          theYear);
58   void GetModifications(std::vector<std::string>& theUserNames,
59     std::vector<int>&         theMinutes,
60     std::vector<int>&         theHours,
61     std::vector<int>&         theDays,
62     std::vector<int>&         theMonths,
63     std::vector<int>&         theYears) const;
64
65   std::string GetCreatorName() const;
66   bool GetCreationDate(int&           theMinute,
67     int&           theHour,
68     int&           theDay,
69     int&           theMonth,
70     int&           theYear) const;
71
72   void ChangeCreatorName(const std::string& theUserName);
73
74   void SetCreationMode(const int theMode);
75   int GetCreationMode() const;
76
77   void SetModified(const int theModified);
78   bool IsModified() const;
79   int GetModified() const;
80
81   void SetLocked(const bool theLocked);
82   bool IsLocked() const;
83   bool IsLockChanged(const bool theErase);
84
85   void Restore(DF_Attribute* with);
86   DF_Attribute* NewEmpty() const;
87   void Paste(DF_Attribute* into);
88
89 private:
90
91   std::vector<std::string> myUserName;
92   std::vector<int> myMinute;
93   std::vector<int> myHour;
94   std::vector<int> myDay;
95   std::vector<int> myMonth;
96   std::vector<int> myYear;
97   int myMode;
98   int myModified;
99   bool myLocked;
100   bool myLockChanged;
101
102 };
103
104 #endif