Salome HOME
969cb32634173393d0c9bcd3f5ddf7b412c89a6f
[modules/geom.git] / src / EntityGUI / EntityGUI_SurfFromFaceDlg.h
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // GEOM GEOMGUI : GUI for Geometry component
21 // File   : EntityGUI_SurfFromFaceDlg.h
22
23 #ifndef ENTITYGUI_SURFFROMFACEDLG_H
24 #define ENTITYGUI_SURFFROMFACEDLG_H
25
26
27 #include <GEOMBase_Skeleton.h>
28
29 class DlgRef_1Sel;
30
31 //=================================================================================
32 // class    : EntityGUI_SurfFromFaceDlg
33 // purpose  :
34 //=================================================================================
35 class EntityGUI_SurfFromFaceDlg : public GEOMBase_Skeleton
36
37   Q_OBJECT
38
39 public:
40
41   EntityGUI_SurfFromFaceDlg (GeometryGUI     *theGeometryGUI,
42                              QWidget         *parent = 0,
43                              bool             modal  = false,
44                              Qt::WindowFlags  fl     = 0);
45
46   ~EntityGUI_SurfFromFaceDlg();
47
48 protected:
49  
50   // redefined from GEOMBase_Helper
51   virtual GEOM::GEOM_IOperations_ptr createOperation();
52   virtual bool                       isValid( QString& );
53   virtual bool                       execute( ObjectList& );
54   virtual QList<GEOM::GeomObjPtr>    getSourceObjects();
55
56 private:
57
58   void                               Init();
59   void                               enterEvent( QEvent* );
60
61 private:
62
63   DlgRef_1Sel                       *myGroup;
64   GEOM::GeomObjPtr                   myFace;
65
66 private slots:
67
68   void                               ClickOnOk();
69   bool                               ClickOnApply();
70   void                               SelectionIntoArgument();
71   void                               SetEditCurrentArgument();
72   void                               ActivateThisDialog();
73
74 };
75
76 #endif // ENTITYGUI_SURFFROMFACEDLG_H