Salome HOME
NPAL: 16557, 16558, 16578, 16549, 16561
[modules/geom.git] / src / OperationGUI / OperationGUI_ChamferDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component\r
2 //\r
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,\r
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS \r
5 // \r
6 //  This library is free software; you can redistribute it and/or \r
7 //  modify it under the terms of the GNU Lesser General Public \r
8 //  License as published by the Free Software Foundation; either \r
9 //  version 2.1 of the License. \r
10 // \r
11 //  This library is distributed in the hope that it will be useful, \r
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of \r
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU \r
14 //  Lesser General Public License for more details. \r
15 // \r
16 //  You should have received a copy of the GNU Lesser General Public \r
17 //  License along with this library; if not, write to the Free Software \r
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA \r
19 // \r
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com\r
21 //\r
22 //\r
23 //\r
24 //  File   : OperationGUI_ChamferDlg.h\r
25 //  Author : Damien COQUERET\r
26 //  Module : GEOM\r
27 \r
28 #ifndef DIALOGBOX_CHAMFER_H\r
29 #define DIALOGBOX_CHAMFER_H\r
30 \r
31 #include "GEOMBase_Skeleton.h"\r
32 #include <TColStd_IndexedMapOfInteger.hxx>\r
33 \r
34 class DlgRef_SpinBox;\r
35 \r
36 //=================================================================================\r
37 // class    : OperationGUI_ChamferDlg\r
38 // purpose  :\r
39 //=================================================================================\r
40 class OperationGUI_ChamferDlg : public GEOMBase_Skeleton\r
41\r
42     Q_OBJECT\r
43 \r
44   enum { MainObj1, MainObj2, Face1, Face2, MainObj3, Faces, MainObj4, Edges};\r
45   enum { SpinBox1,\r
46          SpinBox21, SpinBox22, SpinBox23, SpinBox24, \r
47          SpinBox31, SpinBox32, SpinBox33, SpinBox34,\r
48          SpinBox41, SpinBox42, SpinBox43, SpinBox44  };\r
49   enum { RadioButton21, RadioButton22,\r
50          RadioButton31, RadioButton32,\r
51          RadioButton41, RadioButton42 };\r
52 public:\r
53   OperationGUI_ChamferDlg(GeometryGUI* theGeometryGUI, QWidget* parent);\r
54   virtual ~OperationGUI_ChamferDlg();\r
55 \r
56 protected:\r
57     // redefined from GEOMBase_Helper\r
58     virtual                             GEOM::GEOM_IOperations_ptr createOperation();\r
59     virtual                             bool isValid( QString& msg );\r
60     virtual                             bool execute( ObjectList& objects );    \r
61 \r
62 private slots:\r
63     void                                ClickOnOk();\r
64     bool                                ClickOnApply();\r
65     void                                ActivateThisDialog();\r
66     void                                LineEditReturnPressed();\r
67     void                                RadioButtonPressed();\r
68     void                                SelectionIntoArgument();\r
69     void                                SetEditCurrentArgument();\r
70     void                                ValueChangedInSpinBox( double newValue );\r
71     void                                ConstructorsClicked( int constructorId );\r
72 \r
73 private:\r
74     void                                Init();\r
75     void                                enterEvent( QEvent* e );\r
76     void                                reset();\r
77     void                                createSelWg( const QString&, QPixmap&, QWidget*, const int );\r
78     int                                 getConstructorId() const;\r
79     void                                activateSelection();\r
80     void                                enableWidgets();\r
81 \r
82 private:\r
83     int                                 myConstructorId;\r
84 \r
85     GEOM::GEOM_Object_var               myShape; \r
86     QMap< int, int >                    myFace;  // indexes of faces from second tab ( Face1,2 )\r
87     TColStd_IndexedMapOfInteger         myFaces; // indexes of faces from first tab ( Faces )\r
88     TColStd_IndexedMapOfInteger         myEdges; // indexes of edges from fourth tab (Edges)\r
89     \r
90     QFrame*                             myGrp1;\r
91     QFrame*                             myGrp2;\r
92     QFrame*                             myGrp3;\r
93     QFrame*                             myGrp4;\r
94 \r
95     QMap< int, QPushButton* >           mySelBtn;\r
96     QMap< int, QLineEdit* >             mySelName;\r
97     QMap< int, DlgRef_SpinBox* >        mySpinBox;\r
98     QMap< int, QRadioButton* >          myRadioButton;\r
99 };\r
100 \r
101 #endif // DIALOGBOX_CHAMFER_H\r