Salome HOME
Copyright update 2022
[modules/geom.git] / src / RepairGUI / RepairGUI_DivideEdgeDlg.h
index 33b63916e849103c7b91fb713d83bfaf445b7f64..35a7ace4a018fe7f75cfe97556a6d27beb037c4d 100644 (file)
@@ -1,42 +1,37 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+// Copyright (C) 2007-2022  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, or (at your option) any later version.
 //
+// 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-//  File   : RepairGUI_DivideEdgeDlg.h
-//  Author : Lucien PIGNOLONI
-//  Module : GEOM
-//  $Header$
-
-#ifndef DIALOGBOX_DivideEdge_H
-#define DIALOGBOX_DivideEdge_H
 
-#include "GEOMBase_Skeleton.h"
-#include "DlgRef_1Sel_Ext.h"
-#include "QAD_SpinBoxDbl.h"
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : RepairGUI_DivideEdgeDlg.h
+// Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
+//
+#ifndef REPAIRGUI_DIVIDEEDGEDLG_H
+#define REPAIRGUI_DIVIDEEDGEDLG_H
 
-#include <TColStd_IndexedMapOfInteger.hxx>
+#include <GEOMBase_Skeleton.h>
 
-#include <qradiobutton.h>
-#include <qbuttongroup.h>
+class DlgRef_2SelExt;
+class SalomeApp_DoubleSpinBox;
+class QButtonGroup;
 
 //=================================================================================
 // class    : RepairGUI_DivideEdgeDlg
 //=================================================================================
 class RepairGUI_DivideEdgeDlg : public GEOMBase_Skeleton
 {
-    Q_OBJECT
-
+  Q_OBJECT
+      
 public:
-    RepairGUI_DivideEdgeDlg(QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0);
-    ~RepairGUI_DivideEdgeDlg();
-
+  RepairGUI_DivideEdgeDlg( GeometryGUI*, QWidget* = 0, bool = false );
+  ~RepairGUI_DivideEdgeDlg();
+  
 protected:
-    // redefined from GEOMBase_Helper
-    virtual GEOM::GEOM_IOperations_ptr createOperation();
-    virtual bool isValid( QString& );
-    virtual bool execute( ObjectList& objects );
-
-private :
-    void Init();
-    void enterEvent(QEvent* e);
-    void closeEvent(QCloseEvent* e);
-    void initSelection();
-
-    bool getIsByParameter() const;
+  // redefined from GEOMBase_Helper
+  virtual GEOM::GEOM_IOperations_ptr createOperation();
+  virtual bool                       isValid( QString& );
+  virtual bool                       execute( ObjectList& );
+  virtual void                       addSubshapesToStudy();
+  virtual QList<GEOM::GeomObjPtr>    getSourceObjects();
 
-               GEOM::GEOM_Object_var myObject;
-               int myIndex;
+private:
+  void                               Init();
+  void                               enterEvent( QEvent* );
+  void                               initSelection();
+  
+  bool                               getIsByParameter() const;
+  int                                myIndex;
 
-    DlgRef_1Sel_Ext* GroupPoints;
-    QButtonGroup* myIsParameterGr;
-    QAD_SpinBoxDbl* myValEdt;
+private:
+  GEOM::GEOM_Object_var              myObject;
+  QList<GEOM::GeomObjPtr>            myPoints;
+  bool                               myProjectionOK;
 
-private slots:
-    void ClickOnOk();
-    bool ClickOnApply();
-    void ClickOnCancel();
+  DlgRef_2SelExt*                    GroupPoints;
+  QButtonGroup*                      myIsParameterGr;
+  SalomeApp_DoubleSpinBox*           myValEdt;
+  QLabel*                            myValLbl;
 
-    void ActivateThisDialog();
-    void DeactivateActiveDialog();
+protected slots:
+  void                               ClickOnOk();
+  bool                               ClickOnApply();
 
-    void LineEditReturnPressed();
-    void SelectionIntoArgument();
-    void SetEditCurrentArgument();
+  void                               displayPreview();
+  void                               ValueChangedInSpinBox();
+  void                               ActivateThisDialog();
+  void                               LineEditReturnPressed();
+  void                               SelectionIntoArgument();
+  void                               SetEditCurrentArgument();
+  void                               ConstructorsClicked( int );
 };
 
-#endif // DIALOGBOX_DivideEdge_H
+#endif // REPAIRGUI_DIVIDEEDGEDLG_H