]> SALOME platform Git repositories - modules/gui.git/blob - src/PVViewer/PVViewer_GUIElements.h
Salome HOME
c9d2d3f2d07f4684ce7977355564a51cbc7803ed
[modules/gui.git] / src / PVViewer / PVViewer_GUIElements.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 // Author: Adrien Bruneton (CEA)
20
21 #ifndef PVVIEWERGUIELEMENTS_H_
22 #define PVVIEWERGUIELEMENTS_H_
23
24 #include "PVViewer.h"
25
26 #include <QObject>
27
28 class pqPropertiesPanel;
29 class pqPipelineBrowserWidget;
30 class SUIT_Desktop;
31 class QMenu;
32
33 /*!
34  * Some GUI elements of ParaView need to be instanciated in a proper order. This class
35  * holds all of them for the sake of clarity.
36  */
37 class PVVIEWER_EXPORT PVViewer_GUIElements: public QObject
38 {
39   Q_OBJECT
40
41 public:
42   static PVViewer_GUIElements * GetInstance(SUIT_Desktop* desk);
43
44   pqPropertiesPanel * getPropertiesPanel() { return propertiesPanel; }
45   pqPipelineBrowserWidget * getPipelineBrowserWidget() { return pipelineBrowserWidget; }
46
47   QMenu * getFiltersMenu() { return filtersMenu; }
48   QMenu * getSourcesMenu() { return sourcesMenu; }
49   QMenu * getMacrosMenu()  { return macrosMenu; }
50
51
52 public slots:
53   void onEmulateApply();  // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
54
55 private:
56   PVViewer_GUIElements(SUIT_Desktop* desk);
57   virtual ~PVViewer_GUIElements() {}
58
59   static PVViewer_GUIElements * theInstance;
60
61   // Widgets
62   pqPropertiesPanel * propertiesPanel;
63   pqPipelineBrowserWidget * pipelineBrowserWidget;
64
65   // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
66   QMenu * sourcesMenu;
67   QMenu * filtersMenu;
68   QMenu * macrosMenu;
69 };
70
71 #endif /* PVVIEWERGUIELEMENTS_H_ */