]> SALOME platform Git repositories - modules/geom.git/blob - src/OperationGUI/OperationGUI_ChamferDlg.h
Salome HOME
IPAL20715 impossible to select sub-shape after apply group
[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
25 //  Module : GEOM
26 //
27 #ifndef DIALOGBOX_CHAMFER_H
28 #define DIALOGBOX_CHAMFER_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include <TColStd_IndexedMapOfInteger.hxx>
32
33 class DlgRef_SpinBox;
34
35 //=================================================================================
36 // class    : OperationGUI_ChamferDlg
37 // purpose  :
38 //=================================================================================
39 class OperationGUI_ChamferDlg : public GEOMBase_Skeleton
40
41     Q_OBJECT
42
43   enum { MainObj1, MainObj2, Face1, Face2, MainObj3, Faces, MainObj4, Edges};
44   enum { SpinBox1,
45          SpinBox21, SpinBox22, SpinBox23, SpinBox24, 
46          SpinBox31, SpinBox32, SpinBox33, SpinBox34,
47          SpinBox41, SpinBox42, SpinBox43, SpinBox44  };
48   enum { RadioButton21, RadioButton22,
49          RadioButton31, RadioButton32,
50          RadioButton41, RadioButton42 };
51 public:
52   OperationGUI_ChamferDlg(GeometryGUI* theGeometryGUI, QWidget* parent);
53   virtual ~OperationGUI_ChamferDlg();
54
55 protected:
56     // redefined from GEOMBase_Helper
57     virtual                             GEOM::GEOM_IOperations_ptr createOperation();
58     virtual                             bool isValid( QString& msg );
59     virtual                             bool execute( ObjectList& objects );    
60
61 private slots:
62     void                                ClickOnOk();
63     bool                                ClickOnApply();
64     void                                ActivateThisDialog();
65     void                                LineEditReturnPressed();
66     void                                RadioButtonPressed();
67     void                                SelectionIntoArgument();
68     void                                SetEditCurrentArgument();
69     void                                ValueChangedInSpinBox( double newValue );
70     void                                ConstructorsClicked( int constructorId );
71
72 private:
73     void                                Init();
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     int                                 myConstructorId;
83
84     GEOM::GEOM_Object_var               myShape; 
85     QMap< int, int >                    myFace;  // indexes of faces from second tab ( Face1,2 )
86     TColStd_IndexedMapOfInteger         myFaces; // indexes of faces from first tab ( Faces )
87     TColStd_IndexedMapOfInteger         myEdges; // indexes of edges from fourth tab (Edges)
88     
89     QFrame*                             myGrp1;
90     QFrame*                             myGrp2;
91     QFrame*                             myGrp3;
92     QFrame*                             myGrp4;
93
94     QMap< int, QPushButton* >           mySelBtn;
95     QMap< int, QLineEdit* >             mySelName;
96     QMap< int, DlgRef_SpinBox* >        mySpinBox;
97     QMap< int, QRadioButton* >          myRadioButton;
98 };
99
100 #endif // DIALOGBOX_CHAMFER_H