Salome HOME
Improve actions management
[modules/geom.git] / src / OperationGUI / OperationGUI_ChamferDlg.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   : OperationGUI_ChamferDlg.h
24 // Author : Damien COQUERET, Open CASCADE S.A.S.
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 SalomeApp_DoubleSpinBox;
36 class QGroupBox;
37 class QPushButton;
38 class QLineEdit;
39 class QGridLayout;
40 class QRadioButton;
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, MainObj4, Edges};
51   enum { SpinBox1,
52          SpinBox21, SpinBox22, SpinBox23, SpinBox24, 
53          SpinBox31, SpinBox32, SpinBox33, SpinBox34,
54          SpinBox41, SpinBox42, SpinBox43, SpinBox44  };
55   enum { RadioButton21, RadioButton22,
56          RadioButton31, RadioButton32,
57          RadioButton41, RadioButton42 };
58
59 public:
60   OperationGUI_ChamferDlg( GeometryGUI*, QWidget* );
61   virtual ~OperationGUI_ChamferDlg();
62
63 protected:
64   // redefined from GEOMBase_Helper
65   virtual                             GEOM::GEOM_IOperations_ptr createOperation();
66   virtual                             bool isValid( QString& );
67   virtual                             bool execute( ObjectList& );    
68
69 private slots:
70   void                                ClickOnOk();
71   bool                                ClickOnApply();
72   void                                ActivateThisDialog();
73   void                                LineEditReturnPressed();
74   void                                RadioButtonPressed();
75   void                                SelectionIntoArgument();
76   void                                SetEditCurrentArgument();
77   void                                ValueChangedInSpinBox( double );
78   void                                ConstructorsClicked( int );
79
80 private:
81   void                                Init();
82   void                                enterEvent( QEvent* );
83   void                                createSelWg( const QString&, QPixmap&, QWidget*, 
84                                                    QGridLayout*, const int );
85   void                                createRadioWg( const QString&, const QString&, QWidget*, 
86                                                      QGridLayout*, const int, const int, const int );
87   void                                activateSelection();
88   void                                enableWidgets();
89   
90 private:
91   int                                 myConstructorId;
92   
93   GEOM::GEOM_Object_var               myShape; 
94   QMap< int, int >                    myFace;  // indexes of faces from second tab ( Face1,2 )
95   TColStd_IndexedMapOfInteger         myFaces; // indexes of faces from first tab ( Faces )
96   TColStd_IndexedMapOfInteger         myEdges; // indexes of edges from fourth tab (Edges)
97
98   // to initialize the first selection field with a selected object on the dialog creation
99   bool                               myInitial;
100   
101   QGroupBox*                          myGrp1;
102   QGroupBox*                          myGrp2;
103   QGroupBox*                          myGrp3;
104   QGroupBox*                          myGrp4;
105   
106   QMap< int, QPushButton* >           mySelBtn;
107   QMap< int, QLineEdit* >             mySelName;
108   QMap< int, SalomeApp_DoubleSpinBox* > mySpinBox;
109   QMap< int, QRadioButton* >          myRadioButton;
110 };
111
112 #endif // OPERATIONGUI_CHAMFERDLG_H