Salome HOME
54d160f549e5d2f6f2077f1a1360d30897e6f8eb
[modules/gui.git] / src / SALOME_PYQT / SALOME_PYQT_GUILight / SALOME_PYQT_DataModelLight.h
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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
20 //  Author : Roman NIKOLAEV, Open CASCADE S.A.S. (roman.nikolaev@opencascade.com)
21 //  Date   : 22/06/2007
22 //
23 #ifndef SALOME_PYQT_DATAMODELLIGHT_H
24 #define SALOME_PYQT_DATAMODELLIGHT_H
25
26 #include "SALOME_PYQT_GUILight.h"
27 #include <LightApp_DataModel.h>
28
29 #include <CAM_Module.h>
30 #include "SALOME_PYQT_DataObjectLight.h"
31
32 class SALOME_PYQT_LIGHT_EXPORT SALOME_PYQT_DataModelLight : public LightApp_DataModel
33 {
34   Q_OBJECT
35
36 public:
37   SALOME_PYQT_DataModelLight( CAM_Module* theModule );
38   virtual ~SALOME_PYQT_DataModelLight();
39   
40   virtual bool         open   ( const QString&, CAM_Study*, QStringList );
41   virtual bool         save   ( QStringList& );
42   virtual bool         saveAs ( const QString&, CAM_Study*, QStringList& );
43   virtual bool         close  ();
44   virtual bool         create ( CAM_Study* );
45   virtual bool         dumpPython( const QString&,
46                                    CAM_Study*,
47                                    bool,
48                                    QStringList& );
49   
50   virtual bool         isModified () const;
51   void                 setModified( bool );
52   
53   virtual void         update ( LightApp_DataObject* = 0, LightApp_Study* = 0 );
54
55   CAM_DataObject*      getRoot();
56
57  private:
58   QString              myFileName;
59   QString              myStudyURL;
60   bool                 myModified;
61 };
62
63 #endif // SALOME_PYQT_DATAMODELLIGHT_H