]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_CalculationOp.cxx
Salome HOME
79a9611092b81d4b3a1fe2d5c9ebce17470ffc74
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CalculationOp.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_CalculationOp.h"
24
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_CalculationDlg.h"
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Tool.h"
29 #include "HYDROGUI_UpdateFlags.h"
30 #include "HYDROGUI_Zone.h"
31 #include "HYDROGUI_Region.h"
32
33 #include <HYDROData_PolylineXY.h>
34 #include <HYDROData_ShapesGroup.h>
35 #include <HYDROData_Iterator.h>
36 #include <HYDROData_Object.h>
37 #include <HYDROData_Tool.h>
38
39 #include <OCCViewer_ViewManager.h>
40 #include <OCCViewer_ViewModel.h>
41 #include <OCCViewer_ViewWindow.h>
42
43 #include <LightApp_Application.h>
44 #include <LightApp_UpdateFlags.h>
45 #include <LightApp_SelectionMgr.h>
46 #include <LightApp_DataOwner.h>
47
48 #include <SUIT_MessageBox.h>
49 #include <SUIT_Desktop.h>
50 #include <SUIT_DataBrowser.h>
51
52 #include <QApplication>
53 #include <QKeySequence>
54 #include <QShortcut>
55
56 HYDROGUI_CalculationOp::HYDROGUI_CalculationOp( HYDROGUI_Module* theModule, bool theIsEdit )
57 : HYDROGUI_Operation( theModule ),
58   myIsEdit( theIsEdit ),
59   myActiveViewManager( NULL ),
60   myPreviewViewManager( NULL )
61 {
62   setName( myIsEdit ? tr( "EDIT_CALCULATION" ) : tr( "CREATE_CALCULATION" ) );
63 }
64
65 HYDROGUI_CalculationOp::~HYDROGUI_CalculationOp()
66 {
67   closePreview();
68 }
69
70 void HYDROGUI_CalculationOp::startOperation()
71 {
72   HYDROGUI_Operation::startOperation();
73   
74   // Begin transaction
75   startDocOperation();
76
77   HYDROGUI_CalculationDlg* aPanel = 
78     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
79   if ( !aPanel )
80     return;
81
82   SUIT_DataBrowser* aOb = ((LightApp_Application*)module()->application())->objectBrowser();
83   QList<QShortcut*> aShortcuts = aOb->findChildren<QShortcut*>();
84   QShortcut* aShortcut;
85   foreach( aShortcut, aShortcuts )
86   {
87     if ( aShortcut->key() == 
88       QKeySequence(((LightApp_Application*)module()->application())->objectBrowser()->shortcutKey( 
89       SUIT_DataBrowser::RenameShortcut ) ) )
90     {
91       aShortcut->setEnabled( false );
92     }
93   }
94
95   aPanel->reset();
96   QStringList aList;
97   QStringList anEntryList;
98   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetGeometryObjects( module() );
99   getNamesAndEntries( aSeq, aList, anEntryList );
100   aPanel->setAllGeomObjects( aList, anEntryList );
101
102   // Get all polylines
103   aList.clear();
104   anEntryList.clear();
105   HYDROData_Iterator anIter( doc(), KIND_POLYLINEXY );
106   Handle(HYDROData_PolylineXY) aPolylineObj;
107   QString aPolylineName;
108   for ( ; anIter.More(); anIter.Next() )
109   {
110     aPolylineObj = Handle(HYDROData_PolylineXY)::DownCast( anIter.Current() );
111
112     if ( !aPolylineObj.IsNull() && aPolylineObj->IsClosed() )
113     { 
114       // Check the polyline shape
115       TopoDS_Shape aPolylineShape = aPolylineObj->GetShape();
116       if ( !aPolylineShape.IsNull() && aPolylineShape.ShapeType() == TopAbs_WIRE ) {
117         aPolylineName = aPolylineObj->GetName();
118         if ( !aPolylineName.isEmpty() )
119         {
120           aList.append( aPolylineName );
121           anEntryList.append( HYDROGUI_DataObject::dataObjectEntry( aPolylineObj ) );
122         }
123       }
124     }
125   }
126   aPanel->setPolylineNames( aList, anEntryList );
127
128   QString anObjectName = HYDROGUI_Tool::GenerateObjectName( module(), tr( "DEFAULT_CALCULATION_CASE_NAME" ) );
129
130   myEditedObject.Nullify();
131   if ( myIsEdit )
132   {
133     myEditedObject = Handle(HYDROData_CalculationCase)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
134     if ( !myEditedObject.IsNull() )
135     {
136       aPanel->setMode( myEditedObject->GetAssignmentMode() );
137       anObjectName = myEditedObject->GetName();
138       aPolylineObj = myEditedObject->GetBoundaryPolyline();
139       if ( aPolylineObj.IsNull() )
140       {
141         aPanel->setBoundary( QString() );
142       }
143       else
144       {
145         aPolylineName = aPolylineObj->GetName();
146         aPanel->setBoundary( aPolylineName );
147       }
148
149       aSeq = myEditedObject->GetGeometryObjects();
150       getNamesAndEntries( aSeq, aList, anEntryList );
151       aPanel->includeGeomObjects( aList );
152
153       // set rules
154       HYDROData_ListOfRules aRules;
155       Handle(HYDROData_Object) anObject1, anObject2;
156       HYDROData_PriorityType aPriority;
157       HYDROData_Zone::MergeAltitudesType aMergeType;
158       for ( int anIndex = 0; anIndex < myEditedObject->GetRulesCount(); anIndex++ ) {
159         if ( myEditedObject->GetRule( anIndex, anObject1, aPriority, anObject2, aMergeType ) ) {
160           HYDROData_CustomRule aRule;
161           aRule.Object1 = anObject1;
162           aRule.Object2 = anObject2;
163           aRule.Priority = aPriority;
164           aRule.MergeType = aMergeType;
165
166           aRules << aRule;
167         }
168       }
169       aPanel->setRules( aRules );
170     }
171   }
172   else
173   {
174     myEditedObject =
175       Handle(HYDROData_CalculationCase)::DownCast( doc()->CreateObject( KIND_CALCULATION ) );
176     myEditedObject->SetName( anObjectName );
177     myEditedObject->SetAssignmentMode( (HYDROData_CalculationCase::AssignmentMode)aPanel->getMode() );
178   }
179
180   aPanel->setObjectName( anObjectName );
181   aPanel->setEditedObject( myEditedObject );
182
183   createPreview();
184 }
185
186 void HYDROGUI_CalculationOp::getNamesAndEntries( const HYDROData_SequenceOfObjects& theSeq, 
187                                                 QStringList& theNames, QStringList& theEntries ) const
188 {
189  
190   theNames.clear();
191   theEntries.clear();
192   HYDROData_SequenceOfObjects::Iterator anIter( theSeq );
193   for ( ; anIter.More(); anIter.Next() )
194   {
195     Handle(HYDROData_Entity) anEntity = anIter.Value();
196     //if ( !HYDROData_Tool::IsGeometryObject( anEntity ) )
197     //  continue;
198
199     theNames.append( anEntity->GetName() );
200     theEntries.append( HYDROGUI_DataObject::dataObjectEntry( anEntity ) );
201   }
202 }
203
204 void HYDROGUI_CalculationOp::abortOperation()
205 {
206   closePreview();
207   // Abort transaction
208   abortDocOperation();
209   HYDROGUI_Operation::abortOperation();
210   module()->getApp()->updateObjectBrowser();
211 }
212
213 void HYDROGUI_CalculationOp::commitOperation()
214 {
215   closePreview();
216   // Commit transaction
217   commitDocOperation();
218   HYDROGUI_Operation::commitOperation();
219 }
220
221 HYDROGUI_InputPanel* HYDROGUI_CalculationOp::createInputPanel() const
222 {
223   HYDROGUI_CalculationDlg* aPanel = new HYDROGUI_CalculationDlg( module(), getName() );
224
225   // Connect signals and slots
226   connect( aPanel, SIGNAL( changeMode( int ) ), SLOT( onChangeMode( int ) ) );
227   connect( aPanel, SIGNAL( addObjects() ), SLOT( onAddObjects() ) );
228   connect( aPanel, SIGNAL( removeObjects() ), SLOT( onRemoveObjects() ) );
229   connect( aPanel, SIGNAL( addGroups() ), SLOT( onAddGroups() ) );
230   connect( aPanel, SIGNAL( removeGroups() ), SLOT( onRemoveGroups() ) );
231   connect( aPanel, SIGNAL( Next( const int ) ), SLOT( onNext( const int ) ) );
232   connect( aPanel, SIGNAL( Back( const int ) ), SLOT( onHideZones() ) );
233   //connect( aPanel, SIGNAL( clicked( SUIT_DataObject* ) ), SLOT( onSelected( SUIT_DataObject* ) ) );
234   connect( aPanel, SIGNAL( setMergeType( int, QString& ) ), SLOT( onSetMergeType( int, QString& ) ) );
235   connect( aPanel, SIGNAL( moveZones( SUIT_DataObject*, const QList<SUIT_DataObject*>& ) ),
236     SLOT( onMoveZones( SUIT_DataObject*, const QList<SUIT_DataObject*>& ) ) );
237   connect( aPanel, SIGNAL( createRegion( const QList<SUIT_DataObject*>& ) ),
238     SLOT( onCreateRegion( const QList<SUIT_DataObject*>& ) ) );
239   connect( aPanel, SIGNAL( clickedInZonesBrowser( SUIT_DataObject* ) ),
240     SLOT( onClickedInZonesBrowser( SUIT_DataObject* ) ) );
241   connect( aPanel, SIGNAL( objectsSelected() ), 
242            SLOT( onObjectsSelected() ) );
243   connect( aPanel, SIGNAL( boundarySelected( const QString & ) ), 
244     SLOT( onBoundarySelected( const QString & ) ) );
245
246   return aPanel;
247 }
248
249 void HYDROGUI_CalculationOp::onBoundarySelected ( const QString & theObjName )
250 {
251   bool anIsToUpdateViewer = false;
252
253   // Remove the old boundary from the operation viewer
254   Handle(HYDROData_PolylineXY) aPrevPolyline = 
255     myEditedObject->GetBoundaryPolyline();
256   if ( !aPrevPolyline.IsNull() )
257   {
258     setObjectVisibility( aPrevPolyline, false );
259     anIsToUpdateViewer = true;
260   }
261
262   // Set the selected boundary polyline to the calculation case
263   Handle(HYDROData_PolylineXY) aNewPolyline = Handle(HYDROData_PolylineXY)::DownCast(
264     HYDROGUI_Tool::FindObjectByName( module(), theObjName, KIND_POLYLINEXY ) );
265   myEditedObject->SetBoundaryPolyline( aNewPolyline );
266
267   if ( myPreviewViewManager )
268   {
269     OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer();
270     if ( aViewer )
271     {
272       if ( !aNewPolyline.IsNull() )
273       {
274         Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
275         if ( !aCtx.IsNull() )
276         {
277           setObjectVisibility( aNewPolyline, true );
278           anIsToUpdateViewer = true;
279         }
280       }
281
282       if ( anIsToUpdateViewer )
283         module()->update( UF_OCCViewer );
284     }
285   }
286 }
287
288 void HYDROGUI_CalculationOp::onObjectsSelected()
289 {
290   HYDROGUI_CalculationDlg* aPanel = 
291     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
292
293   QStringList aSelectedObjs = aPanel->getSelectedGeomObjects();
294   QMap<QString, bool> aSelectedObjsMap;
295   foreach( QString aName, aSelectedObjs )
296     aSelectedObjsMap[aName] = true;
297
298
299   // Select the appropriate geometry object shape in the viewer
300   selectionMgr()->clearSelected();
301
302   // Unhighlight all objects except selected
303   HYDROGUI_Shape* aShape = 0, *aLastShape = 0;
304   Handle(HYDROData_Entity) anEntity;
305   HYDROData_SequenceOfObjects aSeq = myEditedObject->GetGeometryObjects();
306   HYDROData_SequenceOfObjects::Iterator anIter( aSeq );
307   bool isSelected;
308   QString aName;
309   for ( ; anIter.More(); anIter.Next() )
310   {
311     anEntity = anIter.Value();
312     if ( !anEntity.IsNull() )
313     {
314       aShape = module()->getObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, anEntity );
315       if ( aShape )
316       {
317         aName = anEntity->GetName();
318         isSelected = aSelectedObjsMap.contains( aName );
319         aShape->highlight( isSelected, false );
320         aShape->update( false, false );
321         aLastShape = aShape;
322       }
323     }
324   }
325   if( aLastShape )
326     aLastShape->update( true, false );
327 }
328
329 void HYDROGUI_CalculationOp::onClickedInZonesBrowser( SUIT_DataObject* theItem )
330 {
331   HYDROGUI_Region* aRegionItem = dynamic_cast<HYDROGUI_Region*>(theItem);
332   HYDROGUI_Zone* aZoneItem;
333   selectionMgr()->clearSelected();
334   if ( aRegionItem )
335   {
336     // Select a region in preview
337     SUIT_DataOwnerPtrList aList( true );
338     DataObjectList aZones = aRegionItem->children();
339     for ( int i = 0; i < aZones.length(); i++ )
340     {
341       aZoneItem = dynamic_cast<HYDROGUI_Zone*>(aZones.at(i));
342       if ( aZoneItem )
343       {
344         aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( aZoneItem->entry() ) ) );
345       }
346     }
347     selectionMgr()->setSelected( aList );
348   }
349   else
350   {
351     // select a single zone
352     aZoneItem = dynamic_cast<HYDROGUI_Zone*>(theItem);
353     if ( aZoneItem )
354     {
355       SUIT_DataOwnerPtrList aList( true );
356       aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( aZoneItem->entry() ) ) );
357       selectionMgr()->setSelected( aList );
358     }
359   }
360 }
361
362 void HYDROGUI_CalculationOp::onMoveZones( SUIT_DataObject* theRegionItem, const QList<SUIT_DataObject*>& theZonesList )
363 {
364   HYDROGUI_Region* aRegion = dynamic_cast<HYDROGUI_Region*>(theRegionItem);
365   if ( aRegion )
366   {
367     QList<HYDROGUI_Zone*> aZonesList;
368     HYDROGUI_Zone* aZone;
369     // Get a list of dropped zones
370     for ( int i = 0; i < theZonesList.length(); i++ )
371     {
372       aZone = dynamic_cast<HYDROGUI_Zone*>( theZonesList.at( i ) );
373       if ( aZone )
374       {
375         aZonesList.append( aZone );
376       }
377     }
378     if ( aZonesList.length() > 0 )
379     {
380       aRegion->addZones( aZonesList );
381       HYDROGUI_CalculationDlg* aPanel = 
382         ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
383       if ( aPanel )
384       {
385         aPanel->refreshZonesBrowser();
386       }
387       createPreview();
388     }
389   }
390 }
391
392 void HYDROGUI_CalculationOp::onCreateRegion( const QList<SUIT_DataObject*>& theZonesList )
393 {
394   QList<HYDROGUI_Zone*> aZonesList;
395   HYDROGUI_Zone* aZone;
396   // Get a list of dropped zones
397   for ( int i = 0; i < theZonesList.length(); i++ )
398   {
399     aZone = dynamic_cast<HYDROGUI_Zone*>( theZonesList.at( i ) );
400     if ( aZone )
401     {
402       aZonesList.append( aZone );
403     }
404   }
405   if ( aZonesList.length() > 0 )
406   {
407     module()->getDataModel()->createNewRegion( myEditedObject, aZonesList );
408     HYDROGUI_CalculationDlg* aPanel = 
409       ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
410     if ( aPanel )
411     {
412       aPanel->refreshZonesBrowser();
413     }
414     createPreview();
415   }
416 }
417
418 void HYDROGUI_CalculationOp::onSetMergeType( int theMergeType, QString& theAltitudeName )
419 {
420   HYDROGUI_CalculationDlg* aPanel = 
421     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
422   if ( aPanel )
423   {
424     HYDROGUI_Zone* aZone = aPanel->getCurrentZone();
425     if ( aZone )
426     {
427       aZone->setMergeType( theMergeType, theAltitudeName );
428       HYDROGUI_Shape* aShape = module()->getObjectShape( HYDROGUI_Module::VMR_PreviewCaseZones, aZone->modelObject() );
429       if ( aShape )
430       {
431         aShape->update( true, false );
432       }
433     }
434     aPanel->refreshZonesBrowser();
435   }
436 }
437
438 void HYDROGUI_CalculationOp::onAddObjects()
439 {
440   HYDROGUI_CalculationDlg* aPanel = 
441     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
442   if ( !aPanel )
443     return;
444
445   // Add geometry objects selected in the module browser to the calculation case
446   QStringList aSelectedList = aPanel->getSelectedAvailableGeomObjects();
447   if ( aSelectedList.isEmpty() || !confirmRegionsChange() )
448     return;
449
450   QStringList anAddedList;
451   for (int i = 0; i < aSelectedList.length(); i++)
452   {
453     Handle(HYDROData_Object) anObject = Handle(HYDROData_Object)::DownCast( 
454       HYDROGUI_Tool::FindObjectByName( module(), aSelectedList.at( i ) ) );
455     if ( anObject.IsNull() )
456       continue;
457
458     if ( myEditedObject->AddGeometryObject( anObject ) )
459       anAddedList.append( anObject->GetName() );
460   }
461
462   if ( !anAddedList.isEmpty() )
463   {
464     aPanel->includeGeomObjects( anAddedList );
465     createPreview();
466   }
467 }
468
469 void HYDROGUI_CalculationOp::onRemoveObjects()
470 {
471   // Remove selected objects from the calculation case
472   HYDROGUI_CalculationDlg* aPanel = 
473     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
474   if ( !aPanel )
475     return;
476
477   QStringList aSelectedList = aPanel->getSelectedGeomObjects();
478   if ( aSelectedList.isEmpty() || !confirmRegionsChange() )
479     return;
480
481   for (int i = 0; i < aSelectedList.length(); i++)
482   {
483     Handle(HYDROData_Object) anObject = Handle(HYDROData_Object)::DownCast( 
484       HYDROGUI_Tool::FindObjectByName( module(), aSelectedList.at(i) ) );
485     if ( anObject.IsNull() )
486       continue;
487
488     setObjectVisibility( anObject, false );
489     myEditedObject->RemoveGeometryObject( anObject );
490   }
491
492   module()->update( UF_OCCViewer );
493   aPanel->excludeGeomObjects( aSelectedList );
494 }
495
496 bool HYDROGUI_CalculationOp::confirmRegionsChange() const
497 {
498   // Check if the case is already modified or not
499   bool isConfirmed = myEditedObject->IsMustBeUpdated();
500   if ( !isConfirmed )
501   {
502     // If not modified check if the case has already defined regions with zones
503     HYDROData_SequenceOfObjects aSeq = myEditedObject->GetRegions();
504     if ( aSeq.Length() > 0 )
505     {
506       // If there are already defined zones then ask a user to confirm zones recalculation
507       isConfirmed = ( SUIT_MessageBox::question( module()->getApp()->desktop(),
508                                tr( "REGIONS_CHANGED" ),
509                                tr( "CONFIRM_SPLITTING_ZONES_RECALCULATION_REGIONS" ),
510                                QMessageBox::Yes | QMessageBox::No,
511                                QMessageBox::No ) == QMessageBox::Yes );
512     }
513     else
514     {
515       isConfirmed = true; // No regions - no zones - nothing to recalculate
516     }
517   }
518   return isConfirmed;
519 }
520
521 bool HYDROGUI_CalculationOp::confirmModeChange() const
522 {
523   // Check if the case is already modified or not
524   bool isConfirmed = myEditedObject->IsMustBeUpdated();
525   if ( !isConfirmed )
526   {
527     // If not modified check if the case has already defined regions with zones
528     HYDROData_SequenceOfObjects aSeq = myEditedObject->GetRegions();
529     if ( aSeq.Length() > 0 )
530     {
531       // If there are already defined zones then ask a user to confirm zones recalculation
532       isConfirmed = ( SUIT_MessageBox::question( module()->getApp()->desktop(),
533                                tr( "MODE_CHANGED" ),
534                                tr( "CONFIRM_SPLITTING_ZONES_RECALCULATION_MODE" ),
535                                QMessageBox::Yes | QMessageBox::No,
536                                QMessageBox::No ) == QMessageBox::Yes );
537     }
538     else
539     {
540       isConfirmed = true; // No regions - no zones - nothing to recalculate
541     }
542   }
543   return isConfirmed;
544 }
545
546 bool HYDROGUI_CalculationOp::processApply( int&     theUpdateFlags,
547                                            QString& theErrorMsg,
548                                            QStringList& theBrowseObjectsEntries )
549 {
550   HYDROGUI_CalculationDlg* aPanel = 
551     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
552   if ( !aPanel )
553     return false;
554
555   if( !myIsEdit )
556   {
557     QString anEntry = HYDROGUI_DataObject::dataObjectEntry( myEditedObject );
558     theBrowseObjectsEntries.append( anEntry );
559   }
560
561   theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer | UF_VTK_Forced | UF_VTK_Init;
562
563   return true;
564 }
565
566 void HYDROGUI_CalculationOp::onApply()
567 {
568   QApplication::setOverrideCursor( Qt::WaitCursor );
569
570   int anUpdateFlags = 0;
571   QString anErrorMsg;
572   QStringList aBrowseObjectsEntries;
573
574   bool aResult = false;
575   
576   try
577   {
578     aResult = processApply( anUpdateFlags, anErrorMsg, aBrowseObjectsEntries );
579   }
580   catch ( Standard_Failure )
581   {
582     Handle(Standard_Failure) aFailure = Standard_Failure::Caught();
583     anErrorMsg = aFailure->GetMessageString();
584     aResult = false;
585   }
586   catch ( ... )
587   {
588     aResult = false;
589   }
590   
591   QApplication::restoreOverrideCursor();
592
593   if ( aResult )
594   {
595     module()->update( anUpdateFlags );
596     commit();
597     browseObjects( aBrowseObjectsEntries );
598   }
599   else
600   {
601     abort();
602     QString aMsg = tr( "INPUT_VALID_DATA" );
603     if( !anErrorMsg.isEmpty() )
604       aMsg.prepend( anErrorMsg + "\n" );
605     SUIT_MessageBox::critical( module()->getApp()->desktop(),
606                                tr( "INSUFFICIENT_INPUT_DATA" ),
607                                aMsg ); 
608   }
609 }
610
611 void HYDROGUI_CalculationOp::onNext( const int theIndex )
612 {
613   if( theIndex==1 )
614   {
615     setAvailableGroups();
616   }
617   else if( theIndex==2 )
618   {
619     HYDROGUI_CalculationDlg* aPanel = 
620       ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
621     if ( !aPanel )
622       return;
623
624     QApplication::setOverrideCursor( Qt::WaitCursor );
625   
626     QString aNewCaseName = aPanel->getObjectName();
627     QString anOldCaseName = myEditedObject->GetName();
628   
629     bool anIsToUpdateOb = myIsEdit && anOldCaseName != aNewCaseName;
630   
631     // At first we must to update the case name because of 
632     // automatic names generation for regions and zones
633     myEditedObject->SetName( aNewCaseName );
634
635     // Set parameters for automatic mode
636     int aMode = aPanel->getMode();
637     if ( aMode == HYDROData_CalculationCase::AUTOMATIC ) {
638       // Set objects in the specified order
639       myEditedObject->RemoveGeometryObjects();
640       foreach ( const QString& aName, aPanel->getAllGeomObjects() ) {
641         Handle(HYDROData_Object) anObject = Handle(HYDROData_Object)::DownCast( 
642           HYDROGUI_Tool::FindObjectByName( module(), aName ) );
643         if ( anObject.IsNull() ) {
644           continue;
645         }
646
647         myEditedObject->AddGeometryObject( anObject );
648       }
649
650       // Set priority rules
651       myEditedObject->ClearRules();
652       foreach ( const HYDROData_CustomRule& aRule, aPanel->getRules() ) {
653         myEditedObject->AddRule( aRule.Object1, aRule.Priority,
654                                  aRule.Object2, aRule.MergeType );
655       }
656     }
657     aPanel->setMoveZonesEnabled( aMode == HYDROData_CalculationCase::MANUAL );
658          
659     if ( myEditedObject->IsMustBeUpdated() )
660     {
661       myShowZones = true;
662       myEditedObject->Update();
663
664       //aPanel->setEditedObject( myEditedObject );
665       aPanel->refreshZonesBrowser();
666
667       createPreview();
668     }
669     else
670     {
671       setZonesVisible( true );
672     }
673
674     if ( anIsToUpdateOb )
675       module()->getApp()->updateObjectBrowser( false );
676
677     QApplication::restoreOverrideCursor();
678   }
679 }
680
681 void HYDROGUI_CalculationOp::onHideZones()
682 {
683   setZonesVisible( false );
684 }
685
686 void HYDROGUI_CalculationOp::setZonesVisible( bool theIsVisible )
687 {
688   myShowZones = theIsVisible;
689   HYDROData_SequenceOfObjects aRegions = myEditedObject->GetRegions();
690   HYDROData_SequenceOfObjects::Iterator aRegionsIter( aRegions );
691   HYDROData_SequenceOfObjects aZones;
692   Handle(HYDROData_Region) aRegion;
693   if ( myPreviewViewManager ) 
694   {
695     if ( OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer() )
696     {
697       Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
698       if ( !aCtx.IsNull() )
699       {
700         for ( ; aRegionsIter.More(); aRegionsIter.Next() )
701         {
702           aRegion = Handle(HYDROData_Region)::DownCast( aRegionsIter.Value() );
703           if ( !aRegion.IsNull() )
704           {
705             aZones = aRegion->GetZones();
706             HYDROData_SequenceOfObjects::Iterator aZonesIter( aZones );
707             for ( ; aZonesIter.More(); aZonesIter.Next() )
708             {
709               setObjectVisibility( aZonesIter.Value(), theIsVisible );
710             }
711           }
712         }
713       }
714
715       module()->update( UF_OCCViewer );
716     }
717   }
718 }
719
720 void HYDROGUI_CalculationOp::createPreview()
721 {
722   LightApp_Application* anApp = module()->getApp();
723   HYDROData_SequenceOfObjects aSeq = myEditedObject->GetGeometryObjects();
724   Handle(HYDROData_Entity) anEntity;
725
726   if ( myShowZones )
727   {
728     // Gather zones for displaying
729     HYDROData_SequenceOfObjects aRegions = myEditedObject->GetRegions();
730     HYDROData_SequenceOfObjects::Iterator aRegionsIter( aRegions );
731     HYDROData_SequenceOfObjects aZones;
732     Handle(HYDROData_Region) aRegion;
733     for ( ; aRegionsIter.More(); aRegionsIter.Next() )
734     {
735       anEntity = aRegionsIter.Value();
736       if ( !anEntity.IsNull() )
737       {
738         aRegion = Handle(HYDROData_Region)::DownCast( anEntity );
739         if ( !aRegion.IsNull() )
740         {
741           aZones = aRegion->GetZones();
742           aSeq.Append( aZones );
743         }
744       }
745     }
746   }
747
748   // Get a boundary polyline if any
749   aSeq.Append( myEditedObject->GetBoundaryPolyline() );
750
751   module()->removeViewShapes( HYDROGUI_Module::VMR_PreviewCaseZones );
752
753   if ( !myActiveViewManager )
754   {
755     if ( aSeq.IsEmpty() )
756       return;
757
758     myActiveViewManager = anApp->activeViewManager();
759   }
760
761   if ( !myPreviewViewManager )
762   {
763     myPreviewViewManager = ::qobject_cast<OCCViewer_ViewManager*>( 
764       anApp->createViewManager( OCCViewer_Viewer::Type() ) );
765     if ( myPreviewViewManager )
766     {
767       connect( myPreviewViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
768                this, SLOT( onLastViewClosed( SUIT_ViewManager* ) ) );
769
770       module()->setViewManagerRole( myPreviewViewManager, HYDROGUI_Module::VMR_PreviewCaseZones );
771       myPreviewViewManager->setTitle( tr( "PREVIEW_CASE_ZONES" ) );
772     }
773   }
774
775   if ( !myPreviewViewManager )
776     return;
777
778   if ( OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer() )
779   {
780     Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
781     if ( !aCtx.IsNull() )
782     {
783       HYDROData_SequenceOfObjects::Iterator anIter( aSeq );
784       for ( ; anIter.More(); anIter.Next() )
785       {
786         setObjectVisibility( anIter.Value(), true );
787       }
788
789       //Process the draw events for viewer
790       QApplication::processEvents( QEventLoop::ExcludeUserInputEvents );
791       if ( OCCViewer_ViewWindow* vw = (OCCViewer_ViewWindow*)myPreviewViewManager->getActiveView() )
792         vw->onTopView();
793     }
794
795     module()->update( UF_OCCViewer | UF_FitAll );
796   }
797 }
798
799 void HYDROGUI_CalculationOp::setObjectVisibility( Handle(HYDROData_Entity) theEntity, const bool theIsVisible )
800 {
801   if ( theEntity.IsNull() || !myPreviewViewManager ) {
802     return;
803   }
804
805   OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer();
806   if ( aViewer ) {
807     module()->setObjectVisible( (size_t)aViewer, theEntity, theIsVisible );
808   }
809 }
810
811 void HYDROGUI_CalculationOp::onLastViewClosed( SUIT_ViewManager* theViewManager )
812 {
813   closePreview();
814 }
815
816 void HYDROGUI_CalculationOp::closePreview()
817 {
818   SUIT_DataBrowser* aOb = ((LightApp_Application*)module()->application())->objectBrowser();
819   QList<QShortcut*> aShortcuts = aOb->findChildren<QShortcut*>();
820   QShortcut* aShortcut;
821   foreach( aShortcut, aShortcuts )
822   {
823     if ( aShortcut->key() == 
824       QKeySequence( ((LightApp_Application*)module()->application())->objectBrowser()->shortcutKey( 
825       SUIT_DataBrowser::RenameShortcut ) ) )
826     {
827       aShortcut->setEnabled( true );
828     }
829   }
830
831
832   if( myPreviewViewManager )
833   {
834     // Hide all the displayed objects in the preview view
835     OCCViewer_Viewer* aViewer = myPreviewViewManager->getOCCViewer();
836     if ( aViewer ) {
837       size_t aViewId = (size_t)aViewer;
838       HYDROData_Iterator anIterator( doc() );
839       for( ; anIterator.More(); anIterator.Next() ) {
840         Handle(HYDROData_Entity) anObject = anIterator.Current();
841         if( !anObject.IsNull() ) {
842           module()->setObjectVisible( aViewId, anObject, false );
843         }
844       }
845     }
846
847     disconnect( myPreviewViewManager, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
848                 this, SLOT( onLastViewClosed( SUIT_ViewManager* ) ) );
849
850     module()->getApp()->removeViewManager( myPreviewViewManager ); // myPreviewViewManager is deleted here
851     myPreviewViewManager = NULL;
852   }
853
854   if( myActiveViewManager )
855   {
856     HYDROGUI_Tool::SetActiveViewManager( module(), myActiveViewManager );
857     myActiveViewManager = NULL;
858   }
859 }
860
861 void HYDROGUI_CalculationOp::setAvailableGroups()
862 {
863   HYDROGUI_CalculationDlg* aPanel = 
864       ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
865
866   HYDROData_SequenceOfObjects aSeq = myEditedObject->GetGeometryGroups();
867   QStringList aList, anEntryList;
868   getNamesAndEntries( aSeq, aList, anEntryList );
869
870   QStringList aGroupsNames;
871
872   HYDROData_SequenceOfObjects anObjs = myEditedObject->GetGeometryObjects();
873   for( int anIndex = 1, aLength = anObjs.Length(); anIndex <= aLength; anIndex++ )
874   {
875     Handle_HYDROData_Object anObj = Handle_HYDROData_Object::DownCast( anObjs.Value( anIndex ) );
876     HYDROData_SequenceOfObjects aGroups = anObj->GetGroups();
877     for( int aGIndex = 1, aGLength = aGroups.Length(); aGIndex <= aGLength; aGIndex++ )
878     {
879       Handle_HYDROData_ShapesGroup aGroup = Handle_HYDROData_ShapesGroup::DownCast( aGroups.Value( aGIndex ) );
880       aGroupsNames.append( aGroup->GetName() );
881     }
882   }
883   if( myEditedObject->IsMustBeUpdated() ) {
884     for( int anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ ) {
885       Handle(HYDROData_ShapesGroup) aGeomGroup =
886         Handle(HYDROData_ShapesGroup)::DownCast( aSeq.Value( anIndex ) );
887       if ( !aGeomGroup.IsNull() && !aGroupsNames.contains( aGeomGroup->GetName() ) ) {
888         myEditedObject->RemoveGeometryGroup( aGeomGroup );
889       }
890     }
891   }
892
893   aPanel->setAvailableGroups( aGroupsNames );
894   aPanel->includeGroups( aList );
895
896   bool isUpdated = myEditedObject->IsMustBeUpdated();
897 }
898
899 void HYDROGUI_CalculationOp::onAddGroups()
900 {
901   HYDROGUI_CalculationDlg* aPanel = 
902     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
903   if ( !aPanel )
904     return;
905
906   // Add geometry objects selected in the module browser to the calculation case
907   QStringList aSelectedList = aPanel->getSelectedAvailableGroups();
908   if ( aSelectedList.isEmpty() || !confirmRegionsChange() )
909     return;
910
911   QStringList anAddedList;
912   for (int i = 0; i < aSelectedList.length(); i++)
913   {
914     Handle(HYDROData_ShapesGroup) aGroup = Handle(HYDROData_ShapesGroup)::DownCast( 
915       HYDROGUI_Tool::FindObjectByName( module(), aSelectedList.at( i ) ) );
916     if ( aGroup.IsNull() )
917       continue;
918
919     if ( myEditedObject->AddGeometryGroup( aGroup ) )
920       anAddedList.append( aGroup->GetName() );
921   }
922
923   if ( !anAddedList.isEmpty() )
924   {
925     aPanel->includeGroups( anAddedList );
926   }
927 }
928
929 void HYDROGUI_CalculationOp::onRemoveGroups()
930 {
931   // Remove selected objects from the calculation case
932   HYDROGUI_CalculationDlg* aPanel = 
933     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
934   if ( !aPanel )
935     return;
936
937   QStringList aSelectedList = aPanel->getSelectedGroups();
938   if ( aSelectedList.isEmpty() || !confirmRegionsChange() )
939     return;
940
941   for (int i = 0; i < aSelectedList.length(); i++)
942   {
943     Handle(HYDROData_ShapesGroup) aGroup = Handle(HYDROData_ShapesGroup)::DownCast( 
944       HYDROGUI_Tool::FindObjectByName( module(), aSelectedList.at(i) ) );
945     if ( aGroup.IsNull() )
946       continue;
947
948     myEditedObject->RemoveGeometryGroup( aGroup );
949   }
950
951   aPanel->excludeGroups( aSelectedList );
952 }
953
954 void HYDROGUI_CalculationOp::onChangeMode( int theMode )
955 {
956   HYDROGUI_CalculationDlg* aPanel = 
957     ::qobject_cast<HYDROGUI_CalculationDlg*>( inputPanel() );
958   if ( !aPanel )
959     return;
960
961   if ( !confirmModeChange() ) {
962     aPanel->setMode( myEditedObject->GetAssignmentMode() );
963     return;
964   }
965
966   myEditedObject->SetAssignmentMode( (HYDROData_CalculationCase::AssignmentMode)theMode );
967   aPanel->setMode( theMode );
968 }