Salome HOME
ca0461d5d72389da817fc57c2da78bf44bf8b550
[modules/geom.git] / src / EntityGUI / EntityGUI_FeatureDetectorDlg.h
1 // Copyright (C) 2007-2013  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
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   
69 private:
70   void                               Init();
71   bool                               setSelectionRect();
72   void                               showImageSample();
73   ShapeRec_Parameters*               parametersChanged();
74
75   
76 private slots:
77   void                               SelectionIntoArgument();
78   void                               ConstructorsClicked( int );
79 //   void                               onViewClicked( int );
80   void                               onButtonClicked(); 
81   void                               onCheckBoxClicked( bool );
82   void                               ClickOnOk();
83   bool                               ClickOnApply();
84   
85   
86 private:
87   ShapeRec_FeatureDetector*          myDetector;
88   
89   gp_Ax3                             myWPlane;
90   gp_Ax3                             aGlobalCS;
91   
92   GEOM::GeomObjPtr                   myFace;
93   QString                            myFaceEntry;
94   
95   int                                myConstructorId;
96   
97   DlgRef_1Sel1Frame*                 mySelectionGroup; 
98   DlgRef_1Sel*                       mySelWidget;
99
100   QCheckBox*                         myUseROI;
101   QFrame*                            myCornersParameters;
102   QFrame*                            myContoursParameters;
103   QFrame*                            myCannyParameters;
104   QFrame*                            myColorFilterParameters;
105   QList<QWidget*>                    myWidgets;
106   
107   // Output typeselection widget
108   DlgRef_3Radio*                     myOutputGroup;;
109   
110   gp_Pnt                             myStartPnt;
111   gp_Pnt                             myEndPnt;
112   QRect                              myRect;
113   
114   // Picture dimensions and position
115   int                                height;
116   int                                width;
117   double                             pictureLeft;
118   double                             pictureTop;
119 };