Salome HOME
*** empty log message ***
[modules/geom.git] / src / OperationGUI / OperationGUI_ChamferDlg.h
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  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 // File   : OperationGUI_ChamferDlg.h
23 // Author : Damien COQUERET, Open CASCADE S.A.S.
24 //
25
26 #ifndef OPERATIONGUI_CHAMFERDLG_H
27 #define OPERATIONGUI_CHAMFERDLG_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 #include <TColStd_IndexedMapOfInteger.hxx>
32
33 #include <QMap>
34
35 class QDoubleSpinBox;
36 class QGroupBox;
37 class QPushButton;
38 class QLineEdit;
39 class QDoubleSpinBox;
40 class QGridLayout;
41
42 //=================================================================================
43 // class    : OperationGUI_ChamferDlg
44 // purpose  :
45 //=================================================================================
46 class OperationGUI_ChamferDlg : public GEOMBase_Skeleton
47
48   Q_OBJECT
49
50   enum { MainObj1, MainObj2, Face1, Face2, MainObj3, Faces };
51   enum { SpinBox1, SpinBox21, SpinBox22, SpinBox31, SpinBox32 };
52
53 public:
54   OperationGUI_ChamferDlg( GeometryGUI*, QWidget* );
55   virtual ~OperationGUI_ChamferDlg();
56
57 protected:
58   // redefined from GEOMBase_Helper
59   virtual                             GEOM::GEOM_IOperations_ptr createOperation();
60   virtual                             bool isValid( QString& );
61   virtual                             bool execute( ObjectList& );    
62
63 private slots:
64   void                                ClickOnOk();
65   bool                                ClickOnApply();
66   void                                ActivateThisDialog();
67   void                                LineEditReturnPressed();
68   void                                SelectionIntoArgument();
69   void                                SetEditCurrentArgument();
70   void                                ValueChangedInSpinBox( double );
71   void                                ConstructorsClicked( int );
72
73 private:
74   void                                Init();
75   void                                enterEvent( QEvent* );
76   void                                reset();
77   void                                createSelWg( const QString&, QPixmap&, QWidget*, 
78                                                    QGridLayout*, const int );
79   void                                activateSelection();
80   void                                enableWidgets();
81   
82 private:
83   int                                 myConstructorId;
84   
85   GEOM::GEOM_Object_var               myShape; 
86   QMap< int, int >                    myFace;  // indexes of faces from second tab ( Face1,2 )
87   TColStd_IndexedMapOfInteger         myFaces; // indexes of faces from first tab ( Faces )
88   
89   QGroupBox*                          myGrp1;
90   QGroupBox*                          myGrp2;
91   QGroupBox*                          myGrp3;
92   
93   QMap< int, QPushButton* >           mySelBtn;
94   QMap< int, QLineEdit* >             mySelName;
95   QMap< int, QDoubleSpinBox* >        mySpinBox;
96 };
97
98 #endif // OPERATIONGUI_CHAMFERDLG_H