Salome HOME
Win32 compilation.
[modules/geom.git] / src / EntityGUI / EntityGUI_FeatureDetectorDlg.h
1 // This library is free software; you can redistribute it and/or
2 // modify it under the terms of the GNU Lesser General Public
3 // License as published by the Free Software Foundation; either
4 // version 2.1 of the License.
5 //
6 // This library is distributed in the hope that it will be useful,
7 // but WITHOUT ANY WARRANTY; without even the implied warranty of
8 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9 // Lesser General Public License for more details.
10 //
11 // You should have received a copy of the GNU Lesser General Public
12 // License along with this library; if not, write to the Free Software
13 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
14 //
15 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
16 //
17
18 // GEOM GEOMGUI : GUI for Geometry component
19 // File   : EntityGUI_SketcherDlg.cxx
20 // Author : Renaud NEDELEC, Open CASCADE S.A.S.
21
22
23 #include <GEOMBase_Skeleton.h>
24 #include <gp_Ax3.hxx>
25 #include <QBitmap>
26
27 class QLineEdit;
28 class QCheckBox;
29 class QGroupBox;
30 class QPushButton;
31 class QLabel;
32 class QPoint;
33 class DlgRef_3Radio;
34 class DlgRef_1Sel;
35 class DlgRef_1Sel1Frame;
36
37 class gp_Pnt;
38 class ShapeRec_FeatureDetector;
39
40 //=================================================================================
41 // class    : EntityGUI_Dlg
42 // purpose  :
43 //=================================================================================
44 class EntityGUI_FeatureDetectorDlg : public GEOMBase_Skeleton
45
46   Q_OBJECT
47
48 public:
49   EntityGUI_FeatureDetectorDlg(GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0);
50   ~EntityGUI_FeatureDetectorDlg();
51   
52   bool                               acceptMouseEvent() const;
53   void                               setStartPnt     ( const gp_Pnt& );
54   void                               setEndPnt       ( const gp_Pnt& );
55   int                                getConstructorId() {return myConstructorId;};
56   
57 protected:
58   // redefined from GEOMBase_Helper
59   virtual GEOM::GEOM_IOperations_ptr createOperation();
60   virtual bool                       execute( ObjectList& );
61   
62 private:
63   void                               Init();
64   bool                               setSelectionRect();
65   void                               showImageSample();
66
67   
68 private slots:
69   void                               SelectionIntoArgument();
70   void                               ConstructorsClicked( int );
71 //   void                               onViewClicked( int );
72   void                               onButtonClicked(); 
73   void                               ClickOnOk();
74   bool                               ClickOnApply();
75   
76   
77 private:
78   ShapeRec_FeatureDetector*          aDetector;
79   
80   gp_Ax3                             myWPlane;
81   gp_Ax3                             aGlobalCS;
82   
83   GEOM::GeomObjPtr                   myFace;
84   QString                            myFaceEntry;
85   
86   int                                myConstructorId;
87   
88   DlgRef_1Sel1Frame*                 mySelectionGroup; 
89   DlgRef_1Sel*                       mySelWidget;
90   
91   // Output typeselection widget
92   DlgRef_3Radio*                     myOutputGroup;;
93   
94   gp_Pnt                             myStartPnt;
95   gp_Pnt                             myEndPnt;
96   QRect                              myRect;
97   
98   // Picture dimensions and position
99   int                                height;
100   int                                width;
101   double                             pictureLeft;
102   double                             pictureTop;
103 };