Salome HOME
77e46dd78ffd779f784eb5d388a536ac9c42fa6d
[modules/geom.git] / src / MeasureGUI / MeasureGUI_CheckSelfIntersectionsDlg.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   : 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
58 private slots:
59
60   void                                onInteListSelectionChanged();
61   void                                onSubShapesListSelectionChanged();
62   void                                clear();
63   void                                onCompute();
64   void                                ClickOnOk();
65   bool                                ClickOnApply();
66   void                                ActivateThisDialog();
67   void                                DeactivateActiveDialog();
68   void                                SelectionIntoArgument();
69   void                                SetEditCurrentArgument();
70
71 private:
72
73   void                                Init();
74   void                                activateSelection();
75   void                                enterEvent(QEvent *);
76   bool                                findSelfIntersections
77                                                     (bool    &HasSelfInte,
78                                                      QString &theErrMsg);
79
80 private:
81
82   QTextBrowser                       *myTextView;
83   QPushButton                        *mySelButton;
84   QLineEdit                          *myEditObjName;
85   QComboBox                          *myLevelBox;
86   QPushButton                        *myComputeButton;
87   QListWidget                        *myInteList;
88   QListWidget                        *myShapeList;
89   GEOM::GEOM_Object_var               myObj;
90   GEOM::ListOfLong_var                myInters;
91 };
92
93 #endif // MEASUREGUI_CHECKSELFINTERDLG_H