Salome HOME
Porting on windows
[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  * For example sources menu should be built *before* loading ParaView's configuration, so that the
37  * list of sources gets properly populated.
38  */
39 class PVVIEWER_EXPORT PVViewer_GUIElements: public QObject
40 {
41   Q_OBJECT
42
43 public:
44   static PVViewer_GUIElements * GetInstance(SUIT_Desktop* desk);
45
46   pqPropertiesPanel * getPropertiesPanel() { return propertiesPanel; }
47   pqPipelineBrowserWidget * getPipelineBrowserWidget() { return pipelineBrowserWidget; }
48
49   // Update the sources menu from what was built in private member 'sourcesMenu'
50   void updateSourcesMenu(QMenu *);
51   void updateFiltersMenu(QMenu *);
52   void updateMacrosMenu(QMenu *);
53
54 public slots:
55   void onEmulateApply();  // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
56
57 private:
58   PVViewer_GUIElements(SUIT_Desktop* desk);
59   virtual ~PVViewer_GUIElements() {}
60
61   static PVViewer_GUIElements * theInstance;
62
63   // Widgets
64   pqPropertiesPanel * propertiesPanel;
65   pqPipelineBrowserWidget * pipelineBrowserWidget;
66
67   // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
68   QMenu * sourcesMenu;
69   QMenu * filtersMenu;
70   QMenu * macrosMenu;
71 };
72
73 #endif /* PVVIEWERGUIELEMENTS_H_ */