Salome HOME
17.12.2013. Added Partition algorithm (draft version).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.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_Operations.h"
24
25 #include "HYDROGUI_CopyPasteOp.h"
26 #include "HYDROGUI_CalculationOp.h"
27 #include "HYDROGUI_ChannelOp.h"
28 #include "HYDROGUI_DataModel.h"
29 #include "HYDROGUI_DeleteOp.h"
30 #include "HYDROGUI_DigueOp.h"
31 #include "HYDROGUI_ExportImageOp.h"
32 #include "HYDROGUI_ImportImageOp.h"
33 #include "HYDROGUI_ImportBathymetryOp.h"
34 #include "HYDROGUI_ImmersibleZoneOp.h"
35 #include "HYDROGUI_Module.h"
36 #include "HYDROGUI_ObserveImageOp.h"
37 #include "HYDROGUI_PolylineOp.h"
38 #include "HYDROGUI_Poly3DOp.h"
39 #include "HYDROGUI_ProfileOp.h"
40 #include "HYDROGUI_RemoveImageRefsOp.h"
41 #include "HYDROGUI_ShowHideOp.h"
42 #include "HYDROGUI_StreamOp.h"
43 #include "HYDROGUI_TwoImagesOp.h"
44 #include "HYDROGUI_UpdateFlags.h"
45 #include "HYDROGUI_UpdateObjectOp.h"
46 #include "HYDROGUI_VisualStateOp.h"
47 #include "HYDROGUI_ImmersibleZoneOp.h"
48 #include "HYDROGUI_ImportGeomObjectOp.h"
49 #include "HYDROGUI_ImportObstacleFromFileOp.h"
50 #include "HYDROGUI_ExportCalculationOp.h"
51 #include "HYDROGUI_ImportProfilesOp.h"
52 #include "HYDROGUI_GeoreferencementOp.h"
53 #include "HYDROGUI_SetColorOp.h"
54 #include "HYDROGUI_Tool.h"
55
56 #include <HYDROData_Document.h>
57 #include <HYDROData_Obstacle.h>
58 #include <HYDROData_SplitToZonesTool.h>
59
60 #include <GeometryGUI.h>
61 #include <GeometryGUI_Operations.h>
62 #include <GEOMBase.h>
63
64 #include <SalomeApp_Study.h>
65
66 #include <LightApp_Application.h>
67
68 #include <CAM_Application.h>
69
70 #include <QtxListAction.h>
71 #include <QtxActionToolMgr.h>
72
73 #include <SUIT_Desktop.h>
74 #include <SUIT_ResourceMgr.h>
75 #include <SUIT_Session.h>
76 #include <SUIT_MessageBox.h>
77
78 #include <QAction>
79 #include <QApplication>
80
81 QAction* HYDROGUI_Module::createAction( const int theId, const QString& theSuffix, const QString& theImg,
82                                         const int theKey, const bool isToggle, const QString& theSlot )
83 {
84   QString aSlot = theSlot;
85   if( aSlot.isEmpty() )
86     aSlot = SLOT( onOperation() );
87   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
88   std::string anImg = theImg.toStdString();
89   QPixmap aPixmap = theImg.isEmpty() ? QPixmap() : aResMgr->loadPixmap( "HYDRO", tr( anImg.c_str() ) );
90   std::string aMenu    = ( "MEN_" + theSuffix ).toStdString();
91   std::string aDesktop = ( "DSK_" + theSuffix ).toStdString();
92   std::string aToolbar = ( "STB_" + theSuffix ).toStdString();
93   std::string aSlotStr = aSlot.toStdString();
94   return LightApp_Module::createAction( theId, tr( aDesktop.c_str() ), aPixmap,
95     tr( aMenu.c_str() ), tr( aToolbar.c_str() ),
96                 theKey, application()->desktop(), isToggle, this, aSlotStr.c_str() );
97 }
98
99 void HYDROGUI_Module::createActions()
100 {
101   createAction( SaveVisualStateId, "SAVE_VISUAL_STATE" );
102   createAction( LoadVisualStateId, "LOAD_VISUAL_STATE" );
103
104   createAction( CopyId, "COPY", "", Qt::CTRL + Qt::Key_C );
105   createAction( PasteId, "PASTE", "", Qt::CTRL + Qt::Key_V );
106
107   createAction( UpdateObjectId, "UPDATE_OBJECT" );
108
109   createAction( ImportImageId, "IMPORT_IMAGE", "IMPORT_IMAGE_ICO", Qt::CTRL + Qt::Key_I );
110   createAction( EditImportedImageId, "EDIT_IMPORTED_IMAGE", "EDIT_IMPORTED_IMAGE_ICO" );
111   createAction( ObserveImageId, "OBSERVE_IMAGE", "OBSERVE_IMAGE_ICO" );
112   createAction( ExportImageId, "EXPORT_IMAGE", "EXPORT_IMAGE_ICO" );
113   createAction( RemoveImageRefsId, "REMOVE_IMAGE_REFERENCE", "REMOVE_IMAGE_REFERENCE_ICO" );
114
115   createAction( CreatePolylineId, "CREATE_POLYLINE", "CREATE_POLYLINE_ICO" );
116   createAction( EditPolylineId, "EDIT_POLYLINE", "EDIT_POLYLINE_ICO" ); 
117
118   createAction( CreatePolyline3DId, "CREATE_POLYLINE_3D", "CREATE_POLYLINE_3D_ICO" );
119   createAction( EditPolyline3DId, "EDIT_POLYLINE_3D", "EDIT_POLYLINE_3D_ICO" ); 
120
121   createAction( CreateProfileId, "CREATE_PROFILE", "CREATE_PROFILE_ICO" );
122   createAction( ImportProfilesId, "IMPORT_PROFILES", "IMPORT_PROFILES_ICO" );
123   createAction( EditProfileId, "EDIT_PROFILE", "EDIT_PROFILE_ICO" ); 
124   createAction( AllGeoreferencementId, "GEOREFERENCEMENT", "GEOREFERENCEMENT_ICO" ); 
125   createAction( SelectedGeoreferencementId, "GEOREFERENCEMENT", "GEOREFERENCEMENT_ICO" ); 
126   
127   createAction( ImportBathymetryId, "IMPORT_BATHYMETRY", "IMPORT_BATHYMETRY_ICO", Qt::CTRL + Qt::Key_B );
128   createAction( EditImportedBathymetryId, "EDIT_IMPORTED_BATHYMETRY", "EDIT_IMPORTED_BATHYMETRY_ICO" );
129
130   createAction( CreateImmersibleZoneId, "CREATE_IMMERSIBLE_ZONE", "CREATE_IMMERSIBLE_ZONE_ICO" );
131   createAction( EditImmersibleZoneId, "EDIT_IMMERSIBLE_ZONE", "EDIT_IMMERSIBLE_ZONE_ICO" );
132
133   createAction( CreateStreamId, "CREATE_STREAM", "CREATE_STREAM_ICO" );
134   createAction( EditStreamId, "EDIT_STREAM", "EDIT_STREAM_ICO" );
135
136   createAction( CreateChannelId, "CREATE_CHANNEL", "CREATE_CHANNEL_ICO" );
137   createAction( EditChannelId, "EDIT_CHANNEL", "EDIT_CHANNEL_ICO" );
138
139   createAction( CreateDigueId, "CREATE_DIGUE", "CREATE_DIGUE_ICO" );
140   createAction( EditDigueId, "EDIT_DIGUE", "EDIT_DIGUE_ICO" );
141
142   createAction( ImportObstacleFromFileId, "IMPORT_OBSTACLE_FROM_FILE", "IMPORT_OBSTACLE_FROM_FILE_ICO" );
143   createAction( ImportGeomObjectId, "IMPORT_GEOM_OBJECT", "IMPORT_GEOM_OBJECT_ICO" );
144   createAction( CreateBoxId, "CREATE_BOX", "CREATE_BOX_ICO" );
145   createAction( CreateCylinderId, "CREATE_CYLINDER", "CREATE_CYLINDER_ICO" );
146
147   createAction( CreateCalculationId, "CREATE_CALCULATION", "CREATE_CALCULATION_ICO" );
148   createAction( EditCalculationId, "EDIT_CALCULATION", "EDIT_CALCULATION_ICO" );
149   createAction( ExportCalculationId, "EXPORT_CALCULATION", "EXPORT_CALCULATION_ICO" );
150
151   createAction( FuseImagesId, "FUSE_IMAGES", "FUSE_IMAGES_ICO" );
152   createAction( EditFusedImageId, "EDIT_FUSED_IMAGE", "EDIT_FUSED_IMAGE_ICO" );
153
154   createAction( CutImagesId, "CUT_IMAGES", "CUT_IMAGES_ICO" );
155   createAction( EditCutImageId, "EDIT_CUT_IMAGE", "EDIT_CUT_IMAGE_ICO" );
156
157   createAction( SplitImageId, "SPLIT_IMAGE", "SPLIT_IMAGE_ICO" );
158   createAction( EditSplittedImageId, "EDIT_SPLITTED_IMAGE", "EDIT_SPLITTED_IMAGE_ICO" );
159
160   createAction( DeleteId, "DELETE", "", Qt::Key_Delete, false,
161                 SLOT( onDelete() ) );
162
163   createAction( SetColorId, "COLOR" );
164
165   createAction( ShowId, "SHOW" );
166   createAction( ShowOnlyId, "SHOW_ONLY" );
167   createAction( ShowAllId, "SHOW_ALL" );
168   createAction( HideId, "HIDE" );
169   createAction( HideAllId, "HIDE_ALL" );
170 }
171
172 void HYDROGUI_Module::createMenus()
173 {
174   int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
175   int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences"
176   createMenu( SaveVisualStateId, aFileMenu, aCustomPos );
177   createMenu( separator(), aFileMenu, -1, aCustomPos );
178
179   int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 );
180   createMenu( UndoId, anEditMenu );
181   createMenu( RedoId, anEditMenu );
182   createMenu( separator(), anEditMenu );
183   createMenu( CopyId, anEditMenu );
184   createMenu( PasteId, anEditMenu );
185
186   int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10
187   int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu );
188   createMenu( ImportImageId, aHydroId, -1, -1 );
189   createMenu( ImportBathymetryId, aHydroId, -1, -1 );
190   createMenu( CreatePolylineId, aHydroId, -1, -1 );
191   createMenu( CreatePolyline3DId, aHydroId, -1, -1 );
192
193   int aNewProfileId = createMenu( tr( "MEN_DESK_PROFILE" ), aHydroId, -1 );
194   createMenu( CreateProfileId, aNewProfileId, -1, -1 );
195   createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
196   createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
197
198   int anArtificialMenuId = createMenu( tr( "MEN_DESK_ARTIFICIAL" ), aHydroId, -1 );
199   createMenu( CreateChannelId, anArtificialMenuId, -1, -1 );
200   createMenu( CreateDigueId, anArtificialMenuId, -1, -1 );
201
202   int aNaturalMenuId = createMenu( tr( "MEN_DESK_NATURAL" ), aHydroId, -1 );
203   createMenu( CreateImmersibleZoneId, aNaturalMenuId, -1, -1 );
204   createMenu( CreateStreamId, aNaturalMenuId, -1, -1 );
205
206   int anObstacleMenuId = createMenu( tr( "MEN_DESK_OBSTACLE" ), aHydroId, -1 );
207   createMenu( ImportObstacleFromFileId, anObstacleMenuId, -1, -1 );
208   createMenu( CreateBoxId, anObstacleMenuId, -1, -1 );
209   createMenu( CreateCylinderId, anObstacleMenuId, -1, -1 );
210
211   createMenu( CreateCalculationId, aHydroId, -1, -1 );
212   createMenu( separator(), aHydroId );
213   createMenu( FuseImagesId, aHydroId, -1, -1 );
214   createMenu( CutImagesId, aHydroId, -1, -1 );
215   createMenu( SplitImageId, aHydroId, -1, -1 );
216   createMenu( separator(), aHydroId );
217 }
218
219 void HYDROGUI_Module::createPopups()
220 {
221 }
222
223 void HYDROGUI_Module::createToolbars()
224 {
225   int aToolBar = createTool( tr( "MEN_DESK_HYDRO" ) );
226   createTool( UndoId, aToolBar );
227   createTool( RedoId, aToolBar );
228
229   createTool( separator(), aToolBar );
230   createTool( ImportImageId, aToolBar );
231   createTool( ImportBathymetryId, aToolBar );
232   createTool( CreatePolylineId, aToolBar );
233   createTool( CreatePolyline3DId, aToolBar );
234
235   createTool( separator(), aToolBar );
236   createTool( CreateProfileId, aToolBar );
237   createTool( ImportProfilesId, aToolBar );
238   createTool( AllGeoreferencementId, aToolBar );
239
240   createTool( separator(), aToolBar );
241   createTool( CreateChannelId, aToolBar );
242   createTool( CreateDigueId, aToolBar );
243
244   createTool( separator(), aToolBar );
245   createTool( CreateImmersibleZoneId, aToolBar );
246   createTool( CreateStreamId, aToolBar );
247
248   createTool( separator(), aToolBar );
249   createTool( ImportObstacleFromFileId, aToolBar );
250   createTool( CreateBoxId, aToolBar );
251   createTool( CreateCylinderId, aToolBar );
252
253   createTool( separator(), aToolBar );
254   createTool( CreateCalculationId, aToolBar );
255
256   createTool( separator(), aToolBar );
257   createTool( FuseImagesId, aToolBar );
258   createTool( CutImagesId, aToolBar );
259   createTool( SplitImageId, aToolBar );
260 }
261
262 void HYDROGUI_Module::createUndoRedoActions()
263 {
264   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
265
266   QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ),
267     aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ),
268     Qt::CTRL + Qt::Key_Z, application()->desktop() );
269     
270   QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ),
271     aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ),
272     Qt::CTRL + Qt::Key_Y, application()->desktop() );
273   
274   registerAction( UndoId, anEditUndo );
275   registerAction( RedoId, anEditRedo );
276
277   anEditUndo->setComment( tr( "STB_UNDO" ) );
278   anEditRedo->setComment( tr( "STB_REDO" ) );
279
280   connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) );
281   connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) );
282 }
283
284 void HYDROGUI_Module::updateUndoRedoControls()
285 {
286   HYDROGUI_DataModel* aModel = getDataModel();
287
288   QtxListAction* aUndoAction = (QtxListAction*)action( UndoId );
289   QtxListAction* aRedoAction = (QtxListAction*)action( RedoId );
290
291   bool aCanUndo = aModel->canUndo();
292   bool aCanRedo = aModel->canRedo();
293
294   if( aCanUndo )
295     aUndoAction->addNames( aModel->undoNames() );
296   aUndoAction->setEnabled( aCanUndo );
297
298   if( aCanRedo )
299     aRedoAction->addNames( aModel->redoNames() );
300   aRedoAction->setEnabled( aCanRedo );
301 }
302
303 void HYDROGUI_Module::onOperation()
304 {
305   const QAction* anAction = dynamic_cast<const QAction*>( sender() );
306   int anId = actionId( anAction );
307   if( anId >= 0 )
308     startOperation( anId );
309 }
310
311 void HYDROGUI_Module::onDelete()
312 {
313   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
314   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
315   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
316     aPolylineOp->deleteSelected();
317   else
318     startOperation( DeleteId );
319 }
320
321 bool HYDROGUI_Module::onUndo( int theNumActions )
322 {
323   QApplication::setOverrideCursor( Qt::WaitCursor );
324   bool anIsOk = true;
325   HYDROGUI_DataModel* aModel = getDataModel();
326   if( aModel )
327   {
328     while( theNumActions > 0 )
329     {
330       if( !aModel->undo() )
331       {
332         anIsOk = false;
333         break;
334       }
335       theNumActions--;
336     }
337     update( UF_All );
338   }
339   QApplication::restoreOverrideCursor();
340   return anIsOk;
341 }
342
343 bool HYDROGUI_Module::onRedo( int theNumActions )
344 {
345   QApplication::setOverrideCursor( Qt::WaitCursor );
346   bool anIsOk = true;
347   HYDROGUI_DataModel* aModel = getDataModel();
348   if( aModel )
349   {
350     while( theNumActions > 0 )
351     {
352       if( !aModel->redo() )
353       {
354         anIsOk = false;
355         break;
356       }
357       theNumActions--;
358     }
359     update( UF_All );
360   }
361   QApplication::restoreOverrideCursor();
362   return anIsOk;
363 }
364
365 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
366 {
367   LightApp_Operation* anOp = 0;
368   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
369   switch( theId )
370   {
371   case SaveVisualStateId:
372   case LoadVisualStateId:
373     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
374     break;
375   case CopyId:
376   case PasteId:
377     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
378     break;
379   case ImportImageId:
380   case EditImportedImageId:
381     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
382     break;
383   case ObserveImageId:
384     anOp = new HYDROGUI_ObserveImageOp( aModule );
385     break;
386   case ExportImageId:
387     anOp = new HYDROGUI_ExportImageOp( aModule );
388     break;
389   case UpdateObjectId:
390     anOp = new HYDROGUI_UpdateObjectOp( aModule );
391     break;
392   case RemoveImageRefsId:
393     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
394     break;
395   case CreatePolyline3DId:
396   case EditPolyline3DId:
397     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
398     break;
399   case CreatePolylineId:
400   case EditPolylineId:
401     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
402     break;
403   case CreateProfileId:
404   case EditProfileId:
405     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
406     break;
407   case ImportProfilesId:
408     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
409     break;
410   case AllGeoreferencementId:
411     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
412     break;
413   case SelectedGeoreferencementId:
414     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
415     break;
416   case ImportBathymetryId:
417   case EditImportedBathymetryId:
418     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
419     break;
420   case CreateImmersibleZoneId:
421   case EditImmersibleZoneId:
422     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
423     break;
424   case CreateStreamId:
425   case EditStreamId:
426     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
427     break;
428   case CreateChannelId:
429   case EditChannelId:
430     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
431     break;
432   case CreateDigueId:
433   case EditDigueId:
434     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
435     break;
436   case CreateCalculationId:
437   case EditCalculationId:
438     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
439     break;
440   case ExportCalculationId:
441     anOp = new HYDROGUI_ExportCalculationOp( aModule );
442     break;
443   case FuseImagesId:
444   case EditFusedImageId:
445     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
446     break;
447   case CutImagesId:
448   case EditCutImageId:
449     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
450     break;
451   case SplitImageId:
452   case EditSplittedImageId:
453     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId );
454     break;
455   case ImportObstacleFromFileId:
456     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
457     break;
458   case ImportCreatedPrimitiveId:
459     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportCreated );
460     break;
461   case ImportGeomObjectId:
462     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelected );
463     break;
464   case CreateBoxId:
465     application()->activateOperation( "Geometry", GEOMOp::OpBox );
466     break;
467   case CreateCylinderId:
468     application()->activateOperation( "Geometry", GEOMOp::OpCylinder );
469     break;
470   case DeleteId:
471     anOp = new HYDROGUI_DeleteOp( aModule );
472     break;
473   case SetColorId:
474     anOp = new HYDROGUI_SetColorOp( aModule );
475     break;
476   case ShowId:
477   case ShowOnlyId:
478   case ShowAllId:
479   case HideId:
480   case HideAllId:
481     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
482     break;
483   }
484
485   if( !anOp )
486     anOp = LightApp_Module::createOperation( theId );
487
488   return anOp;
489 }
490
491 bool HYDROGUI_Module::reusableOperation( const int id )
492 {
493   if ( id == ImportGeomObjectId ) {
494     return false;
495   }
496
497   return LightApp_Module::reusableOperation( id );
498 }
499
500 /**
501  * Called when the operation perfomed by another module is finished.
502  * \param theModuleName the name of the module which perfomed the operation
503  * \param theOperationName the operation name
504  * \param theEntryList the list of the created objects entries
505  */
506 void HYDROGUI_Module::onExternalOperationFinished( const QString& theModuleName,
507                                                    const QString& theOperationName,
508                                                    const QStringList& theEntryList )
509 {
510   // Process "Geometry" module operations with non-empty list of created objects only
511   if ( theModuleName != "Geometry" || theEntryList.isEmpty() ) {
512     return;
513   }
514   
515   // Start import GEOM object operation
516   myGeomObjectsToImport = theEntryList;
517   startOperation( ImportCreatedPrimitiveId );
518   myGeomObjectsToImport.clear();
519 }
520
521 /**
522  * Returns the list of entries of GEOM objects to be imported.
523  */
524 QStringList HYDROGUI_Module::GetGeomObjectsToImport()
525 {
526   return myGeomObjectsToImport;
527 }
528
529 /**
530  * Returns true if the object with the given entry can be renamed.
531  * @param theEntry the object entry
532  */
533 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
534 {
535   // Allow to rename all HYDRO objects
536   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
537   return !anEntity.IsNull();
538 }
539 /**
540  * Returns true if the object with the given entry is renamed.
541  * @param theEntry the object entry
542  * @param theName the new name
543  */
544 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
545 {
546   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
547   bool aRes = false;
548   if ( !anEntity.IsNull() )
549   {
550     HYDROGUI_DataModel* aModel = getDataModel();
551     if( aModel )
552     {
553       if( anEntity->GetName() != theName )
554       {
555         // check that there are no other objects with the same name in the document
556         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
557         if ( anObject.IsNull() )
558         {
559           SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
560           if ( anOp && anOp->inherits( "HYDROGUI_CalculationOp" ) )
561           {
562             anEntity->SetName( theName );
563             aRes = true;
564           }
565           else
566           {
567             aRes = aModel->rename( anEntity, theName );
568           }
569         }
570         else
571         {
572           // Inform the user that the name is already used
573           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
574           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
575           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
576         }
577       }
578     }
579   }
580   return aRes;
581 }