]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMToolsGUI/GEOMToolsGUI.h
Salome HOME
Windows porting
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI.h
1 //  GEOM GEOMGUI : GUI for Geometry 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   : GEOMToolsGUI.h
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef GEOMTOOLSGUI_H
30 #define GEOMTOOLSGUI_H
31
32 #include "GEOMGUI.h"
33
34 #include <SALOMEDSClient.hxx>
35 #include <SALOME_ListIO.hxx>
36
37 #include <CORBA.h>
38 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
39 #define GEOMTOOLSGUI_WNT_EXPORT __declspec( dllexport )
40 #else
41 #define GEOMTOOLSGUI_WNT_EXPORT
42 #endif
43 //=================================================================================
44 // class    : GEOMToolsGUI
45 // purpose  :
46 //=================================================================================
47 class GEOMTOOLSGUI_WNT_EXPORT GEOMToolsGUI : public GEOMGUI
48 {
49 public :
50   GEOMToolsGUI( GeometryGUI* ); // hide constructor to avoid direct creation
51   ~GEOMToolsGUI();
52
53   bool OnGUIEvent( int theCommandID, SUIT_Desktop* parent );
54
55 private:
56   // Import and export topology methods
57   bool Import();
58   bool Export();
59
60   void OnEditCopy();
61   void OnEditDelete();
62
63   void OnSettingsColor();
64   void OnSettingsIsos();
65   void OnSettingsStep();
66   void OnRename();
67   void OnCheckGeometry();
68
69   // Popup commands
70   void OnColor();
71   void OnTransparency();
72   void OnNbIsos();
73   void OnOpen();
74
75   // returns name of Module (Component) of given objects (usually selected objects)
76   // if objects belong to different Components, a NULL string is returned.
77   QString getParentComponent( _PTR( Study ), const SALOME_ListIO& );
78   QString getParentComponent( _PTR(SObject) );
79 };
80
81 #endif