Salome HOME
520bb1ee34552ed8aa8b90f91a1d37c768fb19bd
[modules/geom.git] / src / EntityGUI / EntityGUI_FeatureDetectorDlg.h
1 // Copyright (C) 2007-2023  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   : EntityGUI_SketcherDlg.cxx
25 // Author : Renaud NEDELEC, Open CASCADE S.A.S.
26
27
28 #include <GEOMBase_Skeleton.h>
29 #include <gp_Ax3.hxx>
30 #include <QBitmap>
31
32 class QLineEdit;
33 class QCheckBox;
34 class QGroupBox;
35 class QPushButton;
36 class QLabel;
37 class QFrame;
38 class QPoint;
39 class DlgRef_3Radio;
40 class DlgRef_1Sel;
41 class DlgRef_1Sel1Frame;
42
43 class gp_Pnt;
44 class ShapeRec_FeatureDetector;
45 class ShapeRec_Parameters;
46
47 //=================================================================================
48 // class    : EntityGUI_Dlg
49 // purpose  :
50 //=================================================================================
51 class EntityGUI_FeatureDetectorDlg : public GEOMBase_Skeleton
52
53   Q_OBJECT
54
55 public:
56   EntityGUI_FeatureDetectorDlg(GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0);
57   ~EntityGUI_FeatureDetectorDlg();
58   
59   bool                               acceptMouseEvent() const;
60   void                               setStartPnt     ( const gp_Pnt& );
61   void                               setEndPnt       ( const gp_Pnt& );
62   int                                getConstructorId() {return myConstructorId;};
63   
64 protected:
65   // redefined from GEOMBase_Helper
66   virtual GEOM::GEOM_IOperations_ptr createOperation();
67   virtual bool                       execute( ObjectList& );
68   virtual QList<GEOM::GeomObjPtr>    getSourceObjects();
69   
70 private:
71   void                               Init();
72   bool                               setSelectionRect();
73   void                               showImageSample();
74   ShapeRec_Parameters*               parametersChanged();
75
76   
77 private slots:
78   void                               SelectionIntoArgument();
79   void                               ConstructorsClicked( int );
80 //   void                               onViewClicked( int );
81   void                               onButtonClicked(); 
82   void                               onCheckBoxClicked( bool );
83   void                               ClickOnOk();
84   bool                               ClickOnApply();
85   
86   
87 private:
88   ShapeRec_FeatureDetector*          myDetector;
89   
90   gp_Ax3                             myWPlane;
91   gp_Ax3                             aGlobalCS;
92   
93   GEOM::GeomObjPtr                   myFace;
94   QString                            myFaceEntry;
95   
96   int                                myConstructorId;
97   
98   DlgRef_1Sel1Frame*                 mySelectionGroup; 
99   DlgRef_1Sel*                       mySelWidget;
100
101   QCheckBox*                         myUseROI;
102   QFrame*                            myCornersParameters;
103   QFrame*                            myContoursParameters;
104   QFrame*                            myCannyParameters;
105   QFrame*                            myColorFilterParameters;
106   QList<QWidget*>                    myWidgets;
107   
108   // Output typeselection widget
109   DlgRef_3Radio*                     myOutputGroup;
110   
111   gp_Pnt                             myStartPnt;
112   gp_Pnt                             myEndPnt;
113   QRect                              myRect;
114   
115   // Picture dimensions and position
116   int                                height;
117   int                                width;
118   double                             pictureLeft;
119   double                             pictureTop;
120 };