X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_CalculationDlg.h;h=eaf3aa26aa6a52a2e81a437d88753c6953b79619;hb=a1431f03eac1d1aed4203d0568d987c41ce939b3;hp=8a9fdfb8275f5b71ea3562f30f2319a3b2c81514;hpb=676ac06ae10f045ffae7a56aacbd20f694b9a993;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_CalculationDlg.h b/src/HYDROGUI/HYDROGUI_CalculationDlg.h index 8a9fdfb8..eaf3aa26 100644 --- a/src/HYDROGUI/HYDROGUI_CalculationDlg.h +++ b/src/HYDROGUI/HYDROGUI_CalculationDlg.h @@ -57,15 +57,22 @@ public: void setPolylineNames( const QStringList& theObjects, const QStringList& theObjectsEntries ); QStringList getSelectedGeomObjects() const; QStringList getSelectedAvailableGeomObjects() const; + QStringList getSelectedGroups() const; + QStringList getSelectedAvailableGroups() const; HYDROGUI_Zone* getCurrentZone() const; + void setAvailableGroups( const QStringList& ); + public slots: - void setBoundary( QString& theObjName ); + void setBoundary( const QString& theObjName ); void includeGeomObjects( const QStringList& theObjects ); void excludeGeomObjects( const QStringList& theObjects ); + void includeGroups( const QStringList& theObjects ); + void excludeGroups( const QStringList& theObjects ); void onEmptyName(); void onAlreadyExists( QString theName ); void refreshZonesBrowser(); + void onDataChanged(); /** * Process items selection: hide/show bathymetry merge type selector. */ @@ -83,18 +90,26 @@ public slots: signals: void addObjects(); void removeObjects(); - void objectSelected( const QString & theObjName ); + void objectsSelected(); + + void addGroups(); + void removeGroups(); + void groupsSelected(); + void boundarySelected( const QString & theObjName ); - void splitZones(); - void hideZones(); void setMergeType( int theMergeType, QString& theBathymetryName ); void createRegion( const QList& theZonesList ); void moveZones( SUIT_DataObject* theRegion, const QList& theZonesList ); void clickedInZonesBrowser( SUIT_DataObject* ); +protected: + + virtual bool acceptCurrent() const; + private: QWizardPage* createObjectsPage(); + QWizardPage* createGroupsPage(); QWizardPage* createZonesPage(); QGroupBox* myObjectNameGroup; @@ -106,6 +121,9 @@ private: QListWidget* myAvailableGeomObjects; QListWidget* myGeomObjects; + QListWidget* myAvailableGroups; + QListWidget* myGroups; + HYDROGUI_DataBrowser* myBrowser; Handle(HYDROData_CalculationCase) myEditedObject; QComboBox* myBathymetryChoice;