]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI_FaceDlg.h
Salome HOME
Issue 0020904: [CEA 411] export VTK in GEOM
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI_FaceDlg.h
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // GEOM GEOMGUI : GUI for Geometry component
21 // File   : BasicGUI_FaceDlg.h
22 // Author : Dmitry Matveithev, OCN.
23 //
24 #ifndef BASICGUI_FACEDLG_H
25 #define BASICGUI_FACEDLG_H
26
27 #include <GEOMBase_Skeleton.h>
28
29 class DlgRef_2Spin;
30 class DlgRef_1Sel2Spin;
31 class DlgRef_3Radio;
32
33 //=================================================================================
34 // class    : PrimitiveGUI_FaceDlg
35 // purpose  :
36 //=================================================================================
37 class PrimitiveGUI_FaceDlg : public GEOMBase_Skeleton
38
39   Q_OBJECT
40
41 public:
42   PrimitiveGUI_FaceDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
43   ~PrimitiveGUI_FaceDlg();
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   virtual void                       addSubshapesToStudy();
51     
52 private:
53   void                               Init();
54   void                               enterEvent( QEvent* );
55   
56 private:
57   GEOM::GEOM_Object_var              myEdge;
58   GEOM::GEOM_Object_var              myFace;
59
60   int                                myOrientationType;
61   
62   DlgRef_2Spin*                      GroupDimensions;
63   DlgRef_1Sel2Spin*                  GroupPlane;
64   DlgRef_3Radio*                     GroupOrientation;
65   DlgRef_3Radio*                     GroupType;
66     
67 private slots:
68   void                               ClickOnOk();
69   bool                               ClickOnApply();
70
71   void                               ActivateThisDialog();
72   void                               DeactivateActiveDialog();
73   void                               ConstructorsClicked( int );    
74     
75   void                               LineEditReturnPressed();
76   void                               SelectionIntoArgument();
77   void                               SetEditCurrentArgument();
78   void                               ValueChangedInSpinBox( double );
79   void                               SetDoubleSpinBoxStep( double );
80   void                               RadioButtonClicked();
81   void                               TypeButtonClicked();
82 };
83
84 #endif // BASICGUI_FACEDLG_H