Salome HOME
1114381aee4cc4816a9b4f8d480d6bdf4760fc58
[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" );
140   createAction( EditDigueId, "EDIT_DIGUE" );
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
243   createTool( separator(), aToolBar );
244   createTool( CreateImmersibleZoneId, aToolBar );
245   createTool( CreateStreamId, aToolBar );
246
247   createTool( separator(), aToolBar );
248   createTool( ImportObstacleFromFileId, aToolBar );
249   createTool( CreateBoxId, aToolBar );
250   createTool( CreateCylinderId, aToolBar );
251
252   createTool( separator(), aToolBar );
253   createTool( CreateCalculationId, aToolBar );
254
255   createTool( separator(), aToolBar );
256   createTool( FuseImagesId, aToolBar );
257   createTool( CutImagesId, aToolBar );
258   createTool( SplitImageId, aToolBar );
259 }
260
261 void HYDROGUI_Module::createUndoRedoActions()
262 {
263   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
264
265   QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ),
266     aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ),
267     Qt::CTRL + Qt::Key_Z, application()->desktop() );
268     
269   QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ),
270     aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ),
271     Qt::CTRL + Qt::Key_Y, application()->desktop() );
272   
273   registerAction( UndoId, anEditUndo );
274   registerAction( RedoId, anEditRedo );
275
276   anEditUndo->setComment( tr( "STB_UNDO" ) );
277   anEditRedo->setComment( tr( "STB_REDO" ) );
278
279   connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) );
280   connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) );
281 }
282
283 void HYDROGUI_Module::updateUndoRedoControls()
284 {
285   HYDROGUI_DataModel* aModel = getDataModel();
286
287   QtxListAction* aUndoAction = (QtxListAction*)action( UndoId );
288   QtxListAction* aRedoAction = (QtxListAction*)action( RedoId );
289
290   bool aCanUndo = aModel->canUndo();
291   bool aCanRedo = aModel->canRedo();
292
293   if( aCanUndo )
294     aUndoAction->addNames( aModel->undoNames() );
295   aUndoAction->setEnabled( aCanUndo );
296
297   if( aCanRedo )
298     aRedoAction->addNames( aModel->redoNames() );
299   aRedoAction->setEnabled( aCanRedo );
300 }
301
302 void HYDROGUI_Module::onOperation()
303 {
304   const QAction* anAction = dynamic_cast<const QAction*>( sender() );
305   int anId = actionId( anAction );
306   if( anId >= 0 )
307     startOperation( anId );
308 }
309
310 void HYDROGUI_Module::onDelete()
311 {
312   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
313   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
314   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
315     aPolylineOp->deleteSelected();
316   else
317     startOperation( DeleteId );
318 }
319
320 bool HYDROGUI_Module::onUndo( int theNumActions )
321 {
322   QApplication::setOverrideCursor( Qt::WaitCursor );
323   bool anIsOk = true;
324   HYDROGUI_DataModel* aModel = getDataModel();
325   if( aModel )
326   {
327     while( theNumActions > 0 )
328     {
329       if( !aModel->undo() )
330       {
331         anIsOk = false;
332         break;
333       }
334       theNumActions--;
335     }
336     update( UF_All );
337   }
338   QApplication::restoreOverrideCursor();
339   return anIsOk;
340 }
341
342 bool HYDROGUI_Module::onRedo( int theNumActions )
343 {
344   QApplication::setOverrideCursor( Qt::WaitCursor );
345   bool anIsOk = true;
346   HYDROGUI_DataModel* aModel = getDataModel();
347   if( aModel )
348   {
349     while( theNumActions > 0 )
350     {
351       if( !aModel->redo() )
352       {
353         anIsOk = false;
354         break;
355       }
356       theNumActions--;
357     }
358     update( UF_All );
359   }
360   QApplication::restoreOverrideCursor();
361   return anIsOk;
362 }
363
364 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
365 {
366   LightApp_Operation* anOp = 0;
367   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
368   switch( theId )
369   {
370   case SaveVisualStateId:
371   case LoadVisualStateId:
372     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
373     break;
374   case CopyId:
375   case PasteId:
376     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
377     break;
378   case ImportImageId:
379   case EditImportedImageId:
380     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
381     break;
382   case ObserveImageId:
383     anOp = new HYDROGUI_ObserveImageOp( aModule );
384     break;
385   case ExportImageId:
386     anOp = new HYDROGUI_ExportImageOp( aModule );
387     break;
388   case UpdateObjectId:
389     anOp = new HYDROGUI_UpdateObjectOp( aModule );
390     break;
391   case RemoveImageRefsId:
392     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
393     break;
394   case CreatePolyline3DId:
395   case EditPolyline3DId:
396     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
397     break;
398   case CreatePolylineId:
399   case EditPolylineId:
400     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
401     break;
402   case CreateProfileId:
403   case EditProfileId:
404     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
405     break;
406   case ImportProfilesId:
407     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
408     break;
409   case AllGeoreferencementId:
410     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
411     break;
412   case SelectedGeoreferencementId:
413     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
414     break;
415   case ImportBathymetryId:
416   case EditImportedBathymetryId:
417     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
418     break;
419   case CreateImmersibleZoneId:
420   case EditImmersibleZoneId:
421     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
422     break;
423   case CreateStreamId:
424   case EditStreamId:
425     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
426     break;
427   case CreateChannelId:
428   case EditChannelId:
429     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
430     break;
431   case CreateDigueId:
432   case EditDigueId:
433     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
434     break;
435   case CreateCalculationId:
436   case EditCalculationId:
437     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
438     break;
439   case ExportCalculationId:
440     anOp = new HYDROGUI_ExportCalculationOp( aModule );
441     break;
442   case FuseImagesId:
443   case EditFusedImageId:
444     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
445     break;
446   case CutImagesId:
447   case EditCutImageId:
448     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
449     break;
450   case SplitImageId:
451   case EditSplittedImageId:
452     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId );
453     break;
454   case ImportObstacleFromFileId:
455     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
456     break;
457   case ImportCreatedPrimitiveId:
458     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportCreated );
459     break;
460   case ImportGeomObjectId:
461     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelected );
462     break;
463   case CreateBoxId:
464     application()->activateOperation( "Geometry", GEOMOp::OpBox );
465     break;
466   case CreateCylinderId:
467     application()->activateOperation( "Geometry", GEOMOp::OpCylinder );
468     break;
469   case DeleteId:
470     anOp = new HYDROGUI_DeleteOp( aModule );
471     break;
472   case SetColorId:
473     anOp = new HYDROGUI_SetColorOp( aModule );
474     break;
475   case ShowId:
476   case ShowOnlyId:
477   case ShowAllId:
478   case HideId:
479   case HideAllId:
480     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
481     break;
482   }
483
484   if( !anOp )
485     anOp = LightApp_Module::createOperation( theId );
486
487   return anOp;
488 }
489
490 bool HYDROGUI_Module::reusableOperation( const int id )
491 {
492   if ( id == ImportGeomObjectId ) {
493     return false;
494   }
495
496   return LightApp_Module::reusableOperation( id );
497 }
498
499 /**
500  * Called when the operation perfomed by another module is finished.
501  * \param theModuleName the name of the module which perfomed the operation
502  * \param theOperationName the operation name
503  * \param theEntryList the list of the created objects entries
504  */
505 void HYDROGUI_Module::onExternalOperationFinished( const QString& theModuleName,
506                                                    const QString& theOperationName,
507                                                    const QStringList& theEntryList )
508 {
509   // Process "Geometry" module operations with non-empty list of created objects only
510   if ( theModuleName != "Geometry" || theEntryList.isEmpty() ) {
511     return;
512   }
513   
514   // Start import GEOM object operation
515   myGeomObjectsToImport = theEntryList;
516   startOperation( ImportCreatedPrimitiveId );
517   myGeomObjectsToImport.clear();
518 }
519
520 /**
521  * Returns the list of entries of GEOM objects to be imported.
522  */
523 QStringList HYDROGUI_Module::GetGeomObjectsToImport()
524 {
525   return myGeomObjectsToImport;
526 }
527
528 /**
529  * Returns true if the object with the given entry can be renamed.
530  * @param theEntry the object entry
531  */
532 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
533 {
534   // Allow to rename all HYDRO objects
535   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
536   return !anEntity.IsNull();
537 }
538 /**
539  * Returns true if the object with the given entry is renamed.
540  * @param theEntry the object entry
541  * @param theName the new name
542  */
543 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
544 {
545   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
546   bool aRes = !anEntity.IsNull();
547   if ( aRes )
548   {
549     HYDROGUI_DataModel* aModel = getDataModel();
550     if( aModel )
551     {
552       if( anEntity->GetName() != theName )
553       {
554         // check that there are no other objects with the same name in the document
555         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
556         aRes = anObject.IsNull();
557         if ( aRes )
558         {
559           aRes = aModel->rename( anEntity, theName );
560         }
561         else
562         {
563           // Inform the user that the name is already used
564           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
565           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
566           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
567         }
568       }
569     }
570   }
571   return aRes;
572 }