Salome HOME
Merge branch 'V7_7_BR' into hydro/imps_2015
[modules/gui.git] / src / PVViewer / PVViewer_GUIElements.h
1 // Copyright (C) 2010-2015  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
56   pqVCRToolbar* getVCRToolbar() { return vcrToolbar; }
57   pqAnimationTimeToolbar* getTimeToolbar() { return timeToolbar; }
58
59   void myBuildToolbars(QMainWindow* desk);
60   void addToolbars(QMainWindow* desk);
61   void setToolBarVisible(bool show);
62   void setToolBarEnabled(bool enabled);
63   QList<QToolBar*> getToolbars();
64
65 private:
66   PVViewer_GUIElements(QMainWindow* desk);
67   virtual ~PVViewer_GUIElements() {}
68
69   static PVViewer_GUIElements* theInstance;
70
71   // Widgets
72   pqPropertiesPanel* propertiesPanel;
73   pqPipelineBrowserWidget* pipelineBrowserWidget;
74
75   // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
76   QMenu* sourcesMenu;
77   QMenu* filtersMenu;
78   QMenu* macrosMenu;
79
80   // Toolbars also need to be instanciated early:
81   QToolBar* mainToolBar;
82   pqVCRToolbar* vcrToolbar;
83   pqAnimationTimeToolbar* timeToolbar;
84   QToolBar* colorToolbar;
85   QToolBar* reprToolbar;
86   QToolBar* cameraToolbar;
87   QToolBar* axesToolbar;
88   QToolBar* macrosToolbar;
89   QToolBar* commonToolbar;
90   QToolBar* dataToolbar;
91
92 public:
93   QAction* mainAction;
94   QAction* vcrAction;
95   QAction* timeAction;
96   QAction* colorAction;
97   QAction* reprAction;
98   QAction* cameraAction;
99   QAction* axesAction;
100   QAction* macrosAction;
101   QAction* commonAction;
102   QAction* dataAction;
103 };
104
105 #endif /* PVVIEWERGUIELEMENTS_H_ */