]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMToolsGUI/GEOMToolsGUI.h
Salome HOME
Test EXPORTS definition with target name as suggested by cmake
[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, Open CASCADE S.A.S.
25 //
26 #ifndef GEOMTOOLSGUI_H
27 #define GEOMTOOLSGUI_H
28
29 #include "GEOM_ToolsGUI.hxx"
30
31 #include <GEOMGUI.h>
32
33 #include <SALOMEDSClient.hxx>
34
35 class GEOM_Displayer;
36 class SALOME_View;
37 class SALOME_ListIO;
38
39 #include <QList>
40
41 //=================================================================================
42 // class    : GEOMToolsGUI
43 // purpose  :
44 //=================================================================================
45 class GEOMTOOLSGUI_EXPORT GEOMToolsGUI : public GEOMGUI
46 {
47 public:
48   GEOMToolsGUI( GeometryGUI* ); // hide constructor to avoid direct creation
49   ~GEOMToolsGUI();
50
51   bool         OnGUIEvent( int, SUIT_Desktop* );
52   virtual void deactivate();
53
54 private:
55   // Import and export topology methods
56   bool         Import();
57   bool         Export();
58
59   void         OnEditCopy();
60   void         OnEditDelete();
61
62   void         OnSettingsColor();
63   void         OnRename();
64   void         OnCheckGeometry();
65
66   // Popup commands
67   void         OnAutoColor();
68   void         OnDisableAutoColor();
69   void         OnColor();
70   void         OnTransparency();
71   void         OnNbIsos();
72   void         OnOpen();
73   void         OnSelectOnly(int mode);
74   
75   // Recursive deletion of object with children
76   void         removeObjectWithChildren( _PTR(SObject),
77                                          _PTR(Study),
78                                          QList<SALOME_View*>,
79                                          GEOM_Displayer* );
80 };
81
82 #endif // GEOMTOOLSGUI_H