Salome HOME
bug #237: fatal error on profile
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CalculationDlg.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_CalculationDlg.h"
24
25 #include "HYDROGUI_ObjSelector.h"
26 #include "HYDROGUI_Tool.h"
27 #include "HYDROGUI_DataBrowser.h"
28 #include "HYDROGUI_DataModel.h"
29 #include "HYDROGUI_Module.h"
30 #include "HYDROGUI_DataObject.h"
31 #include "HYDROGUI_NameValidator.h"
32 #include "HYDROGUI_Region.h"
33 #include "HYDROGUI_Zone.h"
34
35 #include <HYDROData_Document.h>
36 #include <HYDROData_Entity.h>
37
38 #include <CAM_Application.h>
39 #include <LightApp_DataObject.h>
40
41 #include <SUIT_DataObject.h>
42 #include <SUIT_FileDlg.h>
43 #include <SUIT_ResourceMgr.h>
44 #include <SUIT_Session.h>
45 #include <SUIT_Study.h>
46
47 #include <LightApp_Application.h>
48 #include <SUIT_Desktop.h>
49 #include <SUIT_MessageBox.h>
50
51 #include <QGroupBox>
52 #include <QLabel>
53 #include <QLayout>
54 #include <QLineEdit>
55 #include <QListWidget>
56 #include <QPicture>
57 #include <QPushButton>
58 #include <QToolButton>
59 #include <QWizardPage>
60 #include <QComboBox>
61 #include <QStackedWidget>
62
63 HYDROGUI_CalculationDlg::HYDROGUI_CalculationDlg( HYDROGUI_Module* theModule, const QString& theTitle )
64 : HYDROGUI_Wizard( theModule, theTitle )
65 {
66   addPage( createObjectsPage() );
67   addPage( createZonesPage() );
68 }
69
70 HYDROGUI_CalculationDlg::~HYDROGUI_CalculationDlg()
71 {
72 }
73
74 void HYDROGUI_CalculationDlg::reset()
75 {
76   myObjectName->clear();
77   myGeomObjects->clear();
78   myPolylineName->clear();
79   myAvailableGeomObjects->clear();
80 }
81
82 QWizardPage* HYDROGUI_CalculationDlg::createObjectsPage() {
83   QWizardPage* aPage = new QWizardPage( mainFrame() );
84   QFrame* aFrame = new QFrame( aPage );
85
86   // Calculation name
87   myObjectName = new QLineEdit( aPage );
88   myValidator = new HYDROGUI_NameValidator(module(), myObjectName);
89   myObjectName->setValidator( myValidator );
90
91   connect( myValidator, SIGNAL( emptyName() ), SLOT( onEmptyName() ) );
92   connect( myValidator, SIGNAL( alreadyExists( QString ) ), SLOT( onAlreadyExists( QString ) ) );
93
94   myPolylineName = new QComboBox( aPage );
95   connect( myPolylineName, SIGNAL( activated( const QString & ) ), 
96     SIGNAL( boundarySelected( const QString & ) ) );
97
98   myGeomObjects = new QListWidget( aPage );
99   myGeomObjects->setSelectionMode( QListWidget::SingleSelection );
100   myGeomObjects->setEditTriggers( QListWidget::NoEditTriggers );
101   myGeomObjects->setViewMode( QListWidget::ListMode );
102   myGeomObjects->setSortingEnabled( true );
103
104   myAvailableGeomObjects = new QListWidget( aPage );
105   myAvailableGeomObjects->setSelectionMode( QListWidget::SingleSelection );
106   myAvailableGeomObjects->setEditTriggers( QListWidget::NoEditTriggers );
107   myAvailableGeomObjects->setViewMode( QListWidget::ListMode );
108   myAvailableGeomObjects->setSortingEnabled( true );
109
110   connect( myGeomObjects, SIGNAL( currentTextChanged( const QString & ) ), 
111     SIGNAL( objectSelected( const QString & ) ) );
112
113   QFrame* anObjectsFrame = new QFrame( aPage );
114   QGridLayout* anObjsLayout = new QGridLayout( anObjectsFrame );
115   anObjsLayout->setMargin( 5 );
116   anObjsLayout->setSpacing( 5 );
117   anObjectsFrame->setLayout( anObjsLayout );
118
119   QFrame* aBtnsFrame = new QFrame( anObjectsFrame );
120   QVBoxLayout* aBtnsLayout = new QVBoxLayout( aBtnsFrame );
121   aBtnsLayout->setMargin( 5 );
122   aBtnsLayout->setSpacing( 5 );
123   aBtnsFrame->setLayout( aBtnsLayout );
124   QPushButton* anAddBtn = new QPushButton( tr("INCLUDE"), aBtnsFrame );
125   QPushButton* aRemoveBtn = new QPushButton( tr("EXCLUDE"), aBtnsFrame );
126
127   // Fill the butons frame with two buttons
128   aBtnsLayout->addWidget( anAddBtn );
129   aBtnsLayout->addWidget( aRemoveBtn );
130   aBtnsLayout->addStretch( 1 );
131
132   QLabel* anIncludedLabel = new QLabel( tr( "INCLUDED_OBJECTS" ), anObjectsFrame );
133   QLabel* anObjectsLabel = new QLabel( tr( "CALCULATION_REFERENCE_OBJECTS" ), anObjectsFrame );
134
135   // Fill the objects frame with two lists, two labels and with buttons frame
136   anObjsLayout->addWidget( anObjectsLabel, 0, 0, Qt::AlignHCenter );
137   anObjsLayout->addWidget( anIncludedLabel, 0, 2, Qt::AlignHCenter );
138   anObjsLayout->addWidget( myAvailableGeomObjects, 1, 0, Qt::AlignHCenter );
139   anObjsLayout->addWidget( aBtnsFrame, 1, 1, Qt::AlignHCenter );
140   anObjsLayout->addWidget( myGeomObjects, 1, 2, Qt::AlignHCenter );
141
142
143   QLabel* aNameLabel = new QLabel( tr( "NAME" ), aPage );
144   QLabel* aLimitsLabel = new QLabel( tr( "LIMITS" ), aPage );
145
146   // Fill the page
147   QGridLayout* aPageLayout = new QGridLayout( aPage );
148   aPageLayout->setMargin( 5 );
149   aPageLayout->setSpacing( 5 );
150   aPageLayout->setVerticalSpacing( 10 );
151   aPageLayout->addWidget( aNameLabel,     0, 0, Qt::AlignHCenter );
152   aPageLayout->addWidget( myObjectName,   0, 1 );
153   aPageLayout->addWidget( aLimitsLabel,   1, 0, Qt::AlignHCenter );
154   aPageLayout->addWidget( myPolylineName, 1, 1 );
155   aPageLayout->addWidget( anObjectsFrame, 2, 0, 1, 2, Qt::AlignHCenter );
156
157   aPage->setLayout( aPageLayout );
158
159   connect( anAddBtn, SIGNAL( clicked() ), SIGNAL( addObjects() ) );
160   connect( aRemoveBtn, SIGNAL( clicked() ), SIGNAL( removeObjects() ) );
161
162   return aPage;
163 }
164
165 QWizardPage* HYDROGUI_CalculationDlg::createZonesPage() {
166   QWizardPage* aPage = new QWizardPage( mainFrame() );
167   QFrame* aFrame = new QFrame( aPage );
168
169   QGridLayout* aLayout = new QGridLayout( aPage );
170   
171   myBrowser = new HYDROGUI_DataBrowser( module(), NULL, aPage );
172   myBrowser->setAutoOpenLevel( 3 );
173   aLayout->setMargin( 5 );
174   aLayout->setSpacing( 5 );
175
176   aLayout->addWidget( myBrowser, 0, 0, 1, 2 );
177
178   myBatimetryLabel = new QLabel( tr( "BATHYMETRY" ), aFrame );
179   myBathymetryChoice = new QComboBox( aFrame );
180
181   myBathymetryChoice->setVisible( false );
182   myBatimetryLabel->setVisible( false );
183
184   aLayout->addWidget( myBatimetryLabel, 1, 0 );
185   aLayout->addWidget( myBathymetryChoice, 1, 1 );
186
187   aPage->setLayout( aLayout );
188
189   connect( myBrowser, SIGNAL( dataChanged() ), SLOT( onDataChanged() ) );
190   connect( myBrowser, SIGNAL( clicked( SUIT_DataObject* ) ), SIGNAL( clickedInZonesBrowser( SUIT_DataObject* ) ) );
191   connect( myBrowser, SIGNAL( clicked( SUIT_DataObject* ) ), SLOT( onSelected( SUIT_DataObject* ) ) );
192   connect( myBathymetryChoice, SIGNAL( activated( int ) ), SLOT( onMergeTypeSelected( int ) ) );
193   connect( myBrowser, 
194       SIGNAL( dropped( const QList<SUIT_DataObject*>&, SUIT_DataObject*, int, Qt::DropAction ) ),
195       SLOT( onZonesDropped( const QList<SUIT_DataObject*>&, SUIT_DataObject*, int, Qt::DropAction ) ) );
196
197   return aPage;
198 }
199
200
201 bool HYDROGUI_CalculationDlg::acceptCurrent() const
202 {
203   QString anErrorMsg;
204
205   if ( myGeomObjects->count() == 0 )
206   {
207     anErrorMsg = tr( "EMPTY_GEOMETRY_OBJECTS" );
208   }
209
210   if ( !anErrorMsg.isEmpty() )
211   {
212     anErrorMsg += "\n" + tr( "INPUT_VALID_DATA" );
213     
214     QString aTitle = tr( "INSUFFICIENT_INPUT_DATA" );
215     SUIT_MessageBox::critical( module()->getApp()->desktop(), aTitle, anErrorMsg );
216   }
217
218   return anErrorMsg.isEmpty();
219 }
220
221 void HYDROGUI_CalculationDlg::onEmptyName()
222 {
223   QString aTitle = tr( "INSUFFICIENT_INPUT_DATA" );
224   QString aMessage = tr( "INCORRECT_OBJECT_NAME" ) + "\n" + tr( "INPUT_VALID_DATA" );
225   SUIT_MessageBox::critical( module()->getApp()->desktop(), aTitle, aMessage );
226 }
227
228 void HYDROGUI_CalculationDlg::onAlreadyExists( QString theName )
229 {
230   QString aTitle = tr( "INSUFFICIENT_INPUT_DATA" );
231   QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName ) +
232                      "\n" + tr( "INPUT_VALID_DATA" );
233   SUIT_MessageBox::critical( module()->getApp()->desktop(), aTitle, aMessage );
234 }
235
236 void HYDROGUI_CalculationDlg::onZonesDropped( const QList<SUIT_DataObject*>& theList, 
237     SUIT_DataObject* theTargetParent, int theTargetRow, Qt::DropAction theDropAction )
238 {
239   QList<SUIT_DataObject*> aZonesList;
240   HYDROGUI_Zone* aZone;
241   // Get a list of dropped zones
242   for ( int i = 0; i < theList.length(); i++ )
243   {
244     aZone = dynamic_cast<HYDROGUI_Zone*>( theList.at( i ) );
245     if ( aZone )
246     {
247       aZonesList.append( aZone );
248     }
249   }
250   if ( aZonesList.length() > 0 )
251   {
252     // Get the target region
253     HYDROGUI_NamedObject* aRegionsRoot = dynamic_cast<HYDROGUI_NamedObject*>(theTargetParent);
254     if ( aRegionsRoot )
255     {
256       // Create a new region
257       emit createRegion( aZonesList );
258     }
259     else
260     {
261       HYDROGUI_Region* aRegion = dynamic_cast<HYDROGUI_Region*>(theTargetParent);
262       if ( aRegion )
263       {
264         emit moveZones( theTargetParent, aZonesList );
265       }
266     }
267   }
268 }
269
270 void HYDROGUI_CalculationDlg::onMergeTypeSelected( int theIndex )
271 {
272   int aType = myBathymetryChoice->itemData( theIndex ).toInt();
273   QString aText = myBathymetryChoice->itemText( theIndex );
274   emit setMergeType( aType, aText );
275 }
276
277 void HYDROGUI_CalculationDlg::onSelected( SUIT_DataObject* theObject )
278 {
279   bool doShow = false;
280   HYDROGUI_Zone* aZone = dynamic_cast<HYDROGUI_Zone*>( theObject );
281   if ( aZone )
282   {
283     doShow = aZone->isMergingNeed();
284   }
285
286   if ( doShow )
287   {
288     // Fill the merge type combo box
289     bool prevBlock = myBathymetryChoice->blockSignals( true );
290     myCurrentZone = aZone;
291     myBathymetryChoice->clear();
292     myBathymetryChoice->addItem( tr("MERGE_UNKNOWN"), HYDROData_Zone::Merge_UNKNOWN );
293     myBathymetryChoice->addItem( tr("MERGE_ZMIN"), HYDROData_Zone::Merge_ZMIN );
294     myBathymetryChoice->addItem( tr("MERGE_ZMAX"), HYDROData_Zone::Merge_ZMAX );
295     QStringList aList = aZone->getBathymetries();
296     for ( int i = 0; i < aList.length(); i++ )
297     {
298       myBathymetryChoice->addItem( aList.at( i ), HYDROData_Zone::Merge_Object );
299     }
300     // Select the current choice if any
301     int aCurIndex = 0;
302     switch ( aZone->getMergeType() )
303     {
304       case HYDROData_Zone::Merge_ZMIN:
305         aCurIndex = 1;
306         break;
307       case HYDROData_Zone::Merge_ZMAX:
308         aCurIndex = 2;
309         break;
310       case HYDROData_Zone::Merge_Object:
311         aCurIndex = 3 + aList.indexOf( aZone->text( HYDROGUI_DataObject::BathymetryId ) );
312         break;
313       default:
314         aCurIndex = 0; // Select unknown by default
315     }
316     myBathymetryChoice->setCurrentIndex( aCurIndex );
317     myBathymetryChoice->blockSignals( prevBlock );
318   }
319
320   myBathymetryChoice->setVisible( doShow );
321   myBatimetryLabel->setVisible( doShow );
322 }
323
324 void HYDROGUI_CalculationDlg::setObjectName( const QString& theName )
325 {
326   myObjectName->setText( theName );
327 }
328
329 QString HYDROGUI_CalculationDlg::getObjectName() const
330 {
331   return myObjectName->text();
332 }
333
334 void HYDROGUI_CalculationDlg::includeGeomObjects( const QStringList& theObjects )
335 {
336   QList<QListWidgetItem*> aFoundItems;
337   int anIdx;
338   QListWidgetItem* anItem;
339
340   for ( int i = 0, n = theObjects.length(); i < n; ++i )
341   {
342     QString anObjName = theObjects.at( i );
343     aFoundItems = myAvailableGeomObjects->findItems( anObjName, Qt::MatchExactly );
344     for ( anIdx = 0; anIdx < aFoundItems.length(); anIdx++ )
345     {
346       anItem = aFoundItems.at( anIdx );
347       // Remove this object from available objects list
348       anItem = myAvailableGeomObjects->takeItem( myAvailableGeomObjects->row( anItem ) );
349       // Add the item to the included objects list
350       myGeomObjects->addItem( anItem );
351     }
352   }
353 }
354
355 void HYDROGUI_CalculationDlg::excludeGeomObjects( const QStringList& theObjects )
356 {
357   QList<QListWidgetItem*> aFoundItems;
358   int anIdx;
359   QListWidgetItem* anItem;
360
361   for ( int i = 0, n = theObjects.length(); i < n; ++i )
362   {
363     QString anObjName = theObjects.at( i );
364     aFoundItems = myGeomObjects->findItems( anObjName, Qt::MatchExactly );
365     for ( anIdx = 0; anIdx < aFoundItems.length(); anIdx++ )
366     {
367       anItem = aFoundItems.at( anIdx );
368       // Remove this object from included objects list
369       anItem = myGeomObjects->takeItem( myGeomObjects->row( anItem ) );
370       // Add the item to the excluded objects list
371       myAvailableGeomObjects->addItem( anItem );
372     }
373   }
374 }
375
376 void HYDROGUI_CalculationDlg::setBoundary( const QString& theObjName )
377 {
378   bool isBlocked = myPolylineName->blockSignals( true );
379   myPolylineName->setCurrentIndex( myPolylineName->findText( theObjName ) );
380   myPolylineName->blockSignals( isBlocked );
381 }
382
383 void HYDROGUI_CalculationDlg::setPolylineNames( const QStringList& theObjects, const QStringList& theObjectsEntries )
384 {
385   myPolylineName->clear();
386   myPolylineName->addItem( "", "" ); // No boundary item
387
388   for ( int i = 0, n = theObjects.length(); i < n; ++i )
389   {
390     myPolylineName->addItem( theObjects.at( i ), theObjectsEntries.at( i ) );
391   }
392 }
393 void HYDROGUI_CalculationDlg::setAllGeomObjects( const QStringList& theObjects, const QStringList& theObjectsEntries )
394 {
395   myAvailableGeomObjects->clear();
396
397   for ( int i = 0, n = theObjects.length(); i < n; ++i )
398   {
399     QString anObjName = theObjects.at( i );
400
401     QListWidgetItem* aListItem = new QListWidgetItem( anObjName, myAvailableGeomObjects );
402     aListItem->setFlags( Qt::ItemIsEnabled | Qt::ItemIsSelectable );
403     aListItem->setData( Qt::UserRole, theObjectsEntries.at( i ) );
404   }
405 }
406
407 QStringList HYDROGUI_CalculationDlg::getSelectedGeomObjects() const
408 {
409   QStringList aResList;
410   QList<QListWidgetItem*> aList = myGeomObjects->selectedItems();
411   for ( int i = 0, n = aList.length(); i < n; ++i )
412   {
413     aResList.append( aList.at( i )->text() );
414   }
415   return aResList;
416 }
417
418 QStringList HYDROGUI_CalculationDlg::getSelectedAvailableGeomObjects() const
419 {
420   QStringList aResList;
421   QList<QListWidgetItem*> aList = myAvailableGeomObjects->selectedItems();
422   for ( int i = 0, n = aList.length(); i < n; ++i )
423   {
424     aResList.append( aList.at( i )->text() );
425   }
426   return aResList;
427 }
428
429 void HYDROGUI_CalculationDlg::setEditedObject( const Handle(HYDROData_CalculationCase) theCase )
430 {
431   myEditedObject = theCase;
432   myValidator->setEditedObject( theCase );
433
434   // Build the calculation case subtree
435   module()->getDataModel()->buildCaseTree( myBrowser->root(), myEditedObject );
436
437   myBrowser->updateTree();
438   myBrowser->openLevels();
439   myBrowser->adjustColumnsWidth();
440   myBrowser->setAutoUpdate( true );
441   myBrowser->setUpdateModified( true );
442
443 }
444
445 HYDROGUI_Zone* HYDROGUI_CalculationDlg::getCurrentZone() const
446 {
447   return myCurrentZone;
448 }
449
450 void HYDROGUI_CalculationDlg::refreshZonesBrowser()
451 {
452   SUIT_DataObject* aRoot = myBrowser->root();
453   module()->getDataModel()->updateObjectTree( myEditedObject );
454   module()->getDataModel()->buildCaseTree( aRoot, myEditedObject );
455   myBrowser->updateTree( aRoot );
456 }
457
458 void HYDROGUI_CalculationDlg::onDataChanged()
459 {
460   SUIT_DataObject* aRoot = myBrowser->root();
461   module()->getDataModel()->buildCaseTree( aRoot, myEditedObject );
462   myBrowser->updateTree( aRoot );
463 }