1 // Copyright (C) 2005-2021 OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // File : LIGHTGUI_DataModel.h
20 // Author : Julia DOROVSKIKH
22 #ifndef LIGHTGUI_DATAMODEL_H
23 #define LIGHTGUI_DATAMODEL_H
25 #include "LIGHTGUI_Exports.h"
27 #include <LightApp_DataModel.h>
29 class LIGHTGUI_DataObject;
31 class LIGHT_EXPORT LIGHTGUI_DataModel : public LightApp_DataModel
36 LIGHTGUI_DataModel( CAM_Module* theModule );
37 virtual ~LIGHTGUI_DataModel();
39 virtual bool open( const QString&, CAM_Study*, QStringList );
40 virtual bool save( QStringList& );
41 virtual bool saveAs( const QString&, CAM_Study*, QStringList& );
43 virtual bool create( CAM_Study* );
45 virtual bool isModified() const;
46 virtual bool isSaved() const;
48 virtual void update( LightApp_DataObject* = 0, LightApp_Study* = 0 );
50 bool loadFile( const QString&, CAM_Study* = 0 );
51 bool dumpFile( const QString& = QString() );
52 QString fileName() const;
54 QString getLineText( const int ) const;
55 bool setLineText( const int, const QString& );
56 bool insertLineBefore( const int, const QString& );
57 bool deleteTextLine( const int );
63 static int id( const QString& );
64 static QString entry( const int );
66 int lineNb( const QString& );
67 int lineNb( const int );
69 QList<int> getIds() const;
72 void buildTree( SUIT_DataObject*, const QStringList& );
73 LIGHTGUI_DataObject* findObject( const int ) const;
81 #endif // LIGHTGUI_DATAMODEL_H