]> SALOME platform Git repositories - modules/gui.git/blob - src/CAF/CAF_Study.h
Salome HOME
4cde4fff96acf6020908249c3bd636ed435f3e40
[modules/gui.git] / src / CAF / CAF_Study.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #ifndef CAF_STUDY_H
23 #define CAF_STUDY_H
24
25 #include "CAF.h"
26
27 #include "SUIT_Study.h"
28
29 #include <TDocStd_Document.hxx>
30
31 class CAF_Application;
32 class Handle(TDocStd_Application);
33
34 #if defined WIN32
35 #pragma warning ( disable: 4251 )
36 #endif
37
38 class CAF_EXPORT CAF_Study : public SUIT_Study
39 {
40   Q_OBJECT
41
42 public:
43   CAF_Study( SUIT_Application* theApp );
44   CAF_Study( SUIT_Application* theApp, Handle(TDocStd_Document)& aStdDoc );
45   virtual ~CAF_Study();
46
47   virtual bool                createDocument( const QString& );
48   virtual void                closeDocument( bool = true );
49   virtual bool                openDocument( const QString& );
50
51   virtual bool                saveDocumentAs( const QString& );
52
53   bool                        isSaved() const;
54   bool                        isModified() const;
55   void                        doModified( bool = true );
56   void                        undoModified();
57   void                        clearModified();
58   
59   bool                        undo();
60   bool                        redo();
61   bool                        canUndo() const;
62   bool                        canRedo() const;
63   QStringList                 undoNames() const;
64   QStringList                 redoNames() const;
65   
66   Handle(TDocStd_Document)    stdDoc() const;
67
68 protected:
69   Handle(TDocStd_Application) stdApp() const;
70   CAF_Application*            cafApplication() const;
71
72   virtual bool                openTransaction();
73   virtual bool                abortTransaction();
74   virtual bool                hasTransaction() const;
75   virtual bool                commitTransaction( const QString& = QString() );
76
77   virtual void                setStdDoc( Handle(TDocStd_Document)& );
78
79 private:
80   Handle(TDocStd_Document)    myStdDoc;
81   int                         myModifiedCnt;
82
83   friend class CAF_Operation;
84 };
85
86 #if defined WIN32
87 #pragma warning ( default: 4251 )
88 #endif
89
90 #endif