Salome HOME
Notebook: processed creation of objects dependent on another objects.
[modules/geom.git] / src / BlocksGUI / BlocksGUI_QuadFaceDlg.h
1 //  Copyright (C) 2007-2008  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.
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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : BlocksGUI_QuadFaceDlg.h
24 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
25 //
26 #ifndef BLOCKSGUI_QUADFACEDLG_H
27 #define BLOCKSGUI_QUADFACEDLG_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 #include <QMap>
32
33 class QGroupBox;
34 class QPushButton;
35 class QLineEdit;
36
37 //=================================================================================
38 // class    : BlocksGUI_QuadFaceDlg
39 // purpose  :
40 //=================================================================================
41 class BlocksGUI_QuadFaceDlg : public GEOMBase_Skeleton
42 {
43   Q_OBJECT
44
45   enum { Vertex1, Vertex2, Vertex3, Vertex4,
46          Edge12, Edge22,
47          Edge14, Edge24, Edge34, Edge44 };
48
49 public:
50   BlocksGUI_QuadFaceDlg (GeometryGUI*, QWidget*);
51   ~BlocksGUI_QuadFaceDlg();
52
53 protected:
54   // redefined from GEOMBase_Helper
55   virtual GEOM::GEOM_IOperations_ptr createOperation();
56   virtual bool                       isValid (QString&);
57   virtual bool                       execute (ObjectList&);
58   virtual void                       addSubshapesToStudy();
59
60 private:
61   void                               Init();
62   void                               enterEvent (QEvent*);
63
64   void                               createSelWg (const QString&, QPixmap&,
65                                                   QWidget*, const int);
66   void                               activateSelection();
67
68 private:
69   int                                myConstructorId;
70
71   GEOM::GEOM_Object_var              myShape1;
72   GEOM::GEOM_Object_var              myShape2;
73   GEOM::GEOM_Object_var              myShape3;
74   GEOM::GEOM_Object_var              myShape4;
75
76   // to initialize the first selection field with a selected object on the dialog creation
77   bool                               myInitial;
78
79   QGroupBox*                         myGrp1;
80   QGroupBox*                         myGrp2;
81   QGroupBox*                         myGrp3;
82
83   QMap<int, QPushButton*>            mySelBtn;
84   QMap<int, QLineEdit*>              mySelName;
85
86 private slots:
87   void                               ClickOnOk();
88   bool                               ClickOnApply();
89   void                               ActivateThisDialog();
90   void                               ConstructorsClicked (int);
91
92   void                               SelectionIntoArgument();
93   void                               SetEditCurrentArgument();
94 };
95
96 #endif // BLOCKSGUI_QUADFACEDLG_H