Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / RepairGUI / RepairGUI_FuseEdgesDlg.h
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18
19 #ifndef REPAIRGUI_FuseEdgesDLG_H
20 #define REPAIRGUI_FuseEdgesDLG_H
21
22 #include <GEOMBase_Skeleton.h>
23
24 #include <TColStd_IndexedMapOfInteger.hxx>
25
26 class DlgRef_2Sel1Spin;
27
28 //=================================================================================
29 // class    : RepairGUI_FuseEdgesDlg
30 // purpose  :
31 //=================================================================================
32 class RepairGUI_FuseEdgesDlg : public GEOMBase_Skeleton
33 {
34   Q_OBJECT
35
36 public:
37   RepairGUI_FuseEdgesDlg (GeometryGUI*, QWidget*);
38   ~RepairGUI_FuseEdgesDlg();
39
40 protected:
41   // redefined from GEOMBase_Helper
42   virtual GEOM::GEOM_IOperations_ptr createOperation();
43   virtual bool                       isValid (QString&);
44   virtual bool                       execute (ObjectList&);
45   virtual void                       addSubshapesToStudy();
46
47 private slots:
48   void                               ClickOnOk();
49   bool                               ClickOnApply();
50   void                               ActivateThisDialog();
51   void                               LineEditReturnPressed();
52   void                               SelectionIntoArgument();
53   void                               SetEditCurrentArgument();
54
55 private:
56   void                               Init();
57   void                               enterEvent (QEvent*);
58   void                               activateSelection();
59
60 private:
61   GEOM::GEOM_Object_var              myShape;
62   QList<GEOM::GeomObjPtr>            myPoints;
63
64   DlgRef_2Sel1Spin*                  GroupVertexes;
65 };
66
67 #endif // REPAIRGUI_FuseEdgesDLG_H