Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / gui / YACSGui_DataModel.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA 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 #ifndef YACSGui_DataModel_HeaderFile
20 #define YACSGui_DataModel_HeaderFile
21
22 #include <Proc.hxx>
23
24 #include <LightApp_DataModel.h>
25
26 #include <map>
27
28 class YACSGui_DataModel : public LightApp_DataModel
29 {
30
31 public:
32   YACSGui_DataModel(CAM_Module* theModule);
33   virtual ~YACSGui_DataModel();
34
35   void add(YACS::ENGINE::Proc*, bool);
36   void remove(YACS::ENGINE::Proc*);
37
38   void addData(YACS::ENGINE::Proc*);
39
40   bool isEditable(YACS::ENGINE::Proc*);
41
42 protected:
43   virtual void build();
44
45 private:
46   typedef std::map<YACS::ENGINE::Proc*, bool> ProcMap;
47   ProcMap myProcs;
48
49   std::list<YACS::ENGINE::Proc*> myProcData;
50 };
51
52 #endif