Salome HOME
Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_17Jan08)
[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 <GEOMGUI.h>
30
31 #include <SALOMEDSClient.hxx>
32
33 class GEOM_Displayer;
34 class SALOME_View;
35 class SALOME_ListIO;
36
37 #include <QList>
38
39 //=================================================================================
40 // class    : GEOMToolsGUI
41 // purpose  :
42 //=================================================================================
43 class GEOMToolsGUI : public GEOMGUI
44 {
45 public:
46   GEOMToolsGUI( GeometryGUI* ); // hide constructor to avoid direct creation
47   ~GEOMToolsGUI();
48
49   bool         OnGUIEvent( int, SUIT_Desktop* );
50   virtual void deactivate();
51
52 private:
53   // Import and export topology methods
54   bool         Import();
55   bool         Export();
56
57   void         OnEditCopy();
58   void         OnEditDelete();
59
60   void         OnSettingsColor();
61   void         OnRename();
62   void         OnCheckGeometry();
63
64   // Popup commands
65   void         OnAutoColor();
66   void         OnDisableAutoColor();
67   void         OnColor();
68   void         OnTransparency();
69   void         OnNbIsos();
70   void         OnOpen();
71   void         OnSelectOnly(int mode);
72   
73   // returns name of Module (Component) of given objects (usually selected objects)
74   // if objects belong to different Components, a NULL string is returned.
75   QString      getParentComponent( _PTR(Study), const SALOME_ListIO& );
76   QString      getParentComponent( _PTR(SObject) );
77
78   // Recursive deletion of object with children
79   void         RemoveObjectWithChildren( _PTR(SObject),
80                                          _PTR(Study),
81                                          QList<SALOME_View*>,
82                                          GEOM_Displayer* );
83   
84   //checks if the object passed as the first argument depends on the second arguments
85   bool         CheckSubObjectInUse( _PTR(SObject),
86                                     _PTR(SObject),
87                                     _PTR(Study) );
88 };
89
90 #endif // GEOMTOOLSGUI_H