]> SALOME platform Git repositories - modules/geom.git/blob - src/BuildGUI/BuildGUI_WireDlg.cxx
Salome HOME
Eliminate useless GetSubShape() lines in the python dump
[modules/geom.git] / src / BuildGUI / BuildGUI_WireDlg.cxx
1 //  Copyright (C) 2007-2010  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
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : BuildGUI_WireDlg.cxx
25 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
26 //
27 #include "BuildGUI_WireDlg.h"
28
29 #include <GEOMImpl_Types.hxx>
30
31 #include <DlgRef.h>
32 #include <GeometryGUI.h>
33 #include <GEOMBase.h>
34
35 #include <SUIT_ResourceMgr.h>
36 #include <SUIT_Session.h>
37 #include <SalomeApp_Application.h>
38 #include <LightApp_SelectionMgr.h>
39 #include <SALOME_ListIteratorOfListIO.hxx>
40
41 #include <TColStd_MapOfInteger.hxx>
42 #include <TColStd_IndexedMapOfInteger.hxx>
43 #include <TopTools_IndexedMapOfShape.hxx>
44 #include <Precision.hxx>
45
46 //=================================================================================
47 // class    : BuildGUI_WireDlg()
48 // purpose  : Constructs a BuildGUI_WireDlg which is a child of 'parent', with the 
49 //            name 'name' and widget flags set to 'f'.
50 //            The dialog will by default be modeless, unless you set 'modal' to
51 //            TRUE to construct a modal dialog.
52 //=================================================================================
53 BuildGUI_WireDlg::BuildGUI_WireDlg( GeometryGUI* theGeometryGUI, QWidget* parent )
54   : GEOMBase_Skeleton( theGeometryGUI, parent )
55 {
56   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_BUILD_WIRE" ) ) );
57   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
58
59   setWindowTitle( tr( "GEOM_WIRE_TITLE" ) );
60
61   /***************************************************************/
62   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_WIRE" ) );
63   mainFrame()->RadioButton1->setIcon( image0 );
64   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
65   mainFrame()->RadioButton2->close();
66   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
67   mainFrame()->RadioButton3->close();
68
69   GroupType = new DlgRef_3Radio( centralWidget() );
70   GroupType->GroupBox1->setTitle( tr( "GEOM_OBJECT_TYPE" ) );
71   GroupType->RadioButton1->setText( tr( "GEOM_EDGE" ) );
72   GroupType->RadioButton2->setText( tr( "GEOM_WIRE" ) );
73   GroupType->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
74   GroupType->RadioButton3->close();
75
76   GroupArgs = new DlgRef_1Sel1Spin( centralWidget() );
77   GroupArgs->GroupBox1->setTitle( tr( "GEOM_WIRE_CONNECT" ) );
78   GroupArgs->TextLabel1->setText( tr( "GEOM_OBJECTS" ) );
79   GroupArgs->PushButton1->setIcon( image1 );
80   GroupArgs->LineEdit1->setReadOnly( true );
81
82   GroupArgs->TextLabel2->setText( tr( "GEOM_TOLERANCE" ) );
83   double SpecificStep = 0.0001;
84   double prec = Precision::Confusion();
85   initSpinBox(GroupArgs->SpinBox_DX, prec, MAX_NUMBER, SpecificStep, "len_tol_precision" );
86   GroupArgs->SpinBox_DX->setValue(prec);
87
88   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
89   layout->setMargin( 0 ); layout->setSpacing( 6 );
90   layout->addWidget( GroupType );
91   layout->addWidget( GroupArgs );
92   /***************************************************************/
93
94   setHelpFileName( "create_wire_page.html" );
95
96   /* Initialisations */
97   Init();
98 }
99
100
101 //=================================================================================
102 // function : ~BuildGUI_WireDlg()
103 // purpose  : Destroys the object and frees any allocated resources
104 //=================================================================================
105 BuildGUI_WireDlg::~BuildGUI_WireDlg()
106 {
107   // no need to delete child widgets, Qt does it all for us
108 }
109
110
111 //=================================================================================
112 // function : Init()
113 // purpose  :
114 //=================================================================================
115 void BuildGUI_WireDlg::Init()
116 {
117   /* init variables */
118   myEditCurrentArgument = GroupArgs->LineEdit1;
119   GroupArgs->LineEdit1->setReadOnly( true );
120   GroupType->RadioButton1->setChecked(true);
121   
122   myEdgesAndWires.clear();
123
124   localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
125
126   /* signals and slots connections */
127   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
128   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
129   connect( GroupArgs->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
130   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
131            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
132
133   connect( GroupType->RadioButton1, SIGNAL( clicked() ), this, SLOT( TypeButtonClicked() ) );
134   connect( GroupType->RadioButton2, SIGNAL( clicked() ), this, SLOT( TypeButtonClicked() ) );
135
136   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
137   connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
138   
139   initName( tr( "GEOM_WIRE" ) );
140   SelectionIntoArgument();
141 }
142
143
144 //=================================================================================
145 // function : ClickOnOk()
146 // purpose  :
147 //=================================================================================
148 void BuildGUI_WireDlg::ClickOnOk()
149 {
150   if ( ClickOnApply() )
151     ClickOnCancel();
152 }
153
154
155 //=================================================================================
156 // function : ClickOnApply()
157 // purpose  :
158 //=================================================================================
159 bool BuildGUI_WireDlg::ClickOnApply()
160 {
161   if ( !onAccept() )
162     return false;
163
164   initName();
165   TypeButtonClicked();
166   myEdgesAndWires.clear();
167   myEditCurrentArgument->setText( "" );
168   return true;
169 }
170
171 //=================================================================================
172 // function : TypeBittonClicked()
173 // purpose  : Radio button management
174 //=================================================================================
175 void BuildGUI_WireDlg::TypeButtonClicked()
176 {
177   if ( GroupType->RadioButton1->isChecked() ) {
178     globalSelection(); // close local contexts, if any
179     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
180     GroupArgs->TextLabel1->setText( tr( "GEOM_EDGE" ) );
181   }
182   else if ( GroupType->RadioButton2->isChecked() ) {
183     globalSelection(); // close local contexts, if any
184     localSelection( GEOM::GEOM_Object::_nil(), TopAbs_WIRE );
185     GroupArgs->TextLabel1->setText( tr( "GEOM_WIRE" ) );
186   }
187   SelectionIntoArgument();
188 }
189
190 //=================================================================================
191 // function : SelectionIntoArgument()
192 // purpose  : Called when selection as changed or other case
193 //=================================================================================
194 void BuildGUI_WireDlg::SelectionIntoArgument()
195 {
196   myEditCurrentArgument->setText( "" );
197
198   QList<TopAbs_ShapeEnum> types;
199   types << TopAbs_EDGE << TopAbs_WIRE;
200   myEdgesAndWires = getSelected( types, -1 );
201
202   if ( !myEdgesAndWires.isEmpty() ) {
203     QString aName = myEdgesAndWires.count() > 1 ? QString( "%1_objects").arg( myEdgesAndWires.count() ) : GEOMBase::GetName( myEdgesAndWires[0].get() );
204     myEditCurrentArgument->setText( aName );
205   }
206 }
207
208
209 //=================================================================================
210 // function : SetEditCurrentArgument()
211 // purpose  :
212 //=================================================================================
213 void BuildGUI_WireDlg::SetEditCurrentArgument()
214 {
215   QPushButton* send = (QPushButton*)sender();
216   if ( send != GroupArgs->PushButton1 )
217     return;
218
219   TypeButtonClicked();
220   myEditCurrentArgument = GroupArgs->LineEdit1;
221
222   myEditCurrentArgument->setFocus();
223   SelectionIntoArgument();
224 }
225
226
227 //=================================================================================
228 // function : ActivateThisDialog()
229 // purpose  :
230 //=================================================================================
231 void BuildGUI_WireDlg::ActivateThisDialog()
232 {
233   GEOMBase_Skeleton::ActivateThisDialog();
234   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
235            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
236
237   TypeButtonClicked();
238 }
239
240 //=================================================================================
241 // function : DeactivateActiveDialog()
242 // purpose  : public slot to deactivate if active
243 //=================================================================================
244 void BuildGUI_WireDlg::DeactivateActiveDialog()
245 {
246   GEOMBase_Skeleton::DeactivateActiveDialog();
247 }
248
249 //=================================================================================
250 // function : enterEvent()
251 // purpose  :
252 //=================================================================================
253 void BuildGUI_WireDlg::enterEvent( QEvent* )
254 {
255   if ( !mainFrame()->GroupConstructors->isEnabled() )
256     ActivateThisDialog();
257 }
258
259 //=================================================================================
260 // function : createOperation
261 // purpose  :
262 //=================================================================================
263 GEOM::GEOM_IOperations_ptr BuildGUI_WireDlg::createOperation()
264 {
265   return getGeomEngine()->GetIShapesOperations( getStudyId() );
266 }
267
268 //=================================================================================
269 // function : isValid
270 // purpose  :
271 //=================================================================================
272 bool BuildGUI_WireDlg::isValid (QString& msg)
273 {
274   return GroupArgs->SpinBox_DX->isValid(msg, !IsPreview()) && !myEdgesAndWires.isEmpty();
275 }
276
277 //=================================================================================
278 // function : execute
279 // purpose  :
280 //=================================================================================
281 bool BuildGUI_WireDlg::execute (ObjectList& objects)
282 {
283   GEOM::GEOM_IShapesOperations_var anOper = GEOM::GEOM_IShapesOperations::_narrow( getOperation() );
284
285   GEOM::ListOfGO_var objlist = new GEOM::ListOfGO();
286   objlist->length( myEdgesAndWires.count() );
287   for ( int i = 0; i < myEdgesAndWires.count(); i++ )
288     objlist[i] = myEdgesAndWires[i].copy();
289
290   GEOM::GEOM_Object_var anObj = anOper->MakeWire(objlist.in(), GroupArgs->SpinBox_DX->value());
291
292   if (!anObj->_is_nil())
293     objects.push_back(anObj._retn());
294
295   return true;
296 }
297
298 //=================================================================================
299 // function : addSubshapeToStudy
300 // purpose  : virtual method to add new SubObjects if local selection
301 //=================================================================================
302 void BuildGUI_WireDlg::addSubshapesToStudy()
303 {
304   for ( int i = 0; i < myEdgesAndWires.count(); i++ )
305     GEOMBase::PublishSubObject( myEdgesAndWires[i].get() );
306 }