Salome HOME
PAL12607: Static objects in Geometry GUI libraries.
[modules/geom.git] / src / OperationGUI / OperationGUI.h
index c30dc16f733dc15f52cd276164ac0ecc0b1331b4..d2bd5662b73ae7698de19de3e08ae9a174aae506 100644 (file)
 //  License along with this library; if not, write to the Free Software 
 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
 // 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 //
 //
 //  File   : OperationGUI.h
 //  Author : Damien COQUERET
 //  Module : GEOM
-//  $Header: 
 
 #ifndef OPERATIONGUI_H
 #define OPERATIONGUI_H
 
+#include "GEOMGUI.h"
 #include "GEOMBase.h"
 
 //=================================================================================
 // class    : OperationGUI
 // purpose  :
 //=================================================================================
-class OperationGUI : public QObject
+class OperationGUI : public GEOMGUI
 {
-  Q_OBJECT /* for QT compatibility */
-
 public :
-  OperationGUI();
+  OperationGUI( GeometryGUI* parent );
   ~OperationGUI();
 
-  static bool OnGUIEvent(int theCommandID, QAD_Desktop* parent);
-
-  void MakePartitionAndDisplay(const GEOM::GEOM_Gen::ListOfIOR& listShapesIOR,
-                              const GEOM::GEOM_Gen::ListOfIOR& listToolsIOR,
-                              const GEOM::GEOM_Gen::ListOfIOR& listKeepInsIOR,
-                              const GEOM::GEOM_Gen::ListOfIOR& listRemoveInsIOR,
-                              const GEOM::shape_type limit ) ;
-  void Archimede(const Handle(SALOME_InteractiveObject)& IO, const double aWeight,
-                const double aWaterDensity, const double aMeshingDeflection);
-
-  /* Method for Fillet */
-  bool OnFilletGetAll(const TopoDS_Shape& ShapeTopo, const double Radius,
-                     const int SubShapeType, const char* ShapeTopoIOR);
-  bool OnFilletGetSelected(const TopoDS_Shape& ShapeTopo, const char* ShapeTopoIOR,
-                          const double Radius, const int SubShapeType,
-                          Standard_Integer& aLocalContextId, bool& myUseLocalContext);
-
-  /* Methods for Chamfer */
-  bool OnChamferGetAll(const TopoDS_Shape& ShapeTopo, const double D1, const double D2, 
-                      const int SubShapeType, const char* ShapeTopoIOR);
-  bool OnChamferGetSelected(const TopoDS_Shape& ShapeTopo,
-                           const char* ShapeTopoIOR,
-                           const double D1, const double D2, const int SubShapeType,
-                           Standard_Integer& aLocalContextId,
-                           bool& myUseLocalContext);
-
-  GEOMBase* myGeomBase;
-  GEOMContext* myGeomGUI;
-  GEOM::GEOM_Gen_var myGeom;   /* Current Geom Component */
-
+  bool OnGUIEvent(int theCommandID, SUIT_Desktop* parent);
 };
 
 #endif