Salome HOME
merge trunk on BR_quadtree 20140820
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Poly3DOp.cxx
1 // Copyright (C) 2007-2013  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 #include "HYDROGUI_Poly3DOp.h"
24
25 #include "HYDROGUI_Module.h"
26 #include <HYDROGUI_DataObject.h>
27 #include "HYDROGUI_Tool.h"
28 #include "HYDROGUI_Poly3DDlg.h"
29 #include "HYDROGUI_UpdateFlags.h"
30
31 #include <HYDROData_Document.h>
32 #include <HYDROData_Polyline3D.h>
33 #include <HYDROData_Profile.h>
34 #include <HYDROData_PolylineXY.h>
35 #include <HYDROData_Bathymetry.h>
36
37 #include <HYDROData_OperationsFactory.h>
38
39 HYDROGUI_Poly3DOp::HYDROGUI_Poly3DOp( HYDROGUI_Module* theModule,
40                                             const bool theIsEdit )
41 : HYDROGUI_Operation( theModule ),
42   myIsEdit( theIsEdit ),
43   myEditedObject( 0 )
44 {
45   setName( theIsEdit ? tr( "EDIT_POLYLINE_3D" ) : tr( "CREATE_POLYLINE_3D" ) );
46 }
47
48 HYDROGUI_Poly3DOp::~HYDROGUI_Poly3DOp()
49 {
50 }
51
52 HYDROGUI_InputPanel* HYDROGUI_Poly3DOp::createInputPanel() const
53 {
54   return new HYDROGUI_Poly3DDlg( module(), getName() );
55 }
56
57 void HYDROGUI_Poly3DOp::startOperation()
58 {
59   HYDROGUI_Operation::startOperation();
60
61   HYDROGUI_Poly3DDlg* aPanel = (HYDROGUI_Poly3DDlg*)inputPanel();
62   aPanel->reset();
63   aPanel->setMode( myIsEdit );
64
65   QString aPoly3DName;
66   if( myIsEdit )
67   {
68     myEditedObject = Handle(HYDROData_Polyline3D)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
69     if( !myEditedObject.IsNull() )
70       aPoly3DName = myEditedObject->GetName();
71   }
72   else
73   {
74     aPoly3DName = HYDROGUI_Tool::GenerateObjectName( module(), tr( "DEFAULT_POLYLINE_3D_NAME" ) );
75   }
76   aPanel->setResultName( aPoly3DName );
77
78   QString aPolyName, aProfileName, aBathName;
79   if( myIsEdit && !myEditedObject.IsNull() )
80   {
81     Handle(HYDROData_ProfileUZ) aProfileUZ = myEditedObject->GetProfileUZ();
82     if( !aProfileUZ.IsNull() )
83     {
84       Handle(HYDROData_Entity) aProfile = aProfileUZ->GetFatherObject();
85       if ( !aProfile.IsNull() )
86         aProfileName = aProfile->GetName();
87     }
88
89     Handle(HYDROData_Entity) aPoly = myEditedObject->GetPolylineXY();
90     if( !aPoly.IsNull() )
91       aPolyName = aPoly->GetName();
92
93     Handle(HYDROData_IAltitudeObject) anAltitudeObj = myEditedObject->GetAltitudeObject();
94     if( !anAltitudeObj.IsNull() )
95       aBathName = anAltitudeObj->GetName();
96
97     aPanel->setSelectedObjects( aPolyName, aProfileName, aBathName );
98   }
99   else if( !myIsEdit )
100   {
101     Handle(HYDROData_Profile) aSelectedProfile =
102       Handle(HYDROData_Profile)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
103     if( !aSelectedProfile.IsNull() )
104     {
105       QString aSelectedName = aSelectedProfile->GetName();
106       aPanel->setPreselectedObject( aSelectedName );
107     }
108   }
109 }
110
111 bool HYDROGUI_Poly3DOp::processApply( int& theUpdateFlags,
112                                       QString& theErrorMsg,
113                                       QStringList& theBrowseObjectsEntries )
114 {
115   HYDROGUI_Poly3DDlg* aPanel = dynamic_cast<HYDROGUI_Poly3DDlg*>( inputPanel() );
116
117   QString aResultName = aPanel->getResultName();
118   if( aResultName.isEmpty() )
119     return false;
120
121   QString aPolyName, aProfileName, aBathName;
122   if( !aPanel->getSelectedObjects( aPolyName, aProfileName, aBathName ) )
123     return false;
124
125   if( !myIsEdit || ( !myEditedObject.IsNull() && myEditedObject->GetName() != aResultName ) )
126   {
127     // check that there are no other objects with the same name in the document
128     Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( module(), aResultName );
129     if( !anObject.IsNull() )
130     {
131       theErrorMsg = tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( aResultName );
132       return false;
133     }
134   }
135
136   Handle(HYDROData_Profile) aProfile = Handle(HYDROData_Profile)::DownCast( 
137     HYDROGUI_Tool::FindObjectByName( module(), aProfileName, KIND_PROFILE ) );
138   Handle(HYDROData_PolylineXY) aPolyline = Handle(HYDROData_PolylineXY)::DownCast( 
139     HYDROGUI_Tool::FindObjectByName( module(), aPolyName, KIND_POLYLINEXY ) );
140   Handle(HYDROData_Bathymetry) aBath = Handle(HYDROData_Bathymetry)::DownCast( 
141     HYDROGUI_Tool::FindObjectByName( module(), aBathName, KIND_BATHYMETRY ) );
142
143   if ( aPolyline.IsNull() || ( aProfile.IsNull() && aBath.IsNull() ) )
144     return false;
145
146   Handle(HYDROData_Polyline3D) aResult;
147   if( myIsEdit )
148   {
149     aResult = myEditedObject;
150   }
151   else
152   {
153     aResult = Handle(HYDROData_Polyline3D)::DownCast( doc()->CreateObject( KIND_POLYLINE ) );
154     QString anEntry = HYDROGUI_DataObject::dataObjectEntry( aResult );
155     theBrowseObjectsEntries.append( anEntry );
156   }
157
158   if( aResult.IsNull() )
159     return false;
160
161   aResult->SetName( aResultName );
162
163   aResult->SetPolylineXY( aPolyline, false );
164   if ( !aProfile.IsNull() )
165   {
166     Handle(HYDROData_ProfileUZ) aProfileUZ = aProfile->GetProfileUZ();
167     if( aProfileUZ.IsNull() )
168       return false;
169     
170     aResult->SetProfileUZ( aProfileUZ );
171   }
172   else
173   {
174     aResult->SetAltitudeObject( aBath );
175   }
176
177   if( !myIsEdit )
178   {
179     aResult->SetBorderColor( HYDROData_Polyline3D::DefaultBorderColor() );
180   }
181
182   aResult->Update();
183
184   if( !myIsEdit )
185   {
186     size_t aViewId = HYDROGUI_Tool::GetActiveOCCViewId( module() );
187     module()->setObjectVisible( aViewId, aPolyline, false );
188     module()->setObjectVisible( aViewId, aProfile, false );
189     module()->setObjectVisible( aViewId, aResult, true );
190   }
191   module()->setIsToUpdate( aResult );
192
193   theUpdateFlags = UF_Model | UF_Viewer | UF_GV_Forced | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
194   return true;
195 }