Salome HOME
*** empty log message ***
[modules/geom.git] / src / BlocksGUI / BlocksGUI_BlockDlg.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.com
20 //
21 // File   : BlocksGUI_BlockDlg.h
22 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
23 //
24
25 #ifndef BLOCKSGUI_BLOCKDLG_H
26 #define BLOCKSGUI_BLOCKDLG_H
27
28 #include <GEOMBase_Skeleton.h>
29
30 class DlgRef_2Sel;
31 class DlgRef_6Sel;
32
33 //=================================================================================
34 // class    : BlocksGUI_BlockDlg
35 // purpose  :
36 //=================================================================================
37 class BlocksGUI_BlockDlg : public GEOMBase_Skeleton
38 {
39   Q_OBJECT
40
41 public:
42   BlocksGUI_BlockDlg( GeometryGUI*, QWidget* );
43   ~BlocksGUI_BlockDlg();
44
45 protected:
46   // redefined from GEOMBase_Helper
47   virtual GEOM::GEOM_IOperations_ptr createOperation();
48   virtual bool                       isValid( QString& );
49   virtual bool                       execute( ObjectList&);
50
51 private:
52   void                               Init();
53   void                               enterEvent( QEvent* );
54
55 private:
56   int                                myConstructorId;
57
58   GEOM::GEOM_Object_var              myFace1, myFace2;
59   GEOM::GEOM_Object_var              myFace3, myFace4, myFace5, myFace6;
60
61   DlgRef_2Sel*                       Group2F;
62   DlgRef_6Sel*                       Group6F;
63
64 private slots:
65   void                               ClickOnOk();
66   bool                               ClickOnApply();
67   void                               ActivateThisDialog();
68   void                               ConstructorsClicked( int );
69
70   void                               SelectionIntoArgument();
71   void                               SetEditCurrentArgument();
72 };
73
74 #endif // BLOCKSGUI_BLOCKDLG_H