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: SalomeApp_DataModel.h 00024 // Created: 10/25/2004 10:32:33 AM 00025 // Author: Sergey LITONIN 00026 // 00027 #ifndef SALOMEAPP_DATAMODEL_H 00028 #define SALOMEAPP_DATAMODEL_H 00029 00030 #if _MSC_VER > 1000 00031 #pragma once 00032 #endif // _MSC_VER > 1000 00033 00034 #include "SalomeApp.h" 00035 #include "LightApp_DataModel.h" 00036 00037 #include "SALOMEDSClient.hxx" 00038 00039 class SalomeApp_Module; 00040 class SalomeApp_Study; 00041 class SUIT_DataObject; 00042 class LightApp_DataObject; 00043 00044 // Class : SalomeApp_DataModel 00046 class SALOMEAPP_EXPORT SalomeApp_DataModel : public LightApp_DataModel 00047 { 00048 Q_OBJECT 00049 00050 public: 00051 static SUIT_DataObject* synchronize( const _PTR( SComponent )&, SalomeApp_Study* ); 00052 00053 SalomeApp_DataModel ( CAM_Module* theModule ); 00054 virtual ~SalomeApp_DataModel(); 00055 00056 virtual bool open( const QString&, CAM_Study*, QStringList ); 00057 virtual bool create( CAM_Study* ); 00058 virtual void update( LightApp_DataObject* = 0, LightApp_Study* = 0 ); 00059 00060 QString getRootEntry( SalomeApp_Study* ) const; 00061 SalomeApp_Module* getModule() const; 00062 00063 protected: 00064 SalomeApp_Study* getStudy() const; 00065 virtual void updateTree( const _PTR( SComponent )&, SalomeApp_Study* ); 00066 }; 00067 00068 00069 #endif