Salome HOME
epaisseur des polylignes = 2
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PolylineExtractionOp.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <HYDROGUI_PolylineExtractionOp.h>
20 #include <HYDROGUI_Module.h>
21 #include <HYDROGUI_Tool2.h>
22 #include <HYDROGUI_UpdateFlags.h>
23 #include <HYDROData_Document.h>
24 #include <HYDROData_PolylineOperator.h>
25
26 HYDROGUI_PolylineExtractionOp::HYDROGUI_PolylineExtractionOp( HYDROGUI_Module* theModule )
27 : HYDROGUI_Operation( theModule )
28 {
29   setName( tr( "POLYLINE_EXTRACTION" ) );
30 }
31
32 HYDROGUI_PolylineExtractionOp::~HYDROGUI_PolylineExtractionOp()
33 {
34 }
35
36 void HYDROGUI_PolylineExtractionOp::startOperation()
37 {
38     HYDROGUI_Operation::startOperation();
39
40     int anUpdateFlags = UF_ObjBrowser | UF_Model;
41     HYDROGUI_Module* aModule = module();
42
43     HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( aModule );
44     if ( aSeq.IsEmpty() )
45         return;
46
47     startDocOperation();
48     HYDROData_PolylineOperator anOp;
49     for ( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
50     {
51       Handle(HYDROData_Object) anObject = Handle(HYDROData_Object)::DownCast( aSeq.Value( anIndex ) );
52       if( !anObject.IsNull() )
53         anOp.Extract( doc(), anObject );      
54     }
55
56     commitDocOperation();
57     aModule->update( anUpdateFlags );
58     commit();
59 }