Salome HOME
0020598: EDF 1191 GEOM : Creation of hexa block from two faces
[modules/geom.git] / src / MeasureGUI / MeasureGUI_MaxToleranceDlg.cxx
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   : MeasureGUI_MaxToleranceDlg.cxx
24 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
25 //
26 #include "MeasureGUI_MaxToleranceDlg.h"
27 #include "MeasureGUI_Widgets.h"
28
29 #include <SUIT_Session.h>
30 #include <SUIT_ResourceMgr.h>
31 #include <SalomeApp_Tools.h>
32
33 //=================================================================================
34 // class    : MeasureGUI_MaxToleranceDlg()
35 // purpose  : Constructs a MeasureGUI_MaxToleranceDlg which is a child of 'parent', with the
36 //            name 'name' and widget flags set to 'f'.
37 //            The dialog will by default be modeless, unless you set 'modal' to
38 //            true to construct a modal dialog.
39 //=================================================================================
40 MeasureGUI_MaxToleranceDlg::MeasureGUI_MaxToleranceDlg( GeometryGUI* GUI, QWidget* parent )
41   : MeasureGUI_Skeleton( GUI, parent )
42 {
43   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap(
44     "GEOM", tr( "ICON_DLG_TOLERANCE" ) ) );
45   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap(
46     "GEOM", tr( "ICON_SELECT" ) ) );
47
48   setWindowTitle( tr( "GEOM_TOLERANCE_TITLE" ) );
49
50   /***************************************************************/
51   
52   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_TOLERANCE" ) );
53   mainFrame()->RadioButton1->setIcon( image0 );
54
55   myGrp = new MeasureGUI_1Sel6LineEdit( centralWidget() );
56   myGrp->GroupBox1->setTitle( tr( "GEOM_TOLERANCE_CONSTR" ) );
57   myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
58   myGrp->TextLabel2->setText( tr( "GEOM_MIN" ) );
59   myGrp->TextLabel3->setText( tr( "GEOM_MAX" ) );
60   myGrp->TextLabel4->setText( tr( "GEOM_TOLERANCE_FACE" ) );
61   myGrp->TextLabel5->setText( tr( "GEOM_TOLERANCE_EDGE" ) );
62   myGrp->TextLabel6->setText( tr( "GEOM_TOLERANCE_VERTEX" ) );
63   myGrp->LineEdit11->setReadOnly( true );
64   myGrp->LineEdit12->setReadOnly( true );
65   myGrp->LineEdit21->setReadOnly( true );
66   myGrp->LineEdit22->setReadOnly( true );
67   myGrp->LineEdit31->setReadOnly( true );
68   myGrp->LineEdit32->setReadOnly( true );
69   myGrp->PushButton1->setIcon( image1 );
70   myGrp->LineEdit1->setReadOnly( true );
71
72   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
73   layout->setMargin( 0 ); layout->setSpacing( 6 );
74   layout->addWidget( myGrp );
75   
76   /***************************************************************/
77
78   myHelpFileName = "using_measurement_tools_page.html#tolerance_anchor";
79   
80   /* Initialisation */
81   Init();
82 }
83
84
85 //=================================================================================
86 // function : ~MeasureGUI_MaxToleranceDlg()
87 // purpose  : Destroys the object and frees any allocated resources
88 //=================================================================================
89 MeasureGUI_MaxToleranceDlg::~MeasureGUI_MaxToleranceDlg()
90 {
91 }
92
93
94 //=================================================================================
95 // function : Init()
96 // purpose  :
97 //=================================================================================
98 void MeasureGUI_MaxToleranceDlg::Init()
99 {
100   mySelBtn = myGrp->PushButton1;
101   mySelEdit = myGrp->LineEdit1;
102   MeasureGUI_Skeleton::Init();
103 }
104
105 //=================================================================================
106 // function : processObject
107 // purpose  :
108 //=================================================================================
109 void MeasureGUI_MaxToleranceDlg::processObject()
110 {
111   double aMinFaceToler, aMaxFaceToler;
112   double aMinEdgeToler, aMaxEdgeToler;
113   double aMinVertexToler, aMaxVertexToler;
114   
115   if ( !getParameters( aMinFaceToler, aMaxFaceToler,
116                        aMinEdgeToler, aMaxEdgeToler,
117                        aMinVertexToler, aMaxVertexToler ) ) {
118     myGrp->LineEdit11->setText( "" );
119     myGrp->LineEdit12->setText( "" );
120
121     myGrp->LineEdit21->setText( "" );
122     myGrp->LineEdit22->setText( "" );
123
124     myGrp->LineEdit31->setText( "" );
125     myGrp->LineEdit32->setText( "" );
126
127     return;
128   }
129
130   double invalidMin = RealLast();
131   double invalidMax = -RealLast();
132
133   myGrp->LineEdit11->setText( aMinFaceToler != invalidMin ? QString( "%1" ).arg( aMinFaceToler, 5, 'e', 8 ) : QString("") );
134   myGrp->LineEdit12->setText( aMaxFaceToler != invalidMax ? QString( "%1" ).arg( aMaxFaceToler, 5, 'e', 8 ) : QString("") );
135
136   myGrp->LineEdit21->setText( aMinEdgeToler != invalidMin ? QString( "%1" ).arg( aMinEdgeToler, 5, 'e', 8 ) : QString("") );
137   myGrp->LineEdit22->setText( aMaxEdgeToler != invalidMax ? QString( "%1" ).arg( aMaxEdgeToler, 5, 'e', 8 ) : QString("") );
138
139   myGrp->LineEdit31->setText( aMinVertexToler != invalidMin ? QString( "%1" ).arg( aMinVertexToler, 5, 'e', 8 ) : QString("") );
140   myGrp->LineEdit32->setText( aMaxVertexToler != invalidMax ? QString( "%1" ).arg( aMaxVertexToler, 5, 'e', 8 ) : QString("") );
141 }
142
143 //=================================================================================
144 // function : getParameters
145 // purpose  : Get tolerances. Returns false is myObj is nill. If there is no a
146 //            type of entity ( face, edge or vertex ) in selected object then corresponding
147 //            tolerances is less than 0
148 //=================================================================================
149 bool MeasureGUI_MaxToleranceDlg::getParameters( double& theMinFaceToler,
150                                                 double& theMaxFaceToler,
151                                                 double& theMinEdgeToler,
152                                                 double& theMaxEdgeToler,
153                                                 double& theMinVertexToler,
154                                                 double& theMaxVertexToler )
155 {
156   if ( myObj->_is_nil() )
157     return false;
158   else {
159     GEOM::GEOM_IMeasureOperations_var anOper = GEOM::GEOM_IMeasureOperations::_narrow( getOperation() );
160     try {
161       anOper->GetTolerance( myObj, 
162                             theMinFaceToler, theMaxFaceToler,   theMinEdgeToler,
163                             theMaxEdgeToler, theMinVertexToler, theMaxVertexToler );
164     }
165     catch( const SALOME::SALOME_Exception& e ) {
166       SalomeApp_Tools::QtCatchCorbaException( e );
167       return false;
168     }
169
170     return anOper->IsDone();
171   }
172 }