1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : MeasureGUI_PointDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
27 #include "MeasureGUI_PointDlg.h"
28 #include "MeasureGUI_Widgets.h"
33 #include <GeometryGUI.h>
35 #include <SUIT_Session.h>
36 #include <SUIT_ResourceMgr.h>
37 #include <SalomeApp_Application.h>
38 #include <LightApp_SelectionMgr.h>
40 #include <TopoDS_Shape.hxx>
42 #include <TopoDS_Vertex.hxx>
43 #include <BRep_Tool.hxx>
45 #include <TopTools_IndexedMapOfShape.hxx>
46 #include <TColStd_IndexedMapOfInteger.hxx>
49 //=================================================================================
50 // class : MeasureGUI_PointDlg()
51 // purpose : Constructs a MeasureGUI_PointDlg which is a child of 'parent'
53 //=================================================================================
54 MeasureGUI_PointDlg::MeasureGUI_PointDlg( GeometryGUI* GUI, QWidget* parent )
55 : MeasureGUI_Skeleton( GUI, parent )
57 QPixmap iconPnt( SUIT_Session::session()->resourceMgr()->loadPixmap(
58 "GEOM", tr( "ICON_DLG_POINT" ) ) );
60 QPixmap iconSelect( SUIT_Session::session()->resourceMgr()->loadPixmap(
61 "GEOM", tr( "ICON_SELECT" ) ) );
63 setWindowTitle( tr( "CAPTION" ) );
65 mainFrame()->GroupConstructors->setTitle( tr( "CAPTION" ) );
66 mainFrame()->RadioButton1->setIcon( iconPnt );
68 myGrp = new MeasureGUI_1Sel3LineEdit( centralWidget() );
69 myGrp->TextLabel1->setText( tr( "POINT" ) );
70 myGrp->PushButton1->setIcon( iconSelect );
71 myGrp->LineEdit1->setReadOnly( true );
72 myGrp->TextLabel2->setText( tr( "X" ) );
73 myGrp->TextLabel3->setText( tr( "Y" ) );
74 myGrp->TextLabel4->setText( tr( "Z" ) );
75 myGrp->LineEdit2->setReadOnly( true );
76 myGrp->LineEdit3->setReadOnly( true );
77 myGrp->LineEdit4->setReadOnly( true );
79 QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
80 layout->setMargin( 0 ); layout->setSpacing( 6 );
81 layout->addWidget( myGrp );
83 myHelpFileName = "point_coordinates_page.html";
89 //=================================================================================
90 // function : ~MeasureGUI_PointDlg()
91 // purpose : Destroys the object and frees any allocated resources
92 //======================myGrp->LineEdit2->setReadOnly( true );===========================================================
93 MeasureGUI_PointDlg::~MeasureGUI_PointDlg()
98 //=================================================================================
101 //=================================================================================
102 void MeasureGUI_PointDlg::Init()
104 QSize aSize( size() );
105 resize( (int)(aSize.width() *0.75 ), aSize.height() );
106 MeasureGUI_Skeleton::Init();
109 //=================================================================================
110 // function : activateSelection
112 //=================================================================================
113 void MeasureGUI_PointDlg::activateSelection()
115 localSelection( TopAbs_VERTEX );
118 //=================================================================================
119 // function : SelectionIntoArgument
121 //=================================================================================
122 void MeasureGUI_PointDlg::SelectionIntoArgument()
126 myGrp->LineEdit1->setText( "" );
127 myGrp->LineEdit2->setText( "" );
128 myGrp->LineEdit3->setText( "" );
129 myGrp->LineEdit4->setText( "" );
131 LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
132 SALOME_ListIO aSelList;
133 aSelMgr->selectedObjects(aSelList);
135 if (aSelList.Extent() < 1)
138 myObj = GEOMBase::ConvertIOinGEOMObject( aSelList.First() );
143 TColStd_IndexedMapOfInteger anIndexes;
144 aSelMgr->GetIndexes(aSelList.First(), anIndexes);
147 if ( anIndexes.Extent() > 1 || !GEOMBase::GetShape( myObj.get(), aShape ) || aShape.IsNull() )
150 TopoDS_Vertex aPoint;
151 QString aName = GEOMBase::GetName( myObj.get() );
152 if ( anIndexes.Extent() == 0 ) {
153 if ( aShape.ShapeType() == TopAbs_VERTEX )
154 aPoint = TopoDS::Vertex( aShape );
157 int i = anIndexes( 1 );
159 TopTools_IndexedMapOfShape aShapes;
160 TopExp::MapShapes( aShape, aShapes );
162 if ( aShape != aShapes( i ) )
163 aName += QString( ":%1" ).arg( i );
165 aPoint = TopoDS::Vertex( aShapes( i ) );
168 if ( !aPoint.IsNull() ) {
169 gp_Pnt aPnt = BRep_Tool::Pnt( aPoint );
170 myGrp->LineEdit1->setText( aName );
171 SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
172 int aPrecision = resMgr->integerValue( "Geometry", "length_precision", 6 );
173 myGrp->LineEdit2->setText( DlgRef::PrintDoubleValue( aPnt.X(), aPrecision ) );
174 myGrp->LineEdit3->setText( DlgRef::PrintDoubleValue( aPnt.Y(), aPrecision ) );
175 myGrp->LineEdit4->setText( DlgRef::PrintDoubleValue( aPnt.Z(), aPrecision ) );
181 myGrp->LineEdit1->setText( "" );
182 myGrp->LineEdit2->setText( "" );
183 myGrp->LineEdit3->setText( "" );
184 myGrp->LineEdit4->setText( "" );