Salome HOME
Merge branch 'master' into abn/paravis_rearch
[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 <QObject>
25
26 class pqPropertiesPanel;
27 class pqPipelineBrowserWidget;
28 class SUIT_Desktop;
29 class QMenu;
30
31 /*!
32  * Some GUI elements of ParaView need to be instanciated in a proper order. This class
33  * holds all of them for the sake of clarity.
34  * For example sources menu should be built *before* loading ParaView's configuration, so that the
35  * list of sources gets properly populated.
36  */
37 class 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   // Update the sources menu from what was built in private member 'sourcesMenu'
48   void updateSourcesMenu(QMenu *);
49   void updateFiltersMenu(QMenu *);
50   void updateMacrosMenu(QMenu *);
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_ */