]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI.h
Salome HOME
IPAL8983: Close study during animation playing - SIGILL
[modules/visu.git] / src / VISUGUI / VisuGUI.h
1 //  VISU VISUGUI : GUI of VISU component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : VisuGUI.h
25 //  Author : Laurent CORNABE & Hubert ROLLAND
26 //  Module : VISU
27 //  $Header$
28
29 #ifndef VisuGUI_HeaderFile
30 #define VisuGUI_HeaderFile
31
32 #include "SalomeApp_Module.h"
33
34 class VisuGUI: public SalomeApp_Module
35 {
36   Q_OBJECT;
37
38 public:
39
40   VisuGUI();
41   virtual ~VisuGUI();
42
43   virtual void initialize( CAM_Application* );
44   virtual void windows( QMap<int, int>& ) const;
45   virtual void viewManagers( QStringList& ) const;
46
47   virtual QString engineIOR() const;
48
49   virtual void  studyActivated();
50
51   virtual void  contextMenuPopup( const QString& theClient, QPopupMenu* theMenu, QString& theTitle );
52
53 public slots:
54   virtual bool deactivateModule( SUIT_Study* );
55   virtual bool activateModule( SUIT_Study* );
56
57 protected slots:
58   void OnImportFromFile();
59   void OnExploreMEDFile();
60   void OnImportTableFromFile();
61   void OnExportTableToFile();
62   void OnImportMedField();
63
64   void OnCreateMesh();
65   void OnCreateScalarMap();
66   void OnCreateDeformedShape();
67   void OnCreateVectors();
68   void OnCreateIsoSurfaces();
69   void OnCreateCutPlanes();
70   void OnCreateCutLines();
71   void OnCreateStreamLines();
72   void OnCreatePlot3D();
73   void OnCreateManyMesh();
74   void OnCreatePlot2dView();
75
76   void OnEditPrs();
77
78   void OnDisplayPrs();
79   void OnDisplayOnlyPrs();
80   void OnErasePrs();
81   void OnEraseAll();
82
83   void OnMakeSurfaceframe();
84   void OnMakeInsideframe();
85   void OnMakeWireframe();
86   void OnMakeSurface();
87   void OnMakePoints();
88   void OnMakeShrink();
89
90   void OnChangeColor();
91   void OnChangeWireframeColor();
92   void OnChangeOpacity();
93   void OnChangeLines();
94
95   void OnShowTable();
96   void OnCreateTable();
97   void OnDeleteObjects();
98   void OnPlotData();
99   void OnCurveProperties();
100   void OnClearContainer();
101   void OnEditContainer();
102
103   void OnMergeScalarBars();
104   void OnFreeScalarBars();
105
106   void OnSaveViewParams();
107   void OnRestoreViewParams();
108
109   void OnRename();
110   void OnClippingPlanes();
111   void OnSweep();
112   void OnTimeAnimation();
113   void OnShowAnimation();
114
115   void OnCopyPresentation();
116
117   void OnSelectionInfo();
118
119   void OnTranslatePrs();
120   void OnArrangeActors();
121
122   void OnScaling();
123   void OnCubeAxes();
124
125 protected:
126   virtual SalomeApp_Selection* createSelection() const;
127
128 private:
129   void createActions();
130   void createMenus();
131   void createToolBars();
132   void createPopupMenus();
133 };
134
135 #endif