Salome HOME
SIGSEGV after inter integration fix for 0020044: EDF 866 GEOM: Extrusion along a...
[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 //
23 //
24 //  File   : OperationGUI_ChamferDlg.h
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27
28 #ifndef DIALOGBOX_CHAMFER_H
29 #define DIALOGBOX_CHAMFER_H
30
31 #include "GEOMBase_Skeleton.h"
32 #include <TColStd_IndexedMapOfInteger.hxx>
33
34 class DlgRef_SpinBox;
35
36 //=================================================================================
37 // class    : OperationGUI_ChamferDlg
38 // purpose  :
39 //=================================================================================
40 class OperationGUI_ChamferDlg : public GEOMBase_Skeleton
41
42     Q_OBJECT
43
44   enum { MainObj1, MainObj2, Face1, Face2, MainObj3, Faces, MainObj4, Edges};
45   enum { SpinBox1,
46          SpinBox21, SpinBox22, SpinBox23, SpinBox24, 
47          SpinBox31, SpinBox32, SpinBox33, SpinBox34,
48          SpinBox41, SpinBox42, SpinBox43, SpinBox44  };
49   enum { RadioButton21, RadioButton22,
50          RadioButton31, RadioButton32,
51          RadioButton41, RadioButton42 };
52 public:
53   OperationGUI_ChamferDlg(GeometryGUI* theGeometryGUI, QWidget* parent);
54   virtual ~OperationGUI_ChamferDlg();
55
56 protected:
57     // redefined from GEOMBase_Helper
58     virtual                             GEOM::GEOM_IOperations_ptr createOperation();
59     virtual                             bool isValid( QString& msg );
60     virtual                             bool execute( ObjectList& objects );    
61
62 private slots:
63     void                                ClickOnOk();
64     bool                                ClickOnApply();
65     void                                ActivateThisDialog();
66     void                                LineEditReturnPressed();
67     void                                RadioButtonPressed();
68     void                                SelectionIntoArgument();
69     void                                SetEditCurrentArgument();
70     void                                ValueChangedInSpinBox( double newValue );
71     void                                ConstructorsClicked( int constructorId );
72
73 private:
74     void                                Init();
75     void                                enterEvent( QEvent* e );
76     void                                reset();
77     void                                createSelWg( const QString&, QPixmap&, QWidget*, const int );
78     int                                 getConstructorId() const;
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     TColStd_IndexedMapOfInteger         myEdges; // indexes of edges from fourth tab (Edges)
89     
90     QFrame*                             myGrp1;
91     QFrame*                             myGrp2;
92     QFrame*                             myGrp3;
93     QFrame*                             myGrp4;
94
95     QMap< int, QPushButton* >           mySelBtn;
96     QMap< int, QLineEdit* >             mySelName;
97     QMap< int, DlgRef_SpinBox* >        mySpinBox;
98     QMap< int, QRadioButton* >          myRadioButton;
99 };
100
101 #endif // DIALOGBOX_CHAMFER_H