Salome HOME
eead0ef142780a6cdaba9a01df78ea53dd35ee96
[modules/gui.git] / src / PVViewer / PVViewer_GUIElements.h
1 // Copyright (C) 2014-2016  CEA/DEN, EDF R&D, OPEN CASCADE
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();
50   pqPipelineBrowserWidget * getPipelineBrowserWidget();
51
52   QMenu* getFiltersMenu();
53   QMenu* getSourcesMenu();
54   QMenu* getMacrosMenu();
55
56   pqVCRToolbar* getVCRToolbar();
57   pqAnimationTimeToolbar* getTimeToolbar();
58
59   void setToolBarVisible(bool show);
60   void setToolBarEnabled(bool enabled);
61   QList<QToolBar*> getToolbars();
62
63   void setVCRTimeToolBarVisible(bool show);
64
65 private:
66   PVViewer_GUIElements(QMainWindow* desk);
67   virtual ~PVViewer_GUIElements() {}
68
69   static PVViewer_GUIElements* theInstance;
70
71   void buildPVWidgets();
72
73   void publishExistingSources();
74
75   // Widgets
76   pqPropertiesPanel* propertiesPanel;
77   pqPipelineBrowserWidget* pipelineBrowserWidget;
78
79   // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
80   QMenu* sourcesMenu;
81   QMenu* filtersMenu;
82   QMenu* macrosMenu;
83
84   // Toolbars also need to be instanciated early:
85   QToolBar* mainToolBar;
86   pqVCRToolbar* vcrToolbar;
87   pqAnimationTimeToolbar* timeToolbar;
88   QToolBar* colorToolbar;
89   QToolBar* reprToolbar;
90   QToolBar* cameraToolbar;
91   QToolBar* axesToolbar;
92   QToolBar* macrosToolbar;
93   QToolBar* commonToolbar;
94   QToolBar* dataToolbar;
95   
96   QMainWindow* myDesktop;
97   bool    myPVWidgetsFlag;
98
99 public:
100   QAction* mainAction;
101   QAction* vcrAction;
102   QAction* timeAction;
103   QAction* colorAction;
104   QAction* reprAction;
105   QAction* cameraAction;
106   QAction* axesAction;
107   QAction* macrosAction;
108   QAction* commonAction;
109   QAction* dataAction;
110 };
111
112 #endif /* PVVIEWERGUIELEMENTS_H_ */