Salome HOME
[PVViewer] Add Catalyst menu
[modules/gui.git] / src / PVViewer / PVViewer_GUIElements.h
1 // Copyright (C) 2010-2016  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 #include <QList>
28
29 class pqPropertiesPanel;
30 class pqPipelineBrowserWidget;
31 class QMainWindow;
32 class QMenu;
33 class QToolBar;
34 class QAction;
35 class pqAnimationTimeToolbar;
36 class pqVCRToolbar;
37
38 /*!
39  * Some GUI elements of ParaView need to be instanciated in a proper order. This class
40  * holds all of them for the sake of clarity.
41  */
42 class PVVIEWER_EXPORT PVViewer_GUIElements: public QObject
43 {
44   Q_OBJECT
45
46 public:
47   static PVViewer_GUIElements * GetInstance(QMainWindow * desk);
48
49   pqPropertiesPanel * getPropertiesPanel() { return propertiesPanel; }
50   pqPipelineBrowserWidget * getPipelineBrowserWidget() { return pipelineBrowserWidget; }
51
52   QMenu* getFiltersMenu() { return filtersMenu; }
53   QMenu* getSourcesMenu() { return sourcesMenu; }
54   QMenu* getMacrosMenu()  { return macrosMenu; }
55 #ifdef PVCATALYST_ENABLED
56   QMenu* getCatalystMenu()  { return catalystMenu; }
57 #endif
58
59   pqVCRToolbar* getVCRToolbar() { return vcrToolbar; }
60   pqAnimationTimeToolbar* getTimeToolbar() { return timeToolbar; }
61
62   void myBuildToolbars(QMainWindow* desk);
63   void addToolbars(QMainWindow* desk);
64   void setToolBarVisible(bool show);
65   void setToolBarEnabled(bool enabled);
66   QList<QToolBar*> getToolbars();
67
68 private:
69   PVViewer_GUIElements(QMainWindow* desk);
70   virtual ~PVViewer_GUIElements() {}
71
72   static PVViewer_GUIElements* theInstance;
73
74   // Widgets
75   pqPropertiesPanel* propertiesPanel;
76   pqPipelineBrowserWidget* pipelineBrowserWidget;
77
78   // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
79   QMenu* sourcesMenu;
80   QMenu* filtersMenu;
81   QMenu* macrosMenu;
82 #ifdef PVCATALYST_ENABLED
83   QMenu* catalystMenu;
84 #endif
85
86   // Toolbars also need to be instanciated early:
87   QToolBar* mainToolBar;
88   pqVCRToolbar* vcrToolbar;
89   pqAnimationTimeToolbar* timeToolbar;
90   QToolBar* colorToolbar;
91   QToolBar* reprToolbar;
92   QToolBar* cameraToolbar;
93   QToolBar* axesToolbar;
94   QToolBar* macrosToolbar;
95   QToolBar* commonToolbar;
96   QToolBar* dataToolbar;
97
98 public:
99   QAction* mainAction;
100   QAction* vcrAction;
101   QAction* timeAction;
102   QAction* colorAction;
103   QAction* reprAction;
104   QAction* cameraAction;
105   QAction* axesAction;
106   QAction* macrosAction;
107   QAction* commonAction;
108   QAction* dataAction;
109 };
110
111 #endif /* PVVIEWERGUIELEMENTS_H_ */