Salome HOME
c96016680c8c8108dff280a155480407423d703b
[modules/gui.git] / src / CAF / CAF_Application.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_APPLICATION_H
23 #define CAF_APPLICATION_H
24
25 #include "CAF.h"
26
27 #include "STD_Application.h"
28
29 #include <TDocStd_Application.hxx>
30
31 class CAF_Study;
32
33 #if defined WIN32
34 #pragma warning ( disable: 4251 )
35 #endif
36
37 class CAF_EXPORT CAF_Application : public STD_Application
38 {
39   Q_OBJECT
40
41 public:
42   CAF_Application();
43   CAF_Application( const Handle(TDocStd_Application)& );
44   virtual ~CAF_Application();
45
46   virtual QString             applicationName() const;
47
48   Handle(TDocStd_Application) stdApp() const;
49
50   virtual QString             getFileFilter() const;
51
52 public slots:  
53   virtual void                onHelpAbout();
54
55 protected slots:
56   virtual bool                onUndo( int );
57   virtual bool                onRedo( int );
58   
59 protected:
60   enum {  EditUndoId = STD_Application::UserID, EditRedoId, UserID };
61
62 protected:
63   virtual void                createActions();
64   virtual void                updateCommandsStatus();
65
66   virtual SUIT_Study*         createNewStudy();
67
68   bool                        undo( CAF_Study* doc );
69   bool                        redo( CAF_Study* doc );
70
71   virtual void                setStdApp( const Handle(TDocStd_Application)& );
72
73 private:
74   Handle(TDocStd_Application) myStdApp;
75 };
76
77 #if defined WIN32
78 #pragma warning ( default: 4251 )
79 #endif
80
81 #endif