Salome HOME
0022847: [CEA 1408] Regression : in 7.5.1rc1 switching to Paravis to some other modul...
[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 "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   QList<QToolBar*> getToolbars();
63
64 public slots:
65   void onEmulateApply();  // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
66
67 private:
68   PVViewer_GUIElements(SUIT_Desktop* desk);
69   virtual ~PVViewer_GUIElements() {}
70
71   static PVViewer_GUIElements* theInstance;
72
73   // Widgets
74   pqPropertiesPanel* propertiesPanel;
75   pqPipelineBrowserWidget* pipelineBrowserWidget;
76
77   // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
78   QMenu* sourcesMenu;
79   QMenu* filtersMenu;
80   QMenu* macrosMenu;
81
82   // Toolbars also need to be instanciated early:
83   QToolBar* mainToolBar;
84   pqVCRToolbar* vcrToolbar;
85   pqAnimationTimeToolbar* timeToolbar;
86   QToolBar* colorToolbar;
87   QToolBar* reprToolbar;
88   QToolBar* cameraToolbar;
89   QToolBar* axesToolbar;
90   QToolBar* macrosToolbar;
91   QToolBar* commonToolbar;
92   QToolBar* dataToolbar;
93
94 public:
95   QAction* mainAction;
96   QAction* vcrAction;
97   QAction* timeAction;
98   QAction* colorAction;
99   QAction* reprAction;
100   QAction* cameraAction;
101   QAction* axesAction;
102   QAction* macrosAction;
103   QAction* commonAction;
104   QAction* dataAction;
105 };
106
107 #endif /* PVVIEWERGUIELEMENTS_H_ */