Salome HOME
Copyright update 2022
[modules/paravis.git] / test / standalone / gui / PVViewer_GUIElements.h
1 // Copyright (C) 2010-2022  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
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 public slots:
66   void onEmulateApply();  // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
67
68 private:
69   PVViewer_GUIElements(QMainWindow* desk);
70   virtual ~PVViewer_GUIElements() {}
71
72   static PVViewer_GUIElements* theInstance;
73
74   // Widgets
75   pqPropertiesPanel* propertiesPanel;
76   pqPipelineBrowserWidget* pipelineBrowserWidget;
77   pqTabbedMultiViewWidget* tabbedMultiViewWidget;
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 public:
97   QAction* mainAction;
98   QAction* vcrAction;
99   QAction* timeAction;
100   QAction* colorAction;
101   QAction* reprAction;
102   QAction* cameraAction;
103   QAction* axesAction;
104   QAction* macrosAction;
105   QAction* commonAction;
106   QAction* dataAction;
107 };
108
109 #endif /* PVVIEWERGUIELEMENTS_H_ */