Salome HOME
SMH: 3.0.0 preparation - merged and adopted version (POLYWORK+HEAD)
[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 #include "SALOME_InteractiveObject.hxx"
35
36 #include "VISUConfig.hh"
37
38 #include "SALOMEconfig.h"
39 #include CORBA_SERVER_HEADER(SALOMEDS)
40 #include CORBA_SERVER_HEADER(VISU_Gen)
41 #include CORBA_SERVER_HEADER(MED_Gen)
42
43 class SUIT_Desktop;
44
45 namespace VISU{
46   class ScalarMap_i;
47 }
48
49 class VisuGUI: public SalomeApp_Module
50 {
51   Q_OBJECT;
52 public:
53
54   VisuGUI();
55   virtual ~VisuGUI();
56
57   virtual void initialize( CAM_Application* );
58   virtual void windows( QMap<int, int>& ) const;
59   virtual void viewManagers( QStringList& ) const;
60   virtual QString engineIOR() const;
61
62 public slots:
63   virtual bool deactivateModule( SUIT_Study* );
64   virtual bool activateModule( SUIT_Study* );
65
66 protected slots:
67   void OnImportFromFile();
68   void OnExploreMEDFile();
69   void OnImportTableFromFile();
70
71   void OnCreateMesh();
72   void OnCreateScalarMap();
73   void OnCreateDeformedShape();
74   void OnCreateVectors();
75   void OnCreateIsoSurfaces();
76   void OnCreateCutPlanes();
77   void OnCreateCutLines();
78   void OnCreateStreamLines();
79   void OnCreateManyMesh();
80   void OnCreatePlot2dView();
81
82   void OnDisplayPrs();
83   void OnDisplayOnlyPrs();
84   void OnErasePrs();
85   void OnEditPrs();
86   void OnDeletePrs();
87   void OnDisplayManyPrs();
88   void OnEraseManyPrs();
89   void OnDisplayOnlyManyPrs();
90   
91   void OnMakeSurfaceframe();
92   void OnMakeInsideframe();
93   void OnMakeWireframe();
94   void OnMakeSurface();
95   void OnMakePoints();
96   void OnMakeShrink();
97   
98   void OnChangeColor();
99   void OnChangeWireframeColor();
100   void OnChangeOpacity();
101   void OnChangeLines();
102   
103   void OnShowTable();
104   void OnCreateTable();
105   void OnDeleteObject();
106   void OnPlotData();
107   void OnCurveProperties();
108   void OnClearContainer();
109   void OnEditContainer();
110   
111   void OnSaveViewParams();
112   void OnRestoreViewParams();
113   void OnDeleteViewParams();
114
115   void OnRename();
116   void OnRenameTable();
117   void OnRenameContainer();
118   void OnSweep();
119   void OnTimeAnimation();
120   
121   void OnCopyPresentation();
122
123   void OnSelectionInfo();
124
125
126 protected:
127   virtual SalomeApp_Selection* createSelection() const;
128
129   void ErasePrs (CORBA::Object_ptr theObject);
130
131 private:
132   void                         createActions();
133   void                         createMenus();
134   void                         createToolBars();
135   void                         createPopupMenus();
136 };
137
138 #endif