Salome HOME
5f03771882d62d67c2e17693979404af6cd4410e
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.h
1 // Copyright (C) 2007-2013  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
23 #ifndef HYDROGUI_OPERATION_H
24 #define HYDROGUI_OPERATION_H
25
26 #include <LightApp_Operation.h>
27
28 class HYDROGUI_Module;
29 class HYDROGUI_InputPanel;
30
31 class SUIT_SelectionMgr;
32 class OCCViewer_ViewManager;
33
34 class Handle_HYDROData_Document;
35 class Handle_HYDROData_Object;
36
37 class HYDROGUI_Operation : public LightApp_Operation
38 {
39   Q_OBJECT
40
41 public:
42
43   HYDROGUI_Operation( HYDROGUI_Module* theModule );
44   virtual ~HYDROGUI_Operation();
45
46 public:
47
48   void                                setName( const QString& theName );
49   const QString&                      getName() const;
50
51   HYDROGUI_InputPanel*                inputPanel() const;
52   SUIT_SelectionMgr*                  selectionMgr() const;
53   HYDROGUI_Module*                    module() const;
54
55   int                                 getPreviewZLayer() const;
56   virtual void                        updatePreviewZLayer( int theLayer ) {};
57
58 signals:
59   void                                helpContextModule( const QString&,
60                                                          const QString&,
61                                                          const QString& );
62
63 protected:
64   virtual void                        startOperation();
65   virtual void                        abortOperation();
66   virtual void                        commitOperation();
67   virtual void                        stopOperation();
68   virtual void                        setDialogActive( const bool );
69
70   virtual HYDROGUI_InputPanel*        createInputPanel() const;
71   virtual void                        closeInputPanel();
72
73   virtual bool                        processApply( int& theUpdateFlags, QString& theErrorMsg );
74   virtual void                        processCancel();
75
76   void                                startDocOperation();
77   void                                abortDocOperation();
78   void                                commitDocOperation();
79
80   Handle_HYDROData_Document           doc() const;
81
82   virtual bool                        isToAbortOnApply() const { return true; }
83
84   void                                printErrorMessage( const QString& theErrorMsg );
85   void                                setPrintErrorMessage( const bool theIsPrint );
86
87 protected slots:
88
89   virtual void                        onApply();
90   virtual void                        onCancel();
91   virtual void                        onHelp();
92
93 protected:
94
95   QString                             getHelpComponent() const;
96   QString                             getHelpFile() const;
97   QString                             getHelpContext() const;
98
99   virtual void                        setPreviewZLayer( int theLayer );
100   OCCViewer_ViewManager*              getPreviewManager();
101   void                                setPreviewManager( OCCViewer_ViewManager* theManager );
102
103 private:
104
105   HYDROGUI_Module*                    myModule;
106   HYDROGUI_InputPanel*                myPanel;
107   OCCViewer_ViewManager*              myPreviewManager;
108   QString                             myName;
109   bool                                myIsPrintErrorMessage;
110   int                                 myPreviewZLayer;
111 };
112
113 #endif