Salome HOME
Porting on windows
[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 "PVViewer.h"
23
24 #include <SUIT_ViewManager.h>
25
26 class PVViewer_EngineWrapper;
27 class SUIT_Desktop;
28 class SUIT_Study;
29 class SUIT_ViewWindow;
30 class pqTabbedMultiViewWidget;
31 class pqPVApplicationCore;
32 class PVViewer_Behaviors;
33 class pqPropertiesPanel;
34 class pqPipelineBrowserWidget;
35 class LogWindow;
36
37 class PVVIEWER_EXPORT PVViewer_ViewManager : public SUIT_ViewManager
38 {
39   Q_OBJECT
40
41 public:
42   PVViewer_ViewManager( SUIT_Study*, SUIT_Desktop*, LogWindow *);
43   ~PVViewer_ViewManager() {}
44
45   static pqPVApplicationCore * GetPVApplication();
46   static PVViewer_EngineWrapper * GetEngine();
47
48   //! Initialize ParaView if not yet done (once per session)
49   static bool   ParaviewInitApp(SUIT_Desktop* aDesktop, LogWindow * w);
50   static void   ParaviewInitBehaviors(bool fullSetup=false, SUIT_Desktop* aDesktop=0);
51   static void   ParaviewLoadConfigurations();
52   static void   ParaviewCleanup();
53
54   //! Connect to the external PVServer, using the PARAVIS engine to launch it if it is not
55   //! already up.
56   static bool   ConnectToExternalPVServer(SUIT_Desktop* aDesktop);
57
58 public slots:
59   void onEmulateApply();
60
61 private:
62   static pqPVApplicationCore* MyCoreApp;
63   static bool ConfigLoaded;
64   static PVViewer_Behaviors * ParaviewBehaviors;
65
66   SUIT_Desktop * desktop;
67 };
68
69 #endif