Salome HOME
c190be67c44a6b656be5b1af26f2a52ee83e9d48
[modules/geom.git] / src / BlocksGUI / BlocksGUI_QuadFaceDlg.h
1 // Copyright (C) 2007-2023  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, or (at your option) any later version.
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   : BlocksGUI_QuadFaceDlg.h
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
26 //
27 #ifndef BLOCKSGUI_QUADFACEDLG_H
28 #define BLOCKSGUI_QUADFACEDLG_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "GEOM_GenericObjPtr.h"
32
33 #include <QMap>
34
35 class QGroupBox;
36 class QPushButton;
37 class QLineEdit;
38
39 //=================================================================================
40 // class    : BlocksGUI_QuadFaceDlg
41 // purpose  :
42 //=================================================================================
43 class BlocksGUI_QuadFaceDlg : public GEOMBase_Skeleton
44 {
45   Q_OBJECT
46
47   enum { Vertex1, Vertex2, Vertex3, Vertex4,
48          Edge12, Edge22,
49          Edge14, Edge24, Edge34, Edge44 };
50
51 public:
52   BlocksGUI_QuadFaceDlg (GeometryGUI*, QWidget*);
53   ~BlocksGUI_QuadFaceDlg();
54
55 protected:
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();
62
63 private:
64   void                               Init();
65   void                               enterEvent (QEvent*);
66
67   void                               createSelWg (const QString&, QPixmap&,
68                                                   QWidget*, const int);
69   void                               activateSelection();
70
71 private:
72   int                                myConstructorId;
73
74   GEOM::GeomObjPtr                   myShape1;
75   GEOM::GeomObjPtr                   myShape2;
76   GEOM::GeomObjPtr                   myShape3;
77   GEOM::GeomObjPtr                   myShape4;
78
79   // to initialize the first selection field with a selected object on the dialog creation
80   bool                               myInitial;
81
82   QGroupBox*                         myGrp1;
83   QGroupBox*                         myGrp2;
84   QGroupBox*                         myGrp3;
85
86   QMap<int, QPushButton*>            mySelBtn;
87   QMap<int, QLineEdit*>              mySelName;
88
89 private slots:
90   void                               ClickOnOk();
91   bool                               ClickOnApply();
92   void                               ActivateThisDialog();
93   void                               ConstructorsClicked (int);
94
95   void                               SelectionIntoArgument();
96   void                               SetEditCurrentArgument();
97 };
98
99 #endif // BLOCKSGUI_QUADFACEDLG_H