Version: 6.3.1

src/LightApp/LightApp_DataModel.h

Go to the documentation of this file.
00001 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
00002 //
00003 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
00004 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
00005 //
00006 // This library is free software; you can redistribute it and/or
00007 // modify it under the terms of the GNU Lesser General Public
00008 // License as published by the Free Software Foundation; either
00009 // version 2.1 of the License.
00010 //
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014 // Lesser General Public License for more details.
00015 //
00016 // You should have received a copy of the GNU Lesser General Public
00017 // License along with this library; if not, write to the Free Software
00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
00019 //
00020 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
00021 //
00022 
00023 // File:      LightApp_DataModel.h
00024 // Created:   10/25/2004 10:32:33 AM
00025 // Author:    Sergey LITONIN
00026 //
00027 #ifndef LIGHTAPP_DATAMODEL_H
00028 #define LIGHTAPP_DATAMODEL_H
00029 
00030 #if _MSC_VER > 1000
00031 #pragma once
00032 #endif // _MSC_VER > 1000
00033 
00034 #include "LightApp.h"
00035 #include "CAM_DataModel.h"
00036 
00037 class LightApp_Module;
00038 class LightApp_Study;
00039 class LightApp_DataObject;
00040 class SUIT_DataBrowser;
00041 
00045 class LIGHTAPP_EXPORT LightApp_DataModel : public CAM_DataModel
00046 {
00047   Q_OBJECT
00048 
00049 public:
00050                                       LightApp_DataModel ( CAM_Module* theModule );
00051   virtual                             ~LightApp_DataModel();
00052 
00053   virtual bool                        open( const QString&, CAM_Study*, QStringList );
00054   virtual bool                        save( QStringList& );
00055   virtual bool                        saveAs( const QString&, CAM_Study*, QStringList& );
00056   virtual bool                        close();
00057 
00058   virtual void                        update( LightApp_DataObject* = 0, LightApp_Study* = 0 );
00059 
00060   virtual bool                        isModified() const;
00061   virtual bool                        isSaved()  const;
00062 
00063   LightApp_Module*                    getModule() const;
00064 
00065   int  groupId() const;
00066   void registerColumn( SUIT_DataBrowser*, const QString&, const int );
00067   void unregisterColumn( SUIT_DataBrowser*, const QString& );
00068 
00069 signals:
00070   void                                opened();
00071   void                                saved();
00072   void                                closed();
00073 
00074 protected:
00075   LightApp_Study*                     getStudy() const;
00076   virtual void                        build();
00077   virtual void                        updateWidgets();
00078 
00079 private:
00080   int myGroupId;
00081 };
00082 
00083 #endif 
Copyright © 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
Copyright © 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS