Version: 9.12.0
SALOMEDS_AttributeTableOfString.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 CEA, EDF, 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, or (at your option) any later version.
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 : SALOMEDS_AttributeTableOfString.hxx
24 // Author : Sergey RUIN
25 // Module : SALOME
26 //
27 #ifndef SALOMEDS_AttributeTableOfString_HeaderFile
28 #define SALOMEDS_AttributeTableOfString_HeaderFile
29 
33 
34 // IDL headers
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SALOMEDS)
37 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
38 
39 #include <vector>
40 
42 {
43 public:
45  SALOMEDS_AttributeTableOfString(SALOMEDS::AttributeTableOfString_ptr theAttr);
47 
48  virtual void SetTitle(const std::string& theTitle);
49  virtual std::string GetTitle();
50  virtual void SetRowTitle(int theIndex, const std::string& theTitle);
51  virtual std::string GetRowTitle(int theIndex);
52  virtual void SetRowTitles(const std::vector<std::string>& theTitles);
53  virtual std::vector<std::string> GetRowTitles();
54  virtual void SetColumnTitle(int theIndex, const std::string& theTitle);
55  virtual std::string GetColumnTitle(int theIndex);
56  virtual void SetColumnTitles(const std::vector<std::string>& theTitles);
57  virtual std::vector<std::string> GetColumnTitles();
58 
59  virtual void SetRowUnit(int theIndex, const std::string& theUnit);
60  virtual std::string GetRowUnit(int theIndex);
61  virtual void SetRowUnits(const std::vector<std::string>& theUnits);
62  virtual std::vector<std::string> GetRowUnits();
63 
64  virtual int GetNbRows();
65  virtual int GetNbColumns();
66  virtual void AddRow(const std::vector<std::string>& theData);
67  virtual void SetRow(int theRow, const std::vector<std::string>& theData);
68  virtual std::vector<std::string> GetRow(int theRow);
69  virtual void AddColumn(const std::vector<std::string>& theData);
70  virtual void SetColumn(int theColumn, const std::vector<std::string>& theData);
71  virtual std::vector<std::string> GetColumn(int theColumn);
72  virtual void PutValue(const std::string& theValue, int theRow, int theColumn);
73  virtual bool HasValue(int theRow, int theColumn);
74  virtual std::string GetValue(int theRow, int theColumn);
75  virtual void RemoveValue(int theRow, int theColumn);
76 
77  virtual std::vector<int> GetRowSetIndices(int theRow);
78  virtual void SetNbColumns(int theNbColumns);
79 
80  virtual std::vector<int> SortRow(int theRow, SortOrder theOrder, SortPolicy thePolicy);
81  virtual std::vector<int> SortColumn(int theColumn, SortOrder theOrder, SortPolicy thePolicy);
82  virtual std::vector<int> SortByRow(int theRow, SortOrder theOrder, SortPolicy thePolicy);
83  virtual std::vector<int> SortByColumn(int theColumn, SortOrder theOrder, SortPolicy thePolicy);
84  virtual void SwapCells(int theRow1, int theColumn1, int theRow2, int theColumn2);
85  virtual void SwapRows(int theRow1, int theRow2);
86  virtual void SwapColumns(int theColumn1, int theColumn2);
87 };
88 
89 #endif
Definition: SALOMEDSClient_AttributeTableOfString.hxx:36
SortOrder
Definition: SALOMEDSClient_AttributeTable.hxx:34
SortPolicy
Definition: SALOMEDSClient_AttributeTable.hxx:39
Definition: SALOMEDSImpl_AttributeTableOfString.hxx:43
Definition: SALOMEDS_AttributeTableOfString.hxx:42
virtual void SetTitle(const std::string &theTitle)
Definition: SALOMEDS_AttributeTableOfString.cxx:46
virtual bool HasValue(int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfString.cxx:408
virtual int GetNbColumns()
Definition: SALOMEDS_AttributeTableOfString.cxx:258
virtual void SwapRows(int theRow1, int theRow2)
Definition: SALOMEDS_AttributeTableOfString.cxx:599
virtual std::vector< std::string > GetColumn(int theColumn)
Definition: SALOMEDS_AttributeTableOfString.cxx:374
virtual void RemoveValue(int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfString.cxx:437
virtual std::string GetRowUnit(int theIndex)
Definition: SALOMEDS_AttributeTableOfString.cxx:197
virtual void SetRowTitle(int theIndex, const std::string &theTitle)
Definition: SALOMEDS_AttributeTableOfString.cxx:67
SALOMEDS_AttributeTableOfString(SALOMEDSImpl_AttributeTableOfString *theAttr)
Definition: SALOMEDS_AttributeTableOfString.cxx:33
virtual std::vector< std::string > GetRowUnits()
Definition: SALOMEDS_AttributeTableOfString.cxx:231
virtual std::vector< int > SortRow(int theRow, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfString.cxx:479
virtual void SetColumnTitle(int theIndex, const std::string &theTitle)
Definition: SALOMEDS_AttributeTableOfString.cxx:127
virtual std::string GetColumnTitle(int theIndex)
Definition: SALOMEDS_AttributeTableOfString.cxx:137
virtual std::vector< int > SortByColumn(int theColumn, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfString.cxx:557
virtual int GetNbRows()
Definition: SALOMEDS_AttributeTableOfString.cxx:247
virtual std::vector< int > SortByRow(int theRow, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfString.cxx:531
virtual void SetRow(int theRow, const std::vector< std::string > &theData)
Definition: SALOMEDS_AttributeTableOfString.cxx:291
virtual std::string GetValue(int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfString.cxx:419
virtual void SetNbColumns(int theNbColumns)
Definition: SALOMEDS_AttributeTableOfString.cxx:470
virtual std::vector< int > GetRowSetIndices(int theRow)
Definition: SALOMEDS_AttributeTableOfString.cxx:453
virtual void SetRowUnit(int theIndex, const std::string &theUnit)
Definition: SALOMEDS_AttributeTableOfString.cxx:187
~SALOMEDS_AttributeTableOfString()
Definition: SALOMEDS_AttributeTableOfString.cxx:42
virtual void SwapColumns(int theColumn1, int theColumn2)
Definition: SALOMEDS_AttributeTableOfString.cxx:615
virtual void SetRowUnits(const std::vector< std::string > &theUnits)
Definition: SALOMEDS_AttributeTableOfString.cxx:215
virtual void SetRowTitles(const std::vector< std::string > &theTitles)
Definition: SALOMEDS_AttributeTableOfString.cxx:95
virtual void PutValue(const std::string &theValue, int theRow, int theColumn)
Definition: SALOMEDS_AttributeTableOfString.cxx:391
virtual std::vector< int > SortColumn(int theColumn, SortOrder theOrder, SortPolicy thePolicy)
Definition: SALOMEDS_AttributeTableOfString.cxx:505
virtual std::vector< std::string > GetColumnTitles()
Definition: SALOMEDS_AttributeTableOfString.cxx:171
virtual std::string GetRowTitle(int theIndex)
Definition: SALOMEDS_AttributeTableOfString.cxx:77
virtual void SetColumn(int theColumn, const std::vector< std::string > &theData)
Definition: SALOMEDS_AttributeTableOfString.cxx:352
virtual void AddColumn(const std::vector< std::string > &theData)
Definition: SALOMEDS_AttributeTableOfString.cxx:330
virtual void SwapCells(int theRow1, int theColumn1, int theRow2, int theColumn2)
Definition: SALOMEDS_AttributeTableOfString.cxx:583
virtual std::vector< std::string > GetRowTitles()
Definition: SALOMEDS_AttributeTableOfString.cxx:111
virtual std::vector< std::string > GetRow(int theRow)
Definition: SALOMEDS_AttributeTableOfString.cxx:313
virtual void SetColumnTitles(const std::vector< std::string > &theTitles)
Definition: SALOMEDS_AttributeTableOfString.cxx:155
virtual std::string GetTitle()
Definition: SALOMEDS_AttributeTableOfString.cxx:56
virtual void AddRow(const std::vector< std::string > &theData)
Definition: SALOMEDS_AttributeTableOfString.cxx:269
Definition: SALOMEDS_GenericAttribute.hxx:40