Salome HOME
PAL10110 - incorrect title of dialog of file selection for file preference item
[modules/gui.git] / src / SalomeApp / SalomeApp_Study.h
index b75dd4f084971fca6ada95691c6cd8e14745b0ce..1404446f4d17211628aa675537d8e46a60de9da0 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "SalomeApp.h"
 
-#include <LightApp_Study.h>
+#include <CAM_Study.h>
 
 #ifdef WIN32
 #pragma warning( disable:4251 )
@@ -11,7 +11,7 @@
 
 #include "SALOMEDSClient.hxx"
 
-class SALOMEAPP_EXPORT SalomeApp_Study : public LightApp_Study
+class SALOMEAPP_EXPORT SalomeApp_Study : public CAM_Study
 {
   Q_OBJECT
 
@@ -35,15 +35,15 @@ public:
 
   _PTR(Study)         studyDS() const;
 
-  virtual std::vector<std::string> GetListOfFiles () const;
-  virtual void        SetListOfFiles (const std::vector<std::string> theListOfFiles);
-  virtual std::string GetTmpDir (const char* theURL,
-                                 const bool  isMultiFile);
-  virtual void        RemoveTemporaryFiles (const bool isMultiFile) const;
-
   // to delete all references to object, whose have the same component
   void                deleteReferencesTo( _PTR( SObject ) );
 
+signals:
+  void                saved( SUIT_Study* );
+  void                opened( SUIT_Study* );
+  void                closed( SUIT_Study* );
+  void                created( SUIT_Study* );
+
 protected:
   virtual void        dataModelInserted( const CAM_DataModel* );
   virtual bool        openDataModel( const QString&, CAM_DataModel* );
@@ -56,6 +56,7 @@ private:
   _PTR(Study)         myStudyDS;
 };
 
+
 #ifdef WIN32
 #pragma warning( default:4251 )
 #endif