Salome HOME
*** empty log message ***
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : GEOMToolsGUI.h
23 // Author : Damien COQUERET, Open CASCADE S.A.S.
24 //
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 theCommandID, SUIT_Desktop* parent );
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 OnSettingsIsos();
64   void OnSettingsStep();
65   void OnRename();
66   void OnCheckGeometry();
67
68   // Popup commands
69   void OnColor();
70   void OnTransparency();
71   void OnNbIsos();
72   void OnOpen();
73   void OnSelectOnly(int mode);
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   // Recursive deletion of object with children
81   void RemoveObjectWithChildren(_PTR(SObject) obj,
82                                 _PTR(Study) aStudy,
83                                 QList<SALOME_View*> views,
84                                 GEOM_Displayer* disp);
85
86   //checks if the object passed as the first argument depends on the second arguments
87   bool CheckSubObjectInUse(_PTR(SObject) checkobj,
88                            _PTR(SObject) remobj,
89                            _PTR(Study) aStudy);
90     
91 };
92
93 #endif // GEOMTOOLSGUI_H