Salome HOME
Merge branch 'agr/edf12447-catalyst'
[modules/paravis.git] / test / standalone / gui / 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 <QObject>
25 #include <QList>
26
27 class pqPropertiesPanel;
28 class pqPipelineBrowserWidget;
29 class pqTabbedMultiViewWidget;
30 class QMainWindow;
31 class QMenu;
32 class QToolBar;
33 class QAction;
34 class pqAnimationTimeToolbar;
35 class pqVCRToolbar;
36
37 /*!
38  * Some GUI elements of ParaView need to be instanciated in a proper order. This class
39  * holds all of them for the sake of clarity.
40  */
41 class PVViewer_GUIElements: public QObject
42 {
43   Q_OBJECT
44
45 public:
46   static PVViewer_GUIElements * GetInstance(QMainWindow * desk);
47
48   pqPropertiesPanel * getPropertiesPanel() { return propertiesPanel; }
49   pqPipelineBrowserWidget * getPipelineBrowserWidget() { return pipelineBrowserWidget; }
50   pqTabbedMultiViewWidget * getTabbedMultiViewWidget();
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 public slots:
69   void onEmulateApply();  // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
70
71 private:
72   PVViewer_GUIElements(QMainWindow* desk);
73   virtual ~PVViewer_GUIElements() {}
74
75   static PVViewer_GUIElements* theInstance;
76
77   // Widgets
78   pqPropertiesPanel* propertiesPanel;
79   pqPipelineBrowserWidget* pipelineBrowserWidget;
80   pqTabbedMultiViewWidget* tabbedMultiViewWidget;
81
82   // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
83   QMenu* sourcesMenu;
84   QMenu* filtersMenu;
85   QMenu* macrosMenu;
86 #ifdef PVCATALYST_ENABLED
87   QMenu* catalystMenu;
88 #endif
89
90   // Toolbars also need to be instanciated early:
91   QToolBar* mainToolBar;
92   pqVCRToolbar* vcrToolbar;
93   pqAnimationTimeToolbar* timeToolbar;
94   QToolBar* colorToolbar;
95   QToolBar* reprToolbar;
96   QToolBar* cameraToolbar;
97   QToolBar* axesToolbar;
98   QToolBar* macrosToolbar;
99   QToolBar* commonToolbar;
100   QToolBar* dataToolbar;
101
102 public:
103   QAction* mainAction;
104   QAction* vcrAction;
105   QAction* timeAction;
106   QAction* colorAction;
107   QAction* reprAction;
108   QAction* cameraAction;
109   QAction* axesAction;
110   QAction* macrosAction;
111   QAction* commonAction;
112   QAction* dataAction;
113 };
114
115 #endif /* PVVIEWERGUIELEMENTS_H_ */