Salome HOME
1291337bce8ca55fdeb135f2f9101c052094dc5e
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : OperationGUI_ChamferDlg.h
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_CHAMFER_H
30 #define DIALOGBOX_CHAMFER_H
31
32 #include "GEOMBase_Skeleton.h"
33 #include <TColStd_IndexedMapOfInteger.hxx>
34
35 class DlgRef_SpinBox;
36
37 //=================================================================================
38 // class    : OperationGUI_ChamferDlg
39 // purpose  :
40 //=================================================================================
41 class OperationGUI_ChamferDlg : public GEOMBase_Skeleton
42
43     Q_OBJECT
44
45   enum { MainObj1, MainObj2, Face1, Face2, MainObj3, Faces };
46   enum { SpinBox1, SpinBox21, SpinBox22, SpinBox31, SpinBox32 };
47
48 public:
49                                         OperationGUI_ChamferDlg( QWidget* parent,
50                                                                  SALOME_Selection* Sel );
51     virtual                             ~OperationGUI_ChamferDlg();
52
53 protected:
54     // redefined from GEOMBase_Helper
55     virtual                             GEOM::GEOM_IOperations_ptr createOperation();
56     virtual                             bool isValid( QString& msg );
57     virtual                             bool execute( ObjectList& objects );    
58
59 private slots:
60
61     void                                ClickOnOk();
62     bool                                ClickOnApply();
63     void                                ActivateThisDialog();
64     void                                DeactivateActiveDialog();
65     void                                LineEditReturnPressed();
66     void                                SelectionIntoArgument();
67     void                                SetEditCurrentArgument();
68     void                                ValueChangedInSpinBox( double newValue );
69     void                                ConstructorsClicked( int constructorId );
70
71 private :
72
73     void                                Init( SALOME_Selection* );
74     void                                enterEvent( QEvent* e );
75     void                                reset();
76     void                                createSelWg( const QString&, QPixmap&, QWidget*, const int );
77     int                                 getConstructorId() const;
78     void                                activateSelection();
79     void                                enableWidgets();
80
81 private:
82
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     QFrame*                             myGrp1;
90     QFrame*                             myGrp2;
91     QFrame*                             myGrp3;
92
93     QMap< int, QPushButton* >           mySelBtn;
94     QMap< int, QLineEdit* >             mySelName;
95     QMap< int, DlgRef_SpinBox* >        mySpinBox;
96 };
97
98 #endif // DIALOGBOX_CHAMFER_H
99