Salome HOME
rnc: Import Picture and Feature Detection dialogs small modifications
[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 <ShapeRec_FeatureDetector.hxx>
26 #include <QBitmap>
27
28 class QLineEdit;
29 class QCheckBox;
30 class QGroupBox;
31 class QPushButton;
32 class QLabel;
33 class QPoint;
34 class DlgRef_3Radio;
35 class DlgRef_1Sel;
36
37 class gp_Pnt;
38
39 //=================================================================================
40 // class    : EntityGUI_Dlg
41 // purpose  :
42 //=================================================================================
43 class EntityGUI_FeatureDetectorDlg : public GEOMBase_Skeleton
44
45   Q_OBJECT
46
47 public:
48   EntityGUI_FeatureDetectorDlg(GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0);
49   ~EntityGUI_FeatureDetectorDlg();
50   
51   bool                               acceptMouseEvent() const;
52 //   void                               OnPointSelected( const gp_Pnt& );
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   void                               showImageSample();
65
66   
67 private slots:
68   void                               SetEditCurrentArgument();
69   void                               SelectionIntoArgument();
70   void                               ConstructorsClicked( int );
71 //   void                               onViewClicked( int );
72   void                               onButtonToggled( bool ); 
73   void                               ClickOnOk();
74   bool                               ClickOnApply();
75   
76   
77 private:
78   ShapeRec_FeatureDetector*          aDetector;
79   
80   GEOM::GeomObjPtr                   myFace;
81   QString                            myFaceEntry;
82   
83   int                                myConstructorId;
84   
85   QGroupBox*                         mySelectionGroup;
86   
87   QLabel*                            mySnapshotLabel;
88   QLabel*                            myImgSampleLabel;
89   
90   DlgRef_1Sel*                       mySelWidget;
91   
92   gp_Pnt                             myStartPnt;
93   gp_Pnt                             myEndPnt;
94   
95   gp_Ax3                             myWPlane;
96   gp_Ax3                             aGlobalCS;
97   
98   QPushButton*                       myPushButton;
99   QPushButton*                       mySelButton;
100   
101   QLineEdit*                         myLineEdit;
102   
103   DlgRef_3Radio*                     myOutputGroup;;
104
105 };