Salome HOME
Updated copyright comment
[modules/geom.git] / src / MeasureGUI / MeasureGUI_CheckSelfIntersectionsDlg.h
1 // Copyright (C) 2007-2024  CEA, EDF, 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   : MeasureGUI_CheckSelfIntersectionsDlg.h
25
26 #ifndef MEASUREGUI_CHECKSELFINTERDLG_H
27 #define MEASUREGUI_CHECKSELFINTERDLG_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 class QComboBox;
32 class QListWidget;
33 class QTextBrowser;
34
35
36 //=================================================================================
37 // class    : MeasureGUI_CheckSelfIntersectionsDlg
38 // purpose  :
39 //=================================================================================
40
41 class MeasureGUI_CheckSelfIntersectionsDlg : public GEOMBase_Skeleton
42 {
43   Q_OBJECT
44
45 public:
46
47   MeasureGUI_CheckSelfIntersectionsDlg(GeometryGUI*, QWidget*);
48   ~MeasureGUI_CheckSelfIntersectionsDlg();
49
50 protected:
51   // redefined from GEOMBase_Helper
52   virtual GEOM::GEOM_IOperations_ptr  createOperation();
53   virtual bool                        isValid(QString &);
54   virtual bool                        execute(ObjectList &);
55   virtual bool                        extractPrefix() const;
56   virtual GEOM::GEOM_Object_ptr       getFather (GEOM::GEOM_Object_ptr);
57   virtual QList<GEOM::GeomObjPtr>     getSourceObjects();
58
59 private slots:
60
61   void                                onInteListSelectionChanged();
62   void                                onSubShapesListSelectionChanged();
63   void                                clear();
64   void                                onCompute();
65   void                                ClickOnOk();
66   bool                                ClickOnApply();
67   void                                ActivateThisDialog();
68   void                                DeactivateActiveDialog();
69   void                                SelectionIntoArgument();
70   void                                SetEditCurrentArgument();
71   void                                ConstructorsClicked (int);
72   void                                OnGaps(bool);
73
74
75 private:
76
77   void                                Init();
78   void                                activateSelection();
79   void                                enterEvent(QEvent *);
80   bool                                findSelfIntersections
81                                                     (bool    &HasSelfInte,
82                                                      QString &theErrMsg);
83   float                               getDeflection();
84   double                              getTolerance();
85   
86 // Getters
87   QTextBrowser*                       getTextView();
88   QListWidget*                        getInteList();
89   QListWidget*                        getShapeList();
90   QPushButton*                        getComputeButton();
91   QLineEdit*                          getEditObjName();
92   GEOM::GeomObjPtr                    getObj();
93   GEOM::ListOfLong_var                getInters();
94
95
96 private:
97   int                                 myCurrConstrId;
98   // simple
99   QPushButton                        *myComputeButton1;
100   QGroupBox                          *mySimpleGrp;
101   QTextBrowser                       *myTextView1;
102   QPushButton                        *mySelButton1;
103   QLineEdit                          *myEditObjName1;
104   QComboBox                          *myLevelBox;
105   QListWidget                        *myInteList1;
106   QListWidget                        *myShapeList1;
107   GEOM::GeomObjPtr                    myObj1;
108   GEOM::ListOfLong_var                myInters1;
109   // fast
110   QPushButton                        *myComputeButton2;
111   QGroupBox                          *myFastGrp;
112   QTextBrowser                       *myTextView2;
113   QPushButton                        *mySelButton2;
114   QLineEdit                          *myEditObjName2;
115   QCheckBox                          *myDetGaps;
116   SalomeApp_DoubleSpinBox            *myTolerance;
117   SalomeApp_DoubleSpinBox            *myDeflection;
118   QListWidget                        *myInteList2;
119   QListWidget                        *myShapeList2;
120   GEOM::GeomObjPtr                    myObj2;
121   GEOM::ListOfLong_var                myInters2;
122   GEOM::GEOM_IShapesOperations_var    myShapesOper;
123 };
124
125 #endif // MEASUREGUI_CHECKSELFINTERDLG_H