Salome HOME
merge from branch BR_V5_DEV
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeTableOfString.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   : SALOMEDS_AttributeTableOfString.hxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #ifndef SALOMEDS_AttributeTableOfString_HeaderFile
27 #define SALOMEDS_AttributeTableOfString_HeaderFile
28
29 #include "SALOMEDSClient_AttributeTableOfString.hxx"
30 #include "SALOMEDS_GenericAttribute.hxx"
31 #include "SALOMEDSImpl_AttributeTableOfString.hxx"
32
33 // IDL headers
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SALOMEDS)
36 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
37
38 #include <vector>
39
40 class SALOMEDS_AttributeTableOfString: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributeTableOfString
41 {
42 public:  
43   SALOMEDS_AttributeTableOfString(SALOMEDSImpl_AttributeTableOfString* theAttr);
44   SALOMEDS_AttributeTableOfString(SALOMEDS::AttributeTableOfString_ptr theAttr);
45   ~SALOMEDS_AttributeTableOfString();
46
47   virtual void SetTitle(const std::string& theTitle);
48   virtual std::string GetTitle();
49   virtual void SetRowTitle(int theIndex, const std::string& theTitle);
50   virtual void SetRowTitles(const std::vector<std::string>& theTitles);
51   virtual std::vector<std::string> GetRowTitles();
52   virtual void SetColumnTitle(int theIndex, const std::string& theTitle);
53   virtual void SetColumnTitles(const std::vector<std::string>& theTitles);
54   virtual std::vector<std::string> GetColumnTitles();
55
56   virtual void SetRowUnit(int theIndex, const std::string& theUnit);
57   virtual void SetRowUnits(const std::vector<std::string>& theUnits);
58   virtual std::vector<std::string> GetRowUnits();
59
60   virtual int GetNbRows();
61   virtual int GetNbColumns();
62   virtual void AddRow(const std::vector<std::string>& theData);
63   virtual void SetRow(int theRow, const std::vector<std::string>& theData);
64   virtual std::vector<std::string> GetRow(int theRow);
65   virtual void AddColumn(const std::vector<std::string>& theData);
66   virtual void SetColumn(int theColumn, const std::vector<std::string>& theData);
67   virtual std::vector<std::string> GetColumn(int theColumn);
68   virtual void PutValue(const std::string& theValue, int theRow, int theColumn);
69   virtual bool HasValue(int theRow, int theColumn);
70   virtual std::string GetValue(int theRow, int theColumn);
71
72   virtual std::vector<int> GetRowSetIndices(int theRow);
73   virtual void SetNbColumns(int theNbColumns);    
74
75 };
76
77 #endif