Salome HOME
48a805cbf1cf466b2e8a951c126234c302b1d020
[modules/paravis.git] / src / PVGUI / PVGUI_Module.h
1 // PARAVIS : ParaView wrapper SALOME module
2 //
3 // Copyright (C) 2003  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 // File   : PVGUI_Module.h
23 // Author : Sergey ANIKIN
24 //
25
26 #ifndef PVGUI_Module_H
27 #define PVGUI_Module_H
28
29 #include <LightApp_Module.h>
30
31 class QMenu;
32 class LightApp_Selection;
33 class LightApp_SelectionMgr;
34 class PVGUI_ProcessModuleHelper;
35 class vtkPVMain;
36 class pqOptions;
37 class pqServer;
38 class pqActiveServer;
39 class pqViewManager;
40
41 class PVGUI_Module : public LightApp_Module
42 {
43   Q_OBJECT
44    
45   //! Menu actions
46   /*enum { 
47     lgLoadFile = 931,   //!< load text file
48     lgSaveFile,         //!< save text file
49     lgDisplayLine,      //!< display selected line
50     lgEraseLine,        //!< erase selected line
51     lgEditLine,         //!< edit selected line
52     lgAddLine,          //!< insert new line
53     lgDelLine,          //!< delete selected line
54     lgClear             //!< clear all contents
55     };*/
56
57 public:
58   PVGUI_Module();
59   ~PVGUI_Module();
60
61   virtual void           initialize( CAM_Application* );
62   virtual void           windows( QMap<int, int>& ) const;
63
64   //virtual LightApp_Selection* createSelection() const;
65
66   pqViewManager*         getMultiViewManager() const;
67
68 protected:
69   //virtual CAM_DataModel* createDataModel();
70
71 private:
72   //! Initialize ParaView if not yet done (once per session)
73   static bool            pvInit();  
74   //! Shutdown ParaView, should be called on application exit
75   static void            pvShutdown();   
76  
77   //! Create actions for ParaView GUI operations
78   //! duplicating menus and toolbars in pqMainWindow ParaView class
79   void                   pvCreateActions();  
80
81   //! Create dock widgets for ParaView widgets
82   void                   setupDockWidgets();
83
84   //! Shows or hides ParaView view window
85   void                   showView( bool );    
86
87   //! Returns QMenu object for a given menu id
88   QMenu*                 getMenu( const int );
89
90 public slots:
91   virtual bool           activateModule( SUIT_Study* );
92   virtual bool           deactivateModule( SUIT_Study* );
93
94 private:
95   class pqImplementation;
96   pqImplementation*                 Implementation;
97 };
98
99 #endif // PVGUI_Module_H