1 // Copyright (C) 2010-2015 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author: Adrien Bruneton (CEA)
21 #ifndef PVVIEWERGUIELEMENTS_H_
22 #define PVVIEWERGUIELEMENTS_H_
29 class pqPropertiesPanel;
30 class pqPipelineBrowserWidget;
35 class pqAnimationTimeToolbar;
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.
42 class PVVIEWER_EXPORT PVViewer_GUIElements: public QObject
47 static PVViewer_GUIElements * GetInstance(SUIT_Desktop* desk);
49 pqPropertiesPanel * getPropertiesPanel() { return propertiesPanel; }
50 pqPipelineBrowserWidget * getPipelineBrowserWidget() { return pipelineBrowserWidget; }
52 QMenu* getFiltersMenu() { return filtersMenu; }
53 QMenu* getSourcesMenu() { return sourcesMenu; }
54 QMenu* getMacrosMenu() { return macrosMenu; }
56 pqVCRToolbar* getVCRToolbar() { return vcrToolbar; }
57 pqAnimationTimeToolbar* getTimeToolbar() { return timeToolbar; }
59 void myBuildToolbars(SUIT_Desktop* desk);
60 void addToolbars(SUIT_Desktop* desk);
61 void setToolBarVisible(bool show);
62 QList<QToolBar*> getToolbars();
65 void onEmulateApply(); // better use the slot from PVViewer_ViewManager if you want to trigger "Apply"
68 PVViewer_GUIElements(SUIT_Desktop* desk);
69 virtual ~PVViewer_GUIElements() {}
71 static PVViewer_GUIElements* theInstance;
74 pqPropertiesPanel* propertiesPanel;
75 pqPipelineBrowserWidget* pipelineBrowserWidget;
77 // Dummy QMenus receiving ParaView's reaction for automatic add when new sources are added
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;
100 QAction* cameraAction;
102 QAction* macrosAction;
103 QAction* commonAction;
107 #endif /* PVVIEWERGUIELEMENTS_H_ */