Salome HOME
Bug 0020413: Dump file has many GetMainShape instructions.
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  GEOM GEOMGUI : GUI for Geometry component
23 //  File   : GEOMToolsGUI.h
24 //  Author : Damien COQUERET
25 //  Module : GEOM
26 //  $Header$
27 //
28 #ifndef GEOMTOOLSGUI_H
29 #define GEOMTOOLSGUI_H
30
31 #include "GEOM_ToolsGUI.hxx"
32
33 #include "GEOMGUI.h"
34 #include "GEOM_Displayer.h"
35
36 #include <SALOME_Prs.h>
37
38 #include <SALOMEDSClient.hxx>
39 #include <SALOME_ListIO.hxx>
40
41 #include <CORBA.h>
42
43 #include <qptrlist.h>
44
45 //=================================================================================
46 // class    : GEOMToolsGUI
47 // purpose  :
48 //=================================================================================
49 class GEOMTOOLSGUI_EXPORT GEOMToolsGUI : public GEOMGUI
50 {
51 public :
52   GEOMToolsGUI( GeometryGUI* ); // hide constructor to avoid direct creation
53   ~GEOMToolsGUI();
54
55   bool OnGUIEvent( int theCommandID, SUIT_Desktop* parent );
56   virtual void deactivate();
57
58 private:
59   // Import and export topology methods
60   bool Import();
61   bool Export();
62
63   void OnEditCopy();
64   void OnEditDelete();
65
66   void OnSettingsColor();
67   void OnRename();
68   void OnCheckGeometry();
69
70   // Popup commands
71   void OnAutoColor();
72   void OnDisableAutoColor();
73   void OnColor();
74   void OnTransparency();
75   void OnNbIsos();
76   void OnOpen();
77   void OnSelectOnly(int mode);
78   
79   // Recursive deletion of object with children
80   void removeObjectWithChildren(_PTR(SObject) obj,
81                                 _PTR(Study) aStudy,
82                                 QPtrList<SALOME_View> views,
83                                 GEOM_Displayer* disp);
84 };
85
86 #endif