Salome HOME
Copyrights update 2015.
[modules/geom.git] / src / OperationGUI / OperationGUI_ChamferDlg.h
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : OperationGUI_ChamferDlg.h
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
26 //
27 #ifndef OPERATIONGUI_CHAMFERDLG_H
28 #define OPERATIONGUI_CHAMFERDLG_H
29
30 #include <GEOMBase_Skeleton.h>
31
32 #include <TColStd_IndexedMapOfInteger.hxx>
33
34 #include <QMap>
35
36 class SalomeApp_DoubleSpinBox;
37 class QGroupBox;
38 class QPushButton;
39 class QLineEdit;
40 class QGridLayout;
41 class QRadioButton;
42
43 //=================================================================================
44 // class    : OperationGUI_ChamferDlg
45 // purpose  :
46 //=================================================================================
47 class OperationGUI_ChamferDlg : public GEOMBase_Skeleton
48
49   Q_OBJECT
50
51   enum { MainObj1, MainObj2, Face1, Face2, MainObj3, Faces, MainObj4, Edges};
52   enum { SpinBox1,
53          SpinBox21, SpinBox22, SpinBox23, SpinBox24, 
54          SpinBox31, SpinBox32, SpinBox33, SpinBox34,
55          SpinBox41, SpinBox42, SpinBox43, SpinBox44  };
56   enum { RadioButton21, RadioButton22,
57          RadioButton31, RadioButton32,
58          RadioButton41, RadioButton42 };
59
60 public:
61   OperationGUI_ChamferDlg( GeometryGUI*, QWidget* );
62   virtual ~OperationGUI_ChamferDlg();
63
64 protected:
65   // redefined from GEOMBase_Helper
66   virtual                             GEOM::GEOM_IOperations_ptr createOperation();
67   virtual                             bool isValid( QString& );
68   virtual                             bool execute( ObjectList& );    
69
70 private slots:
71   void                                ClickOnOk();
72   bool                                ClickOnApply();
73   void                                ActivateThisDialog();
74   void                                LineEditReturnPressed();
75   void                                RadioButtonPressed();
76   void                                SelectionIntoArgument();
77   void                                SetEditCurrentArgument();
78   void                                ValueChangedInSpinBox( double );
79   void                                ConstructorsClicked( int );
80
81 private:
82   void                                Init();
83   void                                enterEvent( QEvent* );
84   void                                createSelWg( const QString&, QPixmap&, QWidget*, 
85                                                    QGridLayout*, const int );
86   void                                createRadioWg( const QString&, const QString&, QWidget*, 
87                                                      QGridLayout*, const int, const int, const int );
88   void                                activateSelection();
89   void                                enableWidgets();
90   
91 private:
92   int                                 myConstructorId;
93   
94   GEOM::GEOM_Object_var               myShape; 
95   QMap< int, int >                    myFace;  // indexes of faces from second tab ( Face1,2 )
96   TColStd_IndexedMapOfInteger         myFaces; // indexes of faces from first tab ( Faces )
97   TColStd_IndexedMapOfInteger         myEdges; // indexes of edges from fourth tab (Edges)
98
99   // to initialize the first selection field with a selected object on the dialog creation
100   bool                               myInitial;
101   
102   QGroupBox*                          myGrp1;
103   QGroupBox*                          myGrp2;
104   QGroupBox*                          myGrp3;
105   QGroupBox*                          myGrp4;
106   
107   QMap< int, QPushButton* >           mySelBtn;
108   QMap< int, QLineEdit* >             mySelName;
109   QMap< int, SalomeApp_DoubleSpinBox* > mySpinBox;
110   QMap< int, QRadioButton* >          myRadioButton;
111 };
112
113 #endif // OPERATIONGUI_CHAMFERDLG_H