Salome HOME
bcc26b57c09cbb1f9a8f42241b94ca412779fe2e
[modules/geom.git] / src / OperationGUI / OperationGUI_ChamferDlg.h
1 // Copyright (C) 2007-2023  CEA, EDF, 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   virtual QList<GEOM::GeomObjPtr>     getSourceObjects();
70
71 private slots:
72   void                                ClickOnOk();
73   bool                                ClickOnApply();
74   void                                ActivateThisDialog();
75   void                                LineEditReturnPressed();
76   void                                RadioButtonPressed();
77   void                                SelectionIntoArgument();
78   void                                SetEditCurrentArgument();
79   void                                ValueChangedInSpinBox( double );
80   void                                ConstructorsClicked( int );
81
82 private:
83   void                                Init();
84   void                                enterEvent( QEvent* );
85   void                                createSelWg( const QString&, QPixmap&, QWidget*, 
86                                                    QGridLayout*, const int );
87   void                                createRadioWg( const QString&, const QString&, QWidget*, 
88                                                      QGridLayout*, const int, const int, const int );
89   void                                activateSelection();
90   void                                enableWidgets();
91   
92 private:
93   int                                 myConstructorId;
94   
95   GEOM::GEOM_Object_var               myShape; 
96   QMap< int, int >                    myFace;  // indexes of faces from second tab ( Face1,2 )
97   TColStd_IndexedMapOfInteger         myFaces; // indexes of faces from first tab ( Faces )
98   TColStd_IndexedMapOfInteger         myEdges; // indexes of edges from fourth tab (Edges)
99
100   // to initialize the first selection field with a selected object on the dialog creation
101   bool                               myInitial;
102   
103   QGroupBox*                          myGrp1;
104   QGroupBox*                          myGrp2;
105   QGroupBox*                          myGrp3;
106   QGroupBox*                          myGrp4;
107   
108   QMap< int, QPushButton* >           mySelBtn;
109   QMap< int, QLineEdit* >             mySelName;
110   QMap< int, SalomeApp_DoubleSpinBox* > mySpinBox;
111   QMap< int, QRadioButton* >          myRadioButton;
112 };
113
114 #endif // OPERATIONGUI_CHAMFERDLG_H