]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Feature #84: Profiles georeferencement (12.4).
authormzn <mzn@opencascade.com>
Fri, 29 Nov 2013 06:55:36 +0000 (06:55 +0000)
committermzn <mzn@opencascade.com>
Fri, 29 Nov 2013 06:55:36 +0000 (06:55 +0000)
Add error message for incomplete data rows.
Store data in the data model on mode change.

src/HYDROGUI/HYDROGUI_GeoreferencementDlg.cxx
src/HYDROGUI/HYDROGUI_GeoreferencementDlg.h
src/HYDROGUI/HYDROGUI_GeoreferencementOp.cxx
src/HYDROGUI/HYDROGUI_GeoreferencementOp.h
src/HYDROGUI/resources/HYDROGUI_msg_en.ts

index 534ba65917329cdd0df7c544bd956c50205e7815..bd10b2c083b98e7b594c35b1376ef2bde462d266 100644 (file)
 #include <QLayout>
 #include <QMouseEvent>
 
+//! Profile data structre constructor
+HYDROGUI_GeoreferencementDlg::ProfileGeoData::ProfileGeoData( 
+  const QString& theXg, const QString& theYg, 
+  const QString& theXd, const QString& theYd)
+{
+  this->isEmpty = theXg.isEmpty() && theYg.isEmpty() &&
+                 theXd.isEmpty() && theYd.isEmpty();
+  this->isIncomplete = !isEmpty;
+
+  if ( isIncomplete ) {
+    bool isOk = false;
+
+    this->Xg= theXg.toDouble( &isOk );
+    if ( isOk ) {
+      this->Yg = theYg.toDouble( &isOk );
+      if ( isOk ) {
+        this->Xd = theXd.toDouble( &isOk );
+        if ( isOk ) {
+          this->Yd = theYd.toDouble( &isOk );
+          this->isIncomplete = !isOk;
+        }
+      }
+    }
+  }
+}
+
 //! Custom item delegate (line edit with double validator)
 class HYDROGUI_GeoreferencementDlg::Delegate : public QItemDelegate
 {
@@ -181,7 +207,7 @@ void HYDROGUI_GeoreferencementDlg::setData( const ProfilesGeoDataMap& theMap )
     // Get georeferencement data for the current profile
     ProfileGeoData aGeoData = theMap.value( aProfileName );
     QString aXg, anYg, aXd, anYd;
-    if ( aGeoData.isValid ) {
+    if ( !aGeoData.isEmpty ) {
       aXg = getString( aGeoData.Xg );
       anYg = getString( aGeoData.Yg );
       aXd = getString( aGeoData.Xd );
@@ -223,26 +249,16 @@ void HYDROGUI_GeoreferencementDlg::getData( ProfilesGeoDataMap& theMap )
 
   // Fill the map
   bool isOk = false;
+  QString aXg, anYg, aXd, anYd;
   for ( int aRow = 0; aRow < myTable->rowCount(); aRow++ ) {
     QString aProfileName = myTable->item( aRow, 0 )->text();
 
-    theMap.insert( aProfileName, ProfileGeoData() );
-
-    double aXg, anYg, aXd, anYd;
-      
-    aXg = myTable->item( aRow, 1 )->text().toDouble( &isOk );
-    if ( !isOk ) continue;
-
-    anYg = myTable->item( aRow, 2 )->text().toDouble( &isOk );
-    if ( !isOk ) continue;
-
-    aXd = myTable->item( aRow, 3 )->text().toDouble( &isOk );
-    if ( !isOk ) continue;
-
-    anYd = myTable->item( aRow, 4 )->text().toDouble( &isOk );
-    if ( !isOk ) continue;
+    aXg = myTable->item( aRow, 1 )->text();
+    anYg = myTable->item( aRow, 2 )->text();
+    aXd = myTable->item( aRow, 3 )->text();
+    anYd = myTable->item( aRow, 4 )->text();
    
-    theMap[aProfileName] = ProfileGeoData( aXg, anYg, aXd, anYd );
+    theMap.insert( aProfileName, ProfileGeoData( aXg, anYg, aXd, anYd ) );
   }
 }
 
index 25e2130e762061abb384cc8404fd39132c0f4712..428cf1c767898bc6576d35bb1a2445122009bcf5 100644 (file)
@@ -47,13 +47,18 @@ public:
     double Xd;
     double Yd;
 
-    bool isValid;
+    bool isIncomplete, isEmpty;
 
     ProfileGeoData() :
-      isValid( false ) {}
+      isEmpty( true ), isIncomplete( false ) {}
 
-    ProfileGeoData( double theXg, double theYg, double theXd, double theYd ) :
-      Xg( theXg ), Yg( theYg ), Xd( theXd ), Yd( theYd ), isValid( true ) {}
+    ProfileGeoData( const QString& theXg, const QString& theYg, 
+                    const QString& theXd, const QString& theYd );
+
+    ProfileGeoData( double theXg, double theYg, 
+                    double theXd, double theYd )
+      : Xg( theXg ), Yg( theYg ), Xd( theXd ), Yd( theYd ),
+      isIncomplete(false), isEmpty(false) {}
   };
   typedef QMap< QString, ProfileGeoData > ProfilesGeoDataMap;
 
index e1dfd89d2b903eeee05137d53dd727c109e42380..80a0373e255dfafe3e89d7138e1be07834983bf9 100644 (file)
@@ -36,6 +36,7 @@
 #include <LightApp_UpdateFlags.h>
 
 #include <SUIT_Desktop.h>
+#include <SUIT_MessageBox.h>
 #include <SUIT_ViewWindow.h>
 
 #include <OCCViewer_ViewManager.h>
@@ -108,49 +109,38 @@ HYDROGUI_InputPanel* HYDROGUI_GeoreferencementOp::createInputPanel() const
 bool HYDROGUI_GeoreferencementOp::processApply( int& theUpdateFlags,
                                                 QString& theErrorMsg )
 {
-  HYDROGUI_GeoreferencementDlg* aPanel = 
-    ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
-  if ( !aPanel ) {
-    return false;
-  }
-
-  // Get georeferencement data from the panel
-  HYDROGUI_GeoreferencementDlg::ProfilesGeoDataMap aGeoDataMap;
-  aPanel->getData( aGeoDataMap );
-
-  if ( aGeoDataMap.empty() ) {
-    return false;
-  }
-
-  // Set the data
-  foreach ( const QString& aProfileName, aGeoDataMap.keys() ) {
-    Handle(HYDROData_Profile) aProfile = 
-      Handle(HYDROData_Profile)::DownCast(
-        HYDROGUI_Tool::FindObjectByName( module(), aProfileName, KIND_PROFILE ) );
-    if ( !aProfile.IsNull() ) {
-      HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData = 
-        aGeoDataMap.value( aProfileName );
-      if ( aGeoData.isValid ) {
-        aProfile->SetFirstPoint( gp_XY( aGeoData.Xg, aGeoData.Yg ) );
-        aProfile->SetLastPoint( gp_XY( aGeoData.Xd, aGeoData.Yd ) );
-      } else {
-        aProfile->Invalidate();
-      }
-    }
-  }
-  
   theUpdateFlags = UF_Model;
-  return true;
+
+  return store( theErrorMsg );
 }
 
 void HYDROGUI_GeoreferencementOp::onModeActivated( const int theActualMode )
 {
+  QString anErrorMsg;
+
+  // Get the panel
   HYDROGUI_GeoreferencementDlg* aPanel = 
     ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
   if ( !aPanel ) {
     return;
   }
 
+  // Store the dialog data to the data model
+  if ( !store( anErrorMsg ) ) {
+    aPanel->setMode( theActualMode == HYDROGUI_GeoreferencementDlg::AllProfiles ?
+                     HYDROGUI_GeoreferencementDlg::SelectedProfiles :
+                     HYDROGUI_GeoreferencementDlg::AllProfiles );
+
+    if ( anErrorMsg.isEmpty() ) {
+      anErrorMsg = tr( "INSUFFICIENT_INPUT_DATA" );
+    }
+    SUIT_MessageBox::critical( module()->getApp()->desktop(),
+                               tr( "ERROR" ),
+                               anErrorMsg );
+    return;
+  }
+
+  // Get georeferencement data from the data model
   HYDROGUI_GeoreferencementDlg::ProfilesGeoDataMap aDataMap;
   HYDROData_SequenceOfObjects aSeqOfProfiles;
   
@@ -184,6 +174,7 @@ void HYDROGUI_GeoreferencementOp::onModeActivated( const int theActualMode )
     aDataMap.insert( aProfile->GetName(), aGeoData );
   }
 
+  // Set the collected data to the dialog
   aPanel->setData( aDataMap );
 }
 
@@ -206,3 +197,52 @@ void HYDROGUI_GeoreferencementOp::onWindowActivated( SUIT_ViewWindow* theViewWin
   }
 }
 
+bool HYDROGUI_GeoreferencementOp::store( QString& theErrorMsg )
+{
+  // Clear the error string
+  theErrorMsg.clear();
+
+  // Get the panel
+  HYDROGUI_GeoreferencementDlg* aPanel = 
+    ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
+  if ( !aPanel ) {
+    return false;
+  }
+
+  // Get georeferencement data from the panel
+  HYDROGUI_GeoreferencementDlg::ProfilesGeoDataMap aGeoDataMap;
+  aPanel->getData( aGeoDataMap );
+
+  if ( aGeoDataMap.empty() ) {
+    return true;
+  }
+
+  // Check the data validity
+  foreach ( const QString& aProfileName, aGeoDataMap.keys() ) {
+    HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData = 
+      aGeoDataMap.value( aProfileName );
+    if ( aGeoData.isIncomplete ) {
+      theErrorMsg = tr( "INCOMPLETE_DATA" ).arg( aProfileName );
+      return false;
+    }
+  }
+
+  // Store the data in the data model
+  foreach ( const QString& aProfileName, aGeoDataMap.keys() ) {
+    Handle(HYDROData_Profile) aProfile = 
+      Handle(HYDROData_Profile)::DownCast(
+        HYDROGUI_Tool::FindObjectByName( module(), aProfileName, KIND_PROFILE ) );
+    if ( !aProfile.IsNull() ) {
+      HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData = 
+        aGeoDataMap.value( aProfileName );
+      if ( !aGeoData.isEmpty ) {
+        aProfile->SetFirstPoint( gp_XY( aGeoData.Xg, aGeoData.Yg ) );
+        aProfile->SetLastPoint( gp_XY( aGeoData.Xd, aGeoData.Yd ) );
+      } else {
+        aProfile->Invalidate();
+      }
+    }
+  }
+
+  return true;
+}
index e8c362b4287d200e78113073dd69d9be2ed9ce4f..e76cbd1222bf361b9f85eff43ee55dd4f302d519 100644 (file)
@@ -51,6 +51,9 @@ protected slots:
   void                            onModeActivated( const int theActualMode );
   void                            onWindowActivated( SUIT_ViewWindow* theViewWindow );
 
+private:
+  bool                            store( QString& theErrorMsg );
+
 private:
   int myInitialMode;
 };
index eeec7ed149617b519a9cb28b45513ba16031df78..27f7350c5657aab2bd5508032f87d4e18d256888 100644 (file)
@@ -1351,6 +1351,10 @@ file cannot be correctly imported for an Obstacle definition.</translation>
       <source>PROFILES_GEOREFERENCEMENT</source>
       <translation>Profiles georeferencement</translation>
     </message>
+    <message>
+      <source>INCOMPLETE_DATA</source>
+      <translation>Incomplete data is set for '%1'.</translation>
+    </message>
   </context>
  
   <context>