Salome HOME
a90d0e5c5079959b5c5caba81b4accede99a8550
[modules/gui.git] / src / CAM / CAM_Study.h
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 #ifndef CAM_STUDY_H
23 #define CAM_STUDY_H
24
25 #include "CAM.h"
26
27 #include <SUIT_Study.h>
28 #include <QList>
29
30 class CAM_DataModel;
31
32 #ifdef WIN32
33 #pragma warning( disable:4251 )
34 #endif
35
36 class CAM_EXPORT CAM_Study : public SUIT_Study
37 {
38   Q_OBJECT
39
40 public:
41   typedef QList<CAM_DataModel*> ModelList;
42
43 public:
44   CAM_Study( SUIT_Application* );
45   virtual ~CAM_Study();
46
47   virtual void closeDocument( bool permanently = true );
48
49   bool         appendDataModel( const CAM_DataModel* );
50   virtual bool insertDataModel( const CAM_DataModel*, const int = -1 );
51   bool         insertDataModel( const CAM_DataModel*, const CAM_DataModel* );
52
53   virtual bool removeDataModel( const CAM_DataModel* );
54
55   bool         containsDataModel( const CAM_DataModel* ) const;
56
57   void         dataModels( ModelList& ) const;
58
59 protected:
60   virtual void dataModelInserted( const CAM_DataModel* );
61   virtual bool openDataModel( const QString&, CAM_DataModel* );
62   virtual bool saveDataModel( const QString&, CAM_DataModel* );
63
64 protected slots:
65   virtual void updateModelRoot( const CAM_DataModel* );
66
67 private:
68   ModelList    myDataModels;   //!< data models list
69 };
70
71 #ifdef WIN32
72 #pragma warning( default:4251 )
73 #endif
74
75 #endif