Version: 9.12.0
SALOME_PYQT_DataModelLight.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 CEA, EDF, 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>
31 
33 {
34  Q_OBJECT
35 
36 public:
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
#define SALOME_PYQT_LIGHT_EXPORT
Definition: SALOME_PYQT_GUILight.h:38
virtual bool create(CAM_Study *)
Create empty data model.
Definition: CAM_DataModel.cxx:202
CAM-based implementation of the data object.
Definition: CAM_DataObject.h:34
Base implementation of the module in the CAM application architecture.
Definition: CAM_Module.h:53
Represents document object in the CAM application architecture.
Definition: CAM_Study.h:38
Definition: LightApp_DataModel.h:47
virtual bool save(QStringList &)
Definition: LightApp_DataModel.cxx:67
virtual bool dumpPython(const QString &, CAM_Study *, bool, QStringList &)
Definition: LightApp_DataModel.cxx:86
virtual bool isModified() const
Definition: LightApp_DataModel.cxx:179
virtual void update(LightApp_DataObject *=0, LightApp_Study *=0)
Definition: LightApp_DataModel.cxx:120
virtual bool close()
Definition: LightApp_DataModel.cxx:94
virtual bool open(const QString &, CAM_Study *, QStringList)
Definition: LightApp_DataModel.cxx:58
virtual bool saveAs(const QString &, CAM_Study *, QStringList &)
Definition: LightApp_DataModel.cxx:76
Base data object class to build the data model for all the SALOME modules.
Definition: LightApp_DataObject.h:36
Definition: LightApp_Study.h:67
Definition: SALOME_PYQT_DataModelLight.h:33
bool myModified
Definition: SALOME_PYQT_DataModelLight.h:60
QString myFileName
Definition: SALOME_PYQT_DataModelLight.h:58
QString myStudyURL
Definition: SALOME_PYQT_DataModelLight.h:59