Salome HOME
494c8071661ca17f196bd018b7461ec1cf6eb90a
[modules/geom.git] / src / RepairGUI / RepairGUI_GlueDlg.h
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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
23 //  GEOM GEOMGUI : GUI for Geometry component
24 //  File   : RepairGUI_GlueDlg.h
25 //  Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26
27 #ifndef REPAIRGUI_GLUEDLG_H
28 #define REPAIRGUI_GLUEDLG_H
29
30 #include <GEOMBase_Skeleton.h>
31
32 #include <TopAbs.hxx>
33
34 #include <QList>
35
36 class DlgRef_1SelExt;
37 class SalomeApp_DoubleSpinBox;
38 class QPushButton;
39 class QCheckBox;
40
41 //=================================================================================
42 // class    : RepairGUI_GlueDlg
43 // purpose  :
44 //=================================================================================
45 class RepairGUI_GlueDlg : public GEOMBase_Skeleton
46 {
47   Q_OBJECT
48
49 public:
50   RepairGUI_GlueDlg (GeometryGUI*, QWidget* = 0, bool = false, TopAbs_ShapeEnum theGlueMode = TopAbs_FACE);
51   ~RepairGUI_GlueDlg();
52
53 protected:
54   // redefined from GEOMBase_Helper
55   virtual GEOM::GEOM_IOperations_ptr createOperation();
56   virtual bool                       isValid (QString&);
57   virtual bool                       execute (ObjectList&);
58   virtual void                       restoreSubShapes (SALOMEDS::Study_ptr, SALOMEDS::SObject_ptr);
59
60 private:
61   void                               Init();
62   void                               enterEvent (QEvent*);
63   void                               initSelection();
64
65   void                               clearTemporary();
66
67   // Reimplementation of onAccept for local case of this class.
68   bool                               onAcceptLocal();
69   void                               clearShapeBufferLocal (GEOM::GEOM_Object_ptr);
70
71   void                               activateSelection();
72   void                               updateButtonState();
73   void                               selectTmpInViewer();
74
75 private:
76   QList<GEOM::GeomObjPtr>            myObjects;
77   QList<GEOM::GeomObjPtr>            myTmpObjs;
78
79   DlgRef_1SelExt*                    GroupPoints;
80   DlgRef_1SelExt*                    GroupPoints2;
81   SalomeApp_DoubleSpinBox*           myTolEdt;
82   SalomeApp_DoubleSpinBox*           myTolEdt2;
83   QPushButton*                       myDetectBtn;
84   QCheckBox*                         mySubShapesChk;
85   QCheckBox*                         myGlueAllEdgesChk;
86
87   int                                myCurrConstrId;
88
89   TopAbs_ShapeEnum                   myGlueMode;
90
91 protected slots:
92   virtual void                       ClickOnCancel();
93
94 private slots:
95   void                               ClickOnOk();
96   bool                               ClickOnApply();
97
98   void                               ActivateThisDialog();
99
100   void                               LineEditReturnPressed();
101   void                               SelectionIntoArgument();
102   void                               SetEditCurrentArgument();
103
104   void                               ConstructorsClicked (int);
105
106   void                               onDetect();
107   void                               onTolerChanged (double);
108   void                               onSubShapesChk();
109 };
110
111 #endif // REPAIRGUI_GLUEDLG_H