Salome HOME
Fix memory leaks
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_BoxDlg.h
index 0638af8fea015edaaf775adec47af6c1ce389845..8cb75c19b878799e15ac3d0dd206908e7f6f2d7f 100644 (file)
@@ -1,42 +1,35 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  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 
+//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
+//  This library is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU Lesser General Public
+//  License as published by the Free Software Foundation; either
+//  version 2.1 of the License.
 //
+//  This library is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+//  Lesser General Public License for more details.
 //
-//  File   : PrimitiveGUI_BoxDlg.h
-//  Author : Lucien PIGNOLONI
-//  Module : GEOM
-//  $Header$
-
-#ifndef DIALOGBOX_BOX_H
-#define DIALOGBOX_BOX_H
-
-#include "GEOMBase_Skeleton.h"
-#include "DlgRef_2Sel_QTD.h"
-#include "DlgRef_3Spin.h"
+//  You should have received a copy of the GNU Lesser General Public
+//  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : PrimitiveGUI_BoxDlg.h
+// Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
+//
+#ifndef PRIMITIVEGUI_BOXDLG_H
+#define PRIMITIVEGUI_BOXDLG_H
 
-#include "PrimitiveGUI.h"
+#include <GEOMBase_Skeleton.h>
 
-#include "GEOM_ShapeTypeFilter.hxx"
-#include <gp_Pnt.hxx>
+class DlgRef_2Sel;
+class DlgRef_3Spin;
 
 //=================================================================================
 // class    : PrimitiveGUI_BoxDlg
 //=================================================================================
 class PrimitiveGUI_BoxDlg : public GEOMBase_Skeleton
 {
-    Q_OBJECT
+  Q_OBJECT
 
 public:
-    PrimitiveGUI_BoxDlg(QWidget* parent = 0, const char* name = 0, PrimitiveGUI* thePrimitiveGUI = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0);
-    ~PrimitiveGUI_BoxDlg();
+  PrimitiveGUI_BoxDlg( GeometryGUI*, QWidget* = 0, bool modal = false, Qt::WindowFlags = 0 );
+  ~PrimitiveGUI_BoxDlg();
 
-private :
-    void Init();
-    void enterEvent(QEvent* e);
-    bool TestBoxDimensions(gp_Pnt P1, gp_Pnt P2);
+protected:
+  // redefined from GEOMBase_Helper
+  virtual GEOM::GEOM_IOperations_ptr createOperation();
+  virtual bool                       isValid( QString& );
+  virtual bool                       execute( ObjectList& );
+  virtual void                       addSubshapesToStudy();
 
-    PrimitiveGUI* myPrimitiveGUI;
+private:
+  void                               Init();
+  void                               enterEvent( QEvent* );
 
-    double step;
-    int myConstructorId;
-    Handle(GEOM_ShapeTypeFilter) myVertexFilter;  /* filter for selection */
+private:
+  GEOM::GEOM_Object_var              myPoint1, myPoint2; /* Points containing the vector */
 
-    gp_Pnt myPoint1;   /* Points containing the vector */ 
-    gp_Pnt myPoint2;
-    bool myOkPoint1;   /* true when myPoint is defined */
-    bool myOkPoint2;
+  // to initialize the first selection field with a selected object on the dialog creation
+  bool                               myInitial;
 
-    DlgRef_2Sel_QTD* GroupPoints;
-    DlgRef_3Spin* GroupDimensions;
+  DlgRef_2Sel*                       GroupPoints;
+  DlgRef_3Spin*                      GroupDimensions;
 
 private slots:
-    void ClickOnOk();
-    void ClickOnApply();
-    void ActivateThisDialog();
-    void LineEditReturnPressed();
-    void SelectionIntoArgument();
-    void SetEditCurrentArgument();
-    void ConstructorsClicked(int constructorId);
-    void ValueChangedInSpinBox(double newValue);
-
+  void                               ClickOnOk();
+  bool                               ClickOnApply();
+  void                               ActivateThisDialog();
+  void                               LineEditReturnPressed();
+  void                               SelectionIntoArgument();
+  void                               SetEditCurrentArgument();
+  void                               ConstructorsClicked( int );
+  void                               ValueChangedInSpinBox();
+  void                               SetDoubleSpinBoxStep( double );
 };
 
-#endif // DIALOGBOX_BOX_H
+#endif // PRIMITIVEGUI_BOXDLG_H