Salome HOME
53b2f701c48bb76d8107f1207501c23a37e27c4e
[modules/gui.git] / src / SalomeApp / SalomeApp_DataModel.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 // File:      SalomeApp_DataModel.h
23 // Created:   10/25/2004 10:32:33 AM
24 // Author:    Sergey LITONIN
25 //
26 #ifndef SALOMEAPP_DATAMODEL_H
27 #define SALOMEAPP_DATAMODEL_H
28
29 #if _MSC_VER > 1000
30 #pragma once
31 #endif // _MSC_VER > 1000
32
33 #include "SalomeApp.h"
34 #include "LightApp_DataModel.h"
35
36 #include "SALOMEDSClient.hxx"
37
38 class SalomeApp_Module;
39 class SalomeApp_Study;
40 class SUIT_DataObject;
41 class LightApp_DataObject;
42
43 //   Class       : SalomeApp_DataModel
44 ///  Description : Base class of data model
45 class SALOMEAPP_EXPORT SalomeApp_DataModel : public LightApp_DataModel
46 {
47   Q_OBJECT
48
49 public:
50   static SUIT_DataObject*             synchronize( const _PTR( SComponent )&, SalomeApp_Study* );
51
52   SalomeApp_DataModel ( CAM_Module* theModule );
53   virtual ~SalomeApp_DataModel();
54
55   virtual bool                        open( const QString&, CAM_Study*, QStringList );
56   virtual bool                        create( CAM_Study* );
57   virtual void                        update( LightApp_DataObject* = 0, LightApp_Study* = 0 );
58
59   QString                             getRootEntry( SalomeApp_Study* ) const;
60   SalomeApp_Module*                   getModule() const;
61
62 protected:
63   SalomeApp_Study*                    getStudy() const;
64   virtual void                        updateTree( const _PTR( SComponent )&, SalomeApp_Study* );
65 };
66
67
68 #endif