]> SALOME platform Git repositories - modules/paravis.git/blob - src/PVGUI/view/PVViewer_ViewManager.h
Salome HOME
Adding option to skip the connection to an external server.
[modules/paravis.git] / src / PVGUI / view / 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 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(PARAVIS_Gen)
25
26 class SUIT_Desktop;
27 class SUIT_Study;
28 class SUIT_ViewWindow;
29 class pqTabbedMultiViewWidget;
30 class pqPVApplicationCore;
31 class PVViewer_Behaviors;
32 class pqPropertiesPanel;
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 PARAVIS_ORB::PARAVIS_Gen_var 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
58 private:
59   static pqPVApplicationCore* MyCoreApp;
60   static PARAVIS_ORB::PARAVIS_Gen_var MyEngine;
61   static bool ConfigLoaded;
62   static PVViewer_Behaviors * ParaviewBehaviors;
63 };
64
65 #endif