Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/geom.git] / src / BlocksGUI / BlocksGUI_QuadFaceDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  CEA
4 //
5 //  This library is free software; you can redistribute it and/or
6 //  modify it under the terms of the GNU Lesser General Public
7 //  License as published by the Free Software Foundation; either
8 //  version 2.1 of the License.
9 //
10 //  This library is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  Lesser General Public License for more details.
14 //
15 //  You should have received a copy of the GNU Lesser General Public
16 //  License along with this library; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : BlocksGUI_QuadFaceDlg.h
24 //  Author : Julia DOROVSKIKH
25 //  Module : GEOM
26
27 #ifndef DIALOGBOX_QUAD_FACE_H
28 #define DIALOGBOX_QUAD_FACE_H
29
30 #include "GEOMBase_Skeleton.h"
31
32 //=================================================================================
33 // class    : BlocksGUI_QuadFaceDlg
34 // purpose  :
35 //=================================================================================
36 class BlocksGUI_QuadFaceDlg : public GEOMBase_Skeleton
37 {
38   Q_OBJECT
39
40   enum { Vertex1, Vertex2, Vertex3, Vertex4,
41          Edge12, Edge22,
42          Edge14, Edge24, Edge34, Edge44 };
43
44 public:
45   BlocksGUI_QuadFaceDlg (GeometryGUI*, QWidget* parent, bool modal = FALSE);
46   ~BlocksGUI_QuadFaceDlg();
47
48 protected:
49   // redefined from GEOMBase_Helper
50   virtual GEOM::GEOM_IOperations_ptr createOperation();
51   virtual                       bool isValid (QString& msg);
52   virtual                       bool execute (ObjectList& objects);
53
54 private:
55   void Init();
56   void enterEvent (QEvent* e);
57
58   void createSelWg (const QString&, QPixmap&, QWidget*, const int);
59   void activateSelection();
60
61 private:
62   int                     myConstructorId;
63
64   GEOM::GEOM_Object_var   myShape1;
65   GEOM::GEOM_Object_var   myShape2;
66   GEOM::GEOM_Object_var   myShape3;
67   GEOM::GEOM_Object_var   myShape4;
68
69   QFrame*                 myGrp1;
70   QFrame*                 myGrp2;
71   QFrame*                 myGrp3;
72
73   QMap<int, QPushButton*> mySelBtn;
74   QMap<int, QLineEdit*>   mySelName;
75
76 private slots:
77   void ClickOnOk();
78   bool ClickOnApply();
79   void ActivateThisDialog();
80   void ConstructorsClicked( int constructorId );
81
82   void SelectionIntoArgument();
83   void SetEditCurrentArgument();
84 };
85
86 #endif // DIALOGBOX_QUAD_FACE_H