Salome HOME
Wrapping pqViewManager in SALOME view manager
[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
38 class PVGUI_Module: public LightApp_Module
39 {
40   Q_OBJECT
41    
42   //! Menu actions
43   /*enum { 
44     lgLoadFile = 931,   //!< load text file
45     lgSaveFile,         //!< save text file
46     lgDisplayLine,      //!< display selected line
47     lgEraseLine,        //!< erase selected line
48     lgEditLine,         //!< edit selected line
49     lgAddLine,          //!< insert new line
50     lgDelLine,          //!< delete selected line
51     lgClear             //!< clear all contents
52     };*/
53
54 public:
55   PVGUI_Module();
56   ~PVGUI_Module();
57
58   virtual void           initialize( CAM_Application* );
59   virtual void           windows( QMap<int, int>& ) const;
60
61   //virtual LightApp_Selection* createSelection() const;
62
63 protected:
64   //virtual CAM_DataModel* createDataModel();
65
66 private:
67   //! Initialize ParaView if not yet done (once per session)
68   static bool            pvInit();  
69   //! Shutdown ParaView, should be called on application exit
70   static void            pvShutdown();   
71  
72   //! Create actions for ParaView GUI operations
73   //! duplicating menus and toolbars in pqMainWindow ParaView class
74   void                   pvCreateActions();  
75
76   //! Shows or hides ParaView view window
77   void                   showView( bool );         
78
79 public slots:
80   virtual bool           activateModule( SUIT_Study* );
81   virtual bool           deactivateModule( SUIT_Study* );
82
83 private:
84   static vtkPVMain*                 myPVMain;
85   static pqOptions*                 myPVOptions;
86   static PVGUI_ProcessModuleHelper* myPVHelper;
87 };
88
89 #endif // PVGUI_Module_H