1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : BlocksGUI_QuadFaceDlg.h
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
27 #ifndef BLOCKSGUI_QUADFACEDLG_H
28 #define BLOCKSGUI_QUADFACEDLG_H
30 #include "GEOMBase_Skeleton.h"
31 #include "GEOM_GenericObjPtr.h"
39 //=================================================================================
40 // class : BlocksGUI_QuadFaceDlg
42 //=================================================================================
43 class BlocksGUI_QuadFaceDlg : public GEOMBase_Skeleton
47 enum { Vertex1, Vertex2, Vertex3, Vertex4,
49 Edge14, Edge24, Edge34, Edge44 };
52 BlocksGUI_QuadFaceDlg (GeometryGUI*, QWidget*);
53 ~BlocksGUI_QuadFaceDlg();
56 // redefined from GEOMBase_Helper
57 virtual GEOM::GEOM_IOperations_ptr createOperation();
58 virtual bool isValid (QString&);
59 virtual bool execute (ObjectList&);
60 virtual void addSubshapesToStudy();
61 virtual QList<GEOM::GeomObjPtr> getSourceObjects();
65 void enterEvent (QEvent*);
67 void createSelWg (const QString&, QPixmap&,
69 void activateSelection();
74 GEOM::GeomObjPtr myShape1;
75 GEOM::GeomObjPtr myShape2;
76 GEOM::GeomObjPtr myShape3;
77 GEOM::GeomObjPtr myShape4;
79 // to initialize the first selection field with a selected object on the dialog creation
86 QMap<int, QPushButton*> mySelBtn;
87 QMap<int, QLineEdit*> mySelName;
92 void ActivateThisDialog();
93 void ConstructorsClicked (int);
95 void SelectionIntoArgument();
96 void SetEditCurrentArgument();
99 #endif // BLOCKSGUI_QUADFACEDLG_H