Salome HOME
FIX of INTPAL 52634: "Camera Controls" and "Center Axes Controls" tool-bars are alway...
[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 SUIT_Desktop;
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(SUIT_Desktop* 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(SUIT_Desktop* desk);
60   void addToolbars(SUIT_Desktop* desk);
61   void setToolBarVisible(bool show);
62   void setToolBarEnabled(bool enabled);
63   QList<QToolBar*> getToolbars();
64
65 public slots:
66   void onEmulateApply();  // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
67
68 private:
69   PVViewer_GUIElements(SUIT_Desktop* 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
83   // Toolbars also need to be instanciated early:
84   QToolBar* mainToolBar;
85   pqVCRToolbar* vcrToolbar;
86   pqAnimationTimeToolbar* timeToolbar;
87   QToolBar* colorToolbar;
88   QToolBar* reprToolbar;
89   QToolBar* cameraToolbar;
90   QToolBar* axesToolbar;
91   QToolBar* macrosToolbar;
92   QToolBar* commonToolbar;
93   QToolBar* dataToolbar;
94
95 public:
96   QAction* mainAction;
97   QAction* vcrAction;
98   QAction* timeAction;
99   QAction* colorAction;
100   QAction* reprAction;
101   QAction* cameraAction;
102   QAction* axesAction;
103   QAction* macrosAction;
104   QAction* commonAction;
105   QAction* dataAction;
106 };
107
108 #endif /* PVVIEWERGUIELEMENTS_H_ */