Salome HOME
Merge branch 'V7_5_BR' into abn/paravis_guifix
[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
28 class pqPropertiesPanel;
29 class pqPipelineBrowserWidget;
30 class SUIT_Desktop;
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_EXPORT PVViewer_GUIElements: public QObject
42 {
43   Q_OBJECT
44
45 public:
46   static PVViewer_GUIElements * GetInstance(SUIT_Desktop* desk);
47
48   pqPropertiesPanel * getPropertiesPanel() { return propertiesPanel; }
49   pqPipelineBrowserWidget * getPipelineBrowserWidget() { return pipelineBrowserWidget; }
50
51   QMenu * getFiltersMenu() { return filtersMenu; }
52   QMenu * getSourcesMenu() { return sourcesMenu; }
53   QMenu * getMacrosMenu()  { return macrosMenu; }
54
55   pqVCRToolbar * getVCRToolbar() { return vcrToolbar; }
56   pqAnimationTimeToolbar * getTimeToolbar() { return timeToolbar; }
57
58   void myBuildToolbars(SUIT_Desktop* desk);
59   void addToolbars(SUIT_Desktop* desk);
60   void setToolBarVisible(bool show);
61
62 public slots:
63   void onEmulateApply();  // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
64
65 private:
66   PVViewer_GUIElements(SUIT_Desktop* 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
90 public:
91   QAction * mainAction;
92   QAction *  vcrAction;
93   QAction *  timeAction;
94   QAction *  colorAction;
95   QAction *  reprAction;
96   QAction *  cameraAction;
97   QAction *  axesAction;
98   QAction *  macrosAction;
99 };
100
101 #endif /* PVVIEWERGUIELEMENTS_H_ */