Salome HOME
Merge from V6_main_20120808 08Aug12
[samples/light.git] / src / LIGHTGUI / LIGHTGUI_DataModel.h
1 // Copyright (C) 2005-2012  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.
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 // LIGHT : sample (no-corba-engine) SALOME module
21 // File   : LIGHTGUI_DataModel.h
22 // Author : Julia DOROVSKIKH
23 //
24 #ifndef LIGHTGUI_DATAMODEL_H
25 #define LIGHTGUI_DATAMODEL_H
26
27 #include <LightApp_DataModel.h>
28
29 class CAM_Module;
30 class LightApp_Study;
31 class LightApp_DataObject;
32 class LIGHTGUI_DataObject;
33
34 class LIGHTGUI_DataModel : public LightApp_DataModel
35 {
36   Q_OBJECT
37
38 public:
39   LIGHTGUI_DataModel( CAM_Module* theModule );
40   virtual ~LIGHTGUI_DataModel();
41
42   virtual bool         open( const QString&, CAM_Study*, QStringList );
43   virtual bool         save( QStringList& );
44   virtual bool         saveAs( const QString&, CAM_Study*, QStringList& );
45   virtual bool         close();
46   virtual bool         create( CAM_Study* );
47
48   virtual bool         isModified() const;
49   virtual bool         isSaved() const;
50
51   virtual void         update( LightApp_DataObject* = 0, LightApp_Study* = 0 );
52
53   bool                 loadFile( const QString&, CAM_Study* = 0 );
54   bool                 dumpFile( const QString& = QString() );
55   QString              fileName() const;
56
57   QString              getLineText( const int ) const;
58   bool                 setLineText( const int, const QString& );
59   bool                 insertLineBefore( const int, const QString& );
60   bool                 deleteTextLine( const int );
61
62   void                 clearAll();
63
64   int                  generateId();
65
66   static int           id( const QString& );
67   static QString       entry( const int );
68
69   int                  lineNb( const QString& );
70   int                  lineNb( const int );
71
72   QList<int>           getIds() const;
73
74 private:
75   void                 buildTree( SUIT_DataObject*, const QStringList& );
76   LIGHTGUI_DataObject* findObject( const int ) const;
77
78 private:
79   QString              myFileName;
80   QString              myStudyURL;
81   int                  myMaxId;
82 };
83
84 #endif // LIGHTGUI_DATAMODEL_H