Salome HOME
Merge branch 'master' into abn/paravis_rearch
[modules/gui.git] / src / PVViewer / PVViewer_ViewManager.h
1 // Copyright (C) 2010-2014  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef PVViewer_VIEWMANAGER_H
20 #define PVViewer_VIEWMANAGER_H
21
22 #include <SUIT_ViewManager.h>
23
24 class PVViewer_EngineWrapper;
25 class SUIT_Desktop;
26 class SUIT_Study;
27 class SUIT_ViewWindow;
28 class pqTabbedMultiViewWidget;
29 class pqPVApplicationCore;
30 class PVViewer_Behaviors;
31 class pqPropertiesPanel;
32 class pqPipelineBrowserWidget;
33
34 class PVViewer_ViewManager : public SUIT_ViewManager
35 {
36   Q_OBJECT
37
38 public:
39   PVViewer_ViewManager( SUIT_Study*, SUIT_Desktop* );
40   ~PVViewer_ViewManager() {}
41
42   static pqPVApplicationCore * GetPVApplication();
43   static PVViewer_EngineWrapper * GetEngine();
44
45   //! Initialize ParaView if not yet done (once per session)
46   static bool   ParaviewInitApp(SUIT_Desktop* aDesktop);
47   static void   ParaviewInitBehaviors(bool fullSetup=false, SUIT_Desktop* aDesktop=0);
48   static void   ParaviewLoadConfigurations();
49   static void   ParaviewCleanup();
50
51   //! Connect to the external PVServer, using the PARAVIS engine to launch it if it is not
52   //! already up.
53   static bool   ConnectToExternalPVServer(SUIT_Desktop* aDesktop);
54
55 public slots:
56 //  void onPVViewCreated(SUIT_ViewWindow*);
57   void onEmulateApply();
58
59 private:
60   static pqPVApplicationCore* MyCoreApp;
61   static bool ConfigLoaded;
62   static PVViewer_Behaviors * ParaviewBehaviors;
63
64   SUIT_Desktop * desktop;
65 };
66
67 #endif