]> SALOME platform Git repositories - modules/geom.git/blob - src/RepairGUI/RepairGUI_SewingDlg.h
Salome HOME
Fix issue 0020479: EDF 1116 GEOM: Create a group, "Add" button is inactive but "Selec...
[modules/geom.git] / src / RepairGUI / RepairGUI_SewingDlg.h
1 //  Copyright (C) 2007-2008  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.
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 //  GEOM GEOMGUI : GUI for Geometry component
23 //  File   : RepairGUI_SewingDlg.h
24 //  Author : Lucien PIGNOLONI
25 //  Module : GEOM
26 //
27 #ifndef DIALOGBOX_Sewing_H
28 #define DIALOGBOX_Sewing_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "DlgRef_1Sel_Ext.h"
32 #include "QtxDblSpinBox.h"
33
34 #include <TColStd_IndexedMapOfInteger.hxx>
35
36 #include <qcheckbox.h>
37 #include <qbuttongroup.h>
38 #include <qlineedit.h>
39 #include <qlabel.h>
40
41 //=================================================================================
42 // class    : RepairGUI_SewingDlg
43 // purpose  :
44 //=================================================================================
45 class RepairGUI_SewingDlg : public GEOMBase_Skeleton
46 {
47     Q_OBJECT
48
49 public:
50     RepairGUI_SewingDlg(GeometryGUI* theGeometryGUI, QWidget* parent = 0,
51                         const char* name = 0, bool modal = FALSE, WFlags fl = 0);
52     ~RepairGUI_SewingDlg();
53
54 protected:
55     // redefined from GEOMBase_Helper
56     virtual GEOM::GEOM_IOperations_ptr createOperation();
57     virtual bool isValid( QString& );
58     virtual bool execute( ObjectList& objects );
59
60 private:
61     void Init();
62     void enterEvent(QEvent* e);
63     void closeEvent(QCloseEvent* e);
64     void initSelection();
65
66     GEOM::GEOM_Object_var myObject;
67
68     DlgRef_1Sel_Ext* GroupPoints;
69     QtxDblSpinBox*   myTolEdt;
70     QPushButton*     myFreeBoundBtn;
71
72     int myClosed; // Number of free closed boundaries detected. Calculated in execute(), used in onDetect().
73     int myOpen;   // Number of free open   boundaries detected. Calculated in execute(), used in onDetect().
74
75 private slots:
76     void ClickOnOk();
77     bool ClickOnApply();
78
79     void ActivateThisDialog();
80
81     void LineEditReturnPressed();
82     void SelectionIntoArgument();
83     void SetEditCurrentArgument();
84
85     void onDetect();
86 };
87
88 #endif // DIALOGBOX_Sewing_H