Salome HOME
e7c0f40a641af4954948bb55db41c34b91e235e6
[modules/gui.git] / src / LightApp / LightApp_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:      LightApp_DataModel.h
23 // Created:   10/25/2004 10:32:33 AM
24 // Author:    Sergey LITONIN
25 //
26 #ifndef LIGHTAPP_DATAMODEL_H
27 #define LIGHTAPP_DATAMODEL_H
28
29 #if _MSC_VER > 1000
30 #pragma once
31 #endif // _MSC_VER > 1000
32
33 #include "LightApp.h"
34 #include "CAM_DataModel.h"
35
36 class LightApp_Module;
37 class LightApp_Study;
38 class LightApp_DataObject;
39 class SUIT_DataBrowser;
40
41 /*!
42   Description : Base class of data model
43 */
44 class LIGHTAPP_EXPORT LightApp_DataModel : public CAM_DataModel
45 {
46   Q_OBJECT
47
48 public:
49                                       LightApp_DataModel ( CAM_Module* theModule );
50   virtual                             ~LightApp_DataModel();
51
52   virtual bool                        open( const QString&, CAM_Study*, QStringList );
53   virtual bool                        save( QStringList& );
54   virtual bool                        saveAs( const QString&, CAM_Study*, QStringList& );
55   virtual bool                        close();
56
57   virtual void                        update( LightApp_DataObject* = 0, LightApp_Study* = 0 );
58
59   virtual bool                        isModified() const;
60   virtual bool                        isSaved()  const;
61
62   LightApp_Module*                    getModule() const;
63
64   int  groupId() const;
65   void registerColumn( SUIT_DataBrowser*, const QString&, const int );
66   void unregisterColumn( SUIT_DataBrowser*, const QString& );
67
68 signals:
69   void                                opened();
70   void                                saved();
71   void                                closed();
72
73 protected:
74   LightApp_Study*                     getStudy() const;
75   virtual void                        build();
76   virtual void                        updateWidgets();
77
78 private:
79   int myGroupId;
80 };
81
82 #endif