Salome HOME
24534e7e1e1045df67b40d330bb7d9e800250e93
[modules/gui.git] / src / PVViewer / PVViewer_ViewManager.h
1 // Copyright (C) 2014-2022  CEA/DEN, EDF R&D, OPEN CASCADE
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 // Author: Adrien Bruneton (CEA)
20
21 #ifndef PVVIEWER_VIEWMANAGER_H
22 #define PVVIEWER_VIEWMANAGER_H
23
24 #include "PVViewer.h"
25
26 #include "SUIT_ViewManager.h"
27
28 class SUIT_Desktop;
29 class SUIT_Study;
30 class SUIT_ViewWindow;
31 class PVServer_ServiceWrapper;
32 class QMainWindow;
33
34 class PVVIEWER_EXPORT PVViewer_ViewManager : public SUIT_ViewManager
35 {
36   Q_OBJECT
37
38 public:
39   PVViewer_ViewManager(SUIT_Study*, SUIT_Desktop*);
40   ~PVViewer_ViewManager() {}
41
42   //! Get the CORBA engine wrapper.
43   static PVServer_ServiceWrapper* GetService();
44
45   //! Get PVViewer configuration path as stored by SALOME's resource manager:
46   static QString GetPVConfigPath();
47
48   //! Connect to the external PVServer, using the PARAVIS engine to launch it if it is not
49   //! already up.
50   static bool ConnectToExternalPVServer(QMainWindow*);
51
52 protected slots:
53   void onWindowActivated(SUIT_ViewWindow*);
54 };
55
56 #endif // PVVIEWER_VIEWMANAGER_H