Salome HOME
Drawing of zones in OCC view improved.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ImportImageDlg.cxx
index a7983555eab8658137d9405619e35a1db802ceee..8495a6bb5dda040f329262221ec7489ec45da8bd 100644 (file)
 #include "HYDROGUI_PrsImage.h"
 #include "HYDROGUI_Tool.h"
 
+#include <SUIT_FileDlg.h>
 #include <SUIT_ResourceMgr.h>
 #include <SUIT_Session.h>
 
-#include <QDoubleValidator>
-#include <QFileDialog>
+#include <QtxDoubleSpinBox.h>
+#include <QtxIntSpinBox.h>
+
+#include <QButtonGroup>
+#include <QComboBox>
 #include <QGroupBox>
-#include <QIntValidator>
 #include <QLabel>
 #include <QLayout>
 #include <QLineEdit>
 #include <QPainter>
 #include <QPicture>
 #include <QPushButton>
+#include <QRadioButton>
 #include <QToolButton>
 
 HYDROGUI_ImportImageDlg::HYDROGUI_ImportImageDlg( HYDROGUI_Module* theModule, const QString& theTitle )
@@ -75,12 +79,8 @@ HYDROGUI_ImportImageDlg::HYDROGUI_ImportImageDlg( HYDROGUI_Module* theModule, co
   anImageNameLayout->addWidget( anImageNameLabel );
   anImageNameLayout->addWidget( myImageName );
 
-  // Mapping
-  myMappingGroup = new QGroupBox( tr( "MAPPING" ) );
-
-  QGridLayout* aMappingLayout = new QGridLayout( myMappingGroup );
-  aMappingLayout->setMargin( 5 );
-  aMappingLayout->setSpacing( 5 );
+  // Transform image
+  myTransformGroup = new QGroupBox( tr( "TRANSFORM_IMAGE" ) );
 
   // Make a pixmap for arrow
   QPixmap anArrowPixmap = aResMgr->loadPixmap( "HYDRO", tr( "ARROW_RIGHT_ICO" ) );
@@ -93,6 +93,36 @@ HYDROGUI_ImportImageDlg::HYDROGUI_ImportImageDlg( HYDROGUI_Module* theModule, co
   aPainter.drawPixmap( 0, 0, anArrowPixmap );
   aPainter.end();
 
+  QRadioButton* aManualBtn = new QRadioButton( tr( "MANUALLY" ), myTransformGroup );
+  QRadioButton* aRefImageBtn = new QRadioButton( tr( "BY_REFERENCE_IMAGE" ), myTransformGroup );
+
+  myModeGroup = new QButtonGroup( myTransformGroup );
+  myModeGroup->addButton( aManualBtn, Manual );
+  myModeGroup->addButton( aRefImageBtn, RefImage );
+
+  QBoxLayout* aModeLayout = new QHBoxLayout();
+  aModeLayout->setMargin( 0 );
+  aModeLayout->setSpacing( 5 );
+  aModeLayout->addWidget( aManualBtn );
+  aModeLayout->addWidget( aRefImageBtn );
+
+  myRefImageWg = new QWidget( myTransformGroup );
+  QLabel* aRefImageLabel = new QLabel( tr( "REFERENCE_IMAGE" ), myRefImageWg );
+  myRefImage = new QComboBox( myRefImageWg );
+
+  QBoxLayout* aRefImageLayout = new QHBoxLayout( myRefImageWg );
+  aRefImageLayout->setMargin( 0 );
+  aRefImageLayout->setSpacing( 5 );
+  aRefImageLayout->addWidget( aRefImageLabel );
+  aRefImageLayout->addWidget( myRefImage );
+  aRefImageLayout->setStretch( 1, 1 );
+
+  QGridLayout* aTransformLayout = new QGridLayout( myTransformGroup );
+  aTransformLayout->setMargin( 5 );
+  aTransformLayout->setSpacing( 5 );
+  aTransformLayout->addLayout( aModeLayout, 0, 0, 1, 9 );
+  aTransformLayout->addWidget( myRefImageWg, 1, 0, 1, 9 );
+
   for( int aPointType = HYDROGUI_PrsImage::PointA;
        aPointType <= HYDROGUI_PrsImage::PointC; aPointType++ )
   {
@@ -103,76 +133,70 @@ HYDROGUI_ImportImageDlg::HYDROGUI_ImportImageDlg( HYDROGUI_Module* theModule, co
       case HYDROGUI_PrsImage::PointB: aPointStr = tr( "ACTIVATE_POINT_B_SELECTION" ); break;
       case HYDROGUI_PrsImage::PointC: aPointStr = tr( "ACTIVATE_POINT_C_SELECTION" ); break;
     }
-    QPushButton* aPointBtn = new QPushButton( aPointStr, myMappingGroup );
+    QPushButton* aPointBtn = new QPushButton( aPointStr, myTransformGroup );
     aPointBtn->setCheckable( true );
 
-    QLabel* aPointXLabel = new QLabel( "X", myMappingGroup );
-    QLabel* aPointYLabel = new QLabel( "Y", myMappingGroup );
+    QLabel* aPointXLabel = new QLabel( "X", myTransformGroup );
+    QLabel* aPointYLabel = new QLabel( "Y", myTransformGroup );
 
-    QLineEdit* aPointX = new QLineEdit( myMappingGroup );
-    QLineEdit* aPointY = new QLineEdit( myMappingGroup );
+    QtxIntSpinBox* aPointX = new QtxIntSpinBox( 0, 0, 1, myTransformGroup ); // max is updated later
+    QtxIntSpinBox* aPointY = new QtxIntSpinBox( 0, 0, 1, myTransformGroup ); // max is updated later
 
-    aPointX->setReadOnly( true );
-    aPointY->setReadOnly( true );
-
-    //QLabel* aPointArrowLabel = new QLabel( ">", myMappingGroup );
-    QLabel* aPointArrowLabel = new QLabel( myMappingGroup );
+    QLabel* aPointArrowLabel = new QLabel( myTransformGroup );
     aPointArrowLabel->setPicture( anArrowPicture );
 
-    QLabel* aPointXDegLabel = new QLabel( QChar( 0x00B0 ), myMappingGroup );
-    QLabel* aPointYDegLabel = new QLabel( QChar( 0x00B0 ), myMappingGroup );
-    QLabel* aPointXMinLabel = new QLabel( "'", myMappingGroup );
-    QLabel* aPointYMinLabel = new QLabel( "'", myMappingGroup );
-    QLabel* aPointXSecLabel = new QLabel( "\"", myMappingGroup );
-    QLabel* aPointYSecLabel = new QLabel( "\"", myMappingGroup );
-
-    QLineEdit* aPointXDeg = new QLineEdit( myMappingGroup );
-    QLineEdit* aPointYDeg = new QLineEdit( myMappingGroup );
-    QLineEdit* aPointXMin = new QLineEdit( myMappingGroup );
-    QLineEdit* aPointYMin = new QLineEdit( myMappingGroup );
-    QLineEdit* aPointXSec = new QLineEdit( myMappingGroup );
-    QLineEdit* aPointYSec = new QLineEdit( myMappingGroup );
-
-    QIntValidator* aXDegValidator = new QIntValidator( -180, 180, this );
-    QIntValidator* aYDegValidator = new QIntValidator( -90, 90, this );
-    QIntValidator* aMinValidator = new QIntValidator( 0, 59, this );
-    QDoubleValidator* aSecValidator = new QDoubleValidator( 0, 59.9999, 4, this );
-
-    aPointXDeg->setValidator( aXDegValidator );
-    aPointYDeg->setValidator( aYDegValidator );
-    aPointXMin->setValidator( aMinValidator );
-    aPointYMin->setValidator( aMinValidator );
-    aPointXSec->setValidator( aSecValidator );
-    aPointYSec->setValidator( aSecValidator );
-
-    int aRow = 4 * aPointType;
-    aMappingLayout->addWidget( aPointBtn,        aRow,     0, 1, 9 );
-
-    aMappingLayout->addWidget( aPointXLabel,     aRow + 1, 0 );
-    aMappingLayout->addWidget( aPointX,          aRow + 1, 1 );
-    aMappingLayout->addWidget( aPointArrowLabel, aRow + 1, 2, 2, 1 );
-    aMappingLayout->addWidget( aPointXDeg,       aRow + 1, 3 );
-    aMappingLayout->addWidget( aPointXDegLabel,  aRow + 1, 4 );
-    aMappingLayout->addWidget( aPointXMin,       aRow + 1, 5 );
-    aMappingLayout->addWidget( aPointXMinLabel,  aRow + 1, 6 );
-    aMappingLayout->addWidget( aPointXSec,       aRow + 1, 7 );
-    aMappingLayout->addWidget( aPointXSecLabel,  aRow + 1, 8 );
-
-    aMappingLayout->addWidget( aPointYLabel,     aRow + 2, 0 );
-    aMappingLayout->addWidget( aPointY,          aRow + 2, 1 );
-    aMappingLayout->addWidget( aPointYDeg,       aRow + 2, 3 );
-    aMappingLayout->addWidget( aPointYDegLabel,  aRow + 2, 4 );
-    aMappingLayout->addWidget( aPointYMin,       aRow + 2, 5 );
-    aMappingLayout->addWidget( aPointYMinLabel,  aRow + 2, 6 );
-    aMappingLayout->addWidget( aPointYSec,       aRow + 2, 7 );
-    aMappingLayout->addWidget( aPointYSecLabel,  aRow + 2, 8 );
+    QLabel* aPointXDegLabel = new QLabel( QChar( 0x00B0 ), myTransformGroup );
+    QLabel* aPointYDegLabel = new QLabel( QChar( 0x00B0 ), myTransformGroup );
+    QLabel* aPointXMinLabel = new QLabel( "'", myTransformGroup );
+    QLabel* aPointYMinLabel = new QLabel( "'", myTransformGroup );
+    QLabel* aPointXSecLabel = new QLabel( "\"", myTransformGroup );
+    QLabel* aPointYSecLabel = new QLabel( "\"", myTransformGroup );
+    myLambertLabels << aPointXDegLabel << aPointYDegLabel
+                    << aPointXMinLabel << aPointYMinLabel
+                    << aPointXSecLabel << aPointYSecLabel;
+
+    QtxIntSpinBox* aPointXDeg = new QtxIntSpinBox( -180, 180, 1, myTransformGroup );
+    QtxIntSpinBox* aPointYDeg = new QtxIntSpinBox( -90, 90, 1, myTransformGroup );
+    QtxIntSpinBox* aPointXMin = new QtxIntSpinBox( 0, 59, 1, myTransformGroup );
+    QtxIntSpinBox* aPointYMin = new QtxIntSpinBox( 0, 59, 1, myTransformGroup );
+    QtxDoubleSpinBox* aPointXSec = new QtxDoubleSpinBox( 0, 59.9999, 1, 4, 4, myTransformGroup );
+    QtxDoubleSpinBox* aPointYSec = new QtxDoubleSpinBox( 0, 59.9999, 1, 4, 4, myTransformGroup );
+
+    QtxIntSpinBox* aRefPointX = new QtxIntSpinBox( 0, 0, 1, myTransformGroup ); // max is updated later
+    QtxIntSpinBox* aRefPointY = new QtxIntSpinBox( 0, 0, 1, myTransformGroup ); // max is updated later
+
+    int aRow = 4 * aPointType + 2;
+    aTransformLayout->addWidget( aPointBtn,        aRow,     0, 1, 9 );
+
+    aTransformLayout->addWidget( aPointXLabel,     aRow + 1, 0 );
+    aTransformLayout->addWidget( aPointX,          aRow + 1, 1 );
+    aTransformLayout->addWidget( aPointArrowLabel, aRow + 1, 2, 2, 1 );
+    aTransformLayout->addWidget( aPointXDeg,       aRow + 1, 3 );
+    aTransformLayout->addWidget( aPointXDegLabel,  aRow + 1, 4 );
+    aTransformLayout->addWidget( aPointXMin,       aRow + 1, 5 );
+    aTransformLayout->addWidget( aPointXMinLabel,  aRow + 1, 6 );
+    aTransformLayout->addWidget( aPointXSec,       aRow + 1, 7 );
+    aTransformLayout->addWidget( aPointXSecLabel,  aRow + 1, 8 );
+
+    aTransformLayout->addWidget( aRefPointX,       aRow + 1, 3, 1, 6 );
+
+    aTransformLayout->addWidget( aPointYLabel,     aRow + 2, 0 );
+    aTransformLayout->addWidget( aPointY,          aRow + 2, 1 );
+    aTransformLayout->addWidget( aPointYDeg,       aRow + 2, 3 );
+    aTransformLayout->addWidget( aPointYDegLabel,  aRow + 2, 4 );
+    aTransformLayout->addWidget( aPointYMin,       aRow + 2, 5 );
+    aTransformLayout->addWidget( aPointYMinLabel,  aRow + 2, 6 );
+    aTransformLayout->addWidget( aPointYSec,       aRow + 2, 7 );
+    aTransformLayout->addWidget( aPointYSecLabel,  aRow + 2, 8 );
+
+    aTransformLayout->addWidget( aRefPointY,       aRow + 2, 3, 1, 6 );
 
     if( aPointType != HYDROGUI_PrsImage::PointC )
     {
-      QFrame* aLine = new QFrame( myMappingGroup );
+      QFrame* aLine = new QFrame( myTransformGroup );
       aLine->setFrameShape( QFrame::HLine );
       aLine->setFrameShadow( QFrame::Sunken );
-      aMappingLayout->addWidget( aLine, aRow + 3, 0, 1, 9 );
+      aTransformLayout->addWidget( aLine, aRow + 3, 0, 1, 9 );
     }
 
     myPointBtnMap[ aPointType ] = aPointBtn;
@@ -185,20 +209,38 @@ HYDROGUI_ImportImageDlg::HYDROGUI_ImportImageDlg( HYDROGUI_Module* theModule, co
     myPointXSecMap[ aPointType ] = aPointXSec;
     myPointYSecMap[ aPointType ] = aPointYSec;
 
+    myRefPointXMap[ aPointType ] = aRefPointX;
+    myRefPointYMap[ aPointType ] = aRefPointY;
+
     connect( aPointBtn, SIGNAL( toggled( bool ) ), this, SLOT( onPointBtnToggled( bool ) ) );
+
+    connect( aPointX, SIGNAL( valueChanged( int ) ), this, SLOT( onPointCoordChanged( int ) ) );
+    connect( aPointY, SIGNAL( valueChanged( int ) ), this, SLOT( onPointCoordChanged( int ) ) );
+    connect( aRefPointX, SIGNAL( valueChanged( int ) ), this, SLOT( onPointCoordChanged( int ) ) );
+    connect( aRefPointY, SIGNAL( valueChanged( int ) ), this, SLOT( onPointCoordChanged( int ) ) );
   }
-  aMappingLayout->setColumnStretch( 1, 1 ); // x
-  aMappingLayout->setColumnStretch( 3, 1 ); // degrees
-  aMappingLayout->setColumnStretch( 5, 1 ); // minutes
-  aMappingLayout->setColumnStretch( 7, 2 ); // seconds (double with 4 digits)
+  aTransformLayout->setColumnStretch( 1, 1 ); // double
+  aTransformLayout->setColumnStretch( 3, 1 ); // degrees
+  aTransformLayout->setColumnStretch( 5, 1 ); // minutes
+  aTransformLayout->setColumnStretch( 7, 2 ); // seconds (double with 4 digits)
 
   // Common
   addWidget( myFileNameGroup );
   addWidget( myImageNameGroup );
-  addWidget( myMappingGroup );
+  addWidget( myTransformGroup );
   addStretch();
 
   connect( aBrowseBtn, SIGNAL( clicked() ), this, SLOT( onBrowse() ) );
+
+  connect( myModeGroup, SIGNAL( buttonClicked( int ) ),
+           this, SLOT( onModeActivated( int ) ) );
+
+  connect( myRefImage, SIGNAL( activated( const QString& ) ),
+           this, SLOT( onRefImageActivated( const QString& ) ) );
+
+  onModeActivated( Manual );
+
+  setMinimumWidth( 350 );
 }
 
 HYDROGUI_ImportImageDlg::~HYDROGUI_ImportImageDlg()
@@ -209,7 +251,7 @@ void HYDROGUI_ImportImageDlg::setIsEdit( const bool theIsEdit )
 {
   myFileNameGroup->setVisible( !theIsEdit );
   myImageNameGroup->setEnabled( theIsEdit );
-  myMappingGroup->setEnabled( theIsEdit );
+  myTransformGroup->setEnabled( theIsEdit );
 }
 
 void HYDROGUI_ImportImageDlg::reset()
@@ -233,8 +275,17 @@ void HYDROGUI_ImportImageDlg::reset()
     myPointYMinMap[ aPointType ]->clear();
     myPointXSecMap[ aPointType ]->clear();
     myPointYSecMap[ aPointType ]->clear();
+
+    myRefPointXMap[ aPointType ]->clear();
+    myRefPointYMap[ aPointType ]->clear();
   }
-  myMappingGroup->setEnabled( false );
+  myTransformGroup->setEnabled( false );
+  myModeGroup->button( Manual )->setChecked( true );
+  myRefImage->clear();
+
+  onModeActivated( Manual );
+
+  myPrsPointDataList.clear();
 }
 
 void HYDROGUI_ImportImageDlg::setImageName( const QString& theName )
@@ -247,8 +298,40 @@ QString HYDROGUI_ImportImageDlg::getImageName() const
   return myImageName->text();
 }
 
+QString HYDROGUI_ImportImageDlg::getFileName() const
+{
+  return myFileName->text();
+}
+
+void HYDROGUI_ImportImageDlg::setImageSize( const QSize& theSize,
+                                            const bool theIsRefImage )
+{
+  int aWidth = theSize.width();
+  int aHeight = theSize.height();
+  for( int aPointType = HYDROGUI_PrsImage::PointA;
+       aPointType <= HYDROGUI_PrsImage::PointC; aPointType++ )
+  {
+    if( theIsRefImage )
+    {
+      myRefPointXMap[ aPointType ]->setRange( 0, aWidth );
+      myRefPointYMap[ aPointType ]->setRange( 0, aHeight );
+    }
+    else
+    {
+      myPointXMap[ aPointType ]->setRange( 0, aWidth );
+      myPointYMap[ aPointType ]->setRange( 0, aHeight );
+    }
+  }
+}
+
+int HYDROGUI_ImportImageDlg::getTransformationMode() const
+{
+  return myModeGroup->button( Manual )->isChecked() ? Manual : RefImage;
+}
+
 void HYDROGUI_ImportImageDlg::setTransformationDataMap( const TransformationDataMap& theMap,
-                                                        const bool theIsOnlyInput )
+                                                        const bool theIsOnlyInput,
+                                                        const bool theIsRefImage )
 {
   for( int aPointType = HYDROGUI_PrsImage::PointA;
        aPointType <= HYDROGUI_PrsImage::PointC; aPointType++ )
@@ -256,10 +339,13 @@ void HYDROGUI_ImportImageDlg::setTransformationDataMap( const TransformationData
     if( theMap.contains( aPointType ) )
     {
       const TransformationData& aData = theMap[ aPointType ];
-      myPointXMap[ aPointType ]->setText( QString::number( aData.first.x() ) );
-      myPointYMap[ aPointType ]->setText( QString::number( aData.first.y() ) );
 
-      if( !theIsOnlyInput )
+      QtxIntSpinBox* aPointX = theIsRefImage ? myRefPointXMap[ aPointType ] : myPointXMap[ aPointType ];
+      QtxIntSpinBox* aPointY = theIsRefImage ? myRefPointYMap[ aPointType ] : myPointYMap[ aPointType ];
+      aPointX->setValue( aData.first.x() );
+      aPointY->setValue( aData.first.y() );
+
+      if( !theIsOnlyInput && !theIsRefImage )
       {
         QPointF aPoint = aData.second;
         int aXDeg = 0, aYDeg = 0;
@@ -268,18 +354,19 @@ void HYDROGUI_ImportImageDlg::setTransformationDataMap( const TransformationData
         HYDROGUI_Tool::DoubleToLambert( aPoint.x(), aXDeg, aXMin, aXSec );
         HYDROGUI_Tool::DoubleToLambert( aPoint.y(), aYDeg, aYMin, aYSec );
 
-        myPointXDegMap[ aPointType ]->setText( QString::number( aXDeg ) );
-        myPointYDegMap[ aPointType ]->setText( QString::number( aYDeg ) );
-        myPointXMinMap[ aPointType ]->setText( QString::number( aXMin ) );
-        myPointYMinMap[ aPointType ]->setText( QString::number( aYMin ) );
-        myPointXSecMap[ aPointType ]->setText( QString::number( aXSec ) );
-        myPointYSecMap[ aPointType ]->setText( QString::number( aYSec ) );
+        myPointXDegMap[ aPointType ]->setValue( aXDeg );
+        myPointYDegMap[ aPointType ]->setValue( aYDeg );
+        myPointXMinMap[ aPointType ]->setValue( aXMin );
+        myPointYMinMap[ aPointType ]->setValue( aYMin );
+        myPointXSecMap[ aPointType ]->setValue( aXSec );
+        myPointYSecMap[ aPointType ]->setValue( aYSec );
       }
     }
   }
 }
 
-bool HYDROGUI_ImportImageDlg::getTransformationDataMap( TransformationDataMap& theMap ) const
+bool HYDROGUI_ImportImageDlg::getTransformationDataMap( TransformationDataMap& theMap,
+                                                        const bool theIsRefImage ) const
 {
   theMap.clear();
   for( int aPointType = HYDROGUI_PrsImage::PointA;
@@ -287,16 +374,25 @@ bool HYDROGUI_ImportImageDlg::getTransformationDataMap( TransformationDataMap& t
   {
     bool anIsOk[8];
     for( int i = 0; i < 8; i++ )
-      anIsOk[ i ] = false;
+      anIsOk[ i ] = true;
 
-    int aX1 = myPointXMap[ aPointType ]->text().toInt( &anIsOk[0] );
-    int aY1 = myPointYMap[ aPointType ]->text().toInt( &anIsOk[1] );
-    int aXDeg = myPointXDegMap[ aPointType ]->text().toInt( &anIsOk[2] );
-    int aYDeg = myPointYDegMap[ aPointType ]->text().toInt( &anIsOk[3] );
-    int aXMin = myPointXMinMap[ aPointType ]->text().toInt( &anIsOk[4] );
-    int aYMin = myPointYMinMap[ aPointType ]->text().toInt( &anIsOk[5] );
-    double aXSec = myPointXSecMap[ aPointType ]->text().toDouble( &anIsOk[6] );
-    double aYSec = myPointYSecMap[ aPointType ]->text().toDouble( &anIsOk[7] );
+    QtxIntSpinBox* aPointX = theIsRefImage ? myRefPointXMap[ aPointType ] : myPointXMap[ aPointType ];
+    QtxIntSpinBox* aPointY = theIsRefImage ? myRefPointYMap[ aPointType ] : myPointYMap[ aPointType ];
+    int aX1 = aPointX->text().toInt( &anIsOk[0] );
+    int aY1 = aPointY->text().toInt( &anIsOk[1] );
+
+    int aXDeg = 0, aYDeg = 0;
+    int aXMin = 0, aYMin = 0;
+    double aXSec = 0, aYSec = 0;
+    if( !theIsRefImage )
+    {
+      aXDeg = myPointXDegMap[ aPointType ]->text().toInt( &anIsOk[2] );
+      aYDeg = myPointYDegMap[ aPointType ]->text().toInt( &anIsOk[3] );
+      aXMin = myPointXMinMap[ aPointType ]->text().toInt( &anIsOk[4] );
+      aYMin = myPointYMinMap[ aPointType ]->text().toInt( &anIsOk[5] );
+      aXSec = myPointXSecMap[ aPointType ]->text().toDouble( &anIsOk[6] );
+      aYSec = myPointYSecMap[ aPointType ]->text().toDouble( &anIsOk[7] );
+    }
 
     for( int i = 0; i < 8; i++ )
       if( !anIsOk[ i ] )
@@ -312,38 +408,56 @@ bool HYDROGUI_ImportImageDlg::getTransformationDataMap( TransformationDataMap& t
   return true;
 }
 
+void HYDROGUI_ImportImageDlg::setPrsPointDataList( const PrsPointDataList& theList )
+{
+  myPrsPointDataList = theList;
+
+  if( !myPrsPointDataList.isEmpty() )
+  {
+    myModeGroup->button( RefImage )->setEnabled( true );
+
+    myRefImage->clear();
+    myRefImage->addItem( "" ); // first empty item
+
+    PrsPointDataListIterator anIter( myPrsPointDataList );
+    while( anIter.hasNext() )
+      myRefImage->addItem( anIter.next().first );
+  }
+  else
+    myModeGroup->button( RefImage )->setEnabled( false );
+}
+
 void HYDROGUI_ImportImageDlg::initializePointSelection()
 {
   myPointBtnMap[ HYDROGUI_PrsImage::PointA ]->setChecked( true );
 
   // ouv: tmp
-  myPointXDegMap[ HYDROGUI_PrsImage::PointA ]->setText( "50" );
-  myPointXMinMap[ HYDROGUI_PrsImage::PointA ]->setText( "0" );
-  myPointXSecMap[ HYDROGUI_PrsImage::PointA ]->setText( "0" );
-  myPointYDegMap[ HYDROGUI_PrsImage::PointA ]->setText( "50" );
-  myPointYMinMap[ HYDROGUI_PrsImage::PointA ]->setText( "0" );
-  myPointYSecMap[ HYDROGUI_PrsImage::PointA ]->setText( "0" );
-
-  myPointXDegMap[ HYDROGUI_PrsImage::PointB ]->setText( "50" );
-  myPointXMinMap[ HYDROGUI_PrsImage::PointB ]->setText( "1" );
-  myPointXSecMap[ HYDROGUI_PrsImage::PointB ]->setText( "0" );
-  myPointYDegMap[ HYDROGUI_PrsImage::PointB ]->setText( "50" );
-  myPointYMinMap[ HYDROGUI_PrsImage::PointB ]->setText( "0" );
-  myPointYSecMap[ HYDROGUI_PrsImage::PointB ]->setText( "0" );
-
-  myPointXDegMap[ HYDROGUI_PrsImage::PointC ]->setText( "50" );
-  myPointXMinMap[ HYDROGUI_PrsImage::PointC ]->setText( "0" );
-  myPointXSecMap[ HYDROGUI_PrsImage::PointC ]->setText( "0" );
-  myPointYDegMap[ HYDROGUI_PrsImage::PointC ]->setText( "50" );
-  myPointYMinMap[ HYDROGUI_PrsImage::PointC ]->setText( "1" );
-  myPointYSecMap[ HYDROGUI_PrsImage::PointC ]->setText( "0" );
+  myPointXDegMap[ HYDROGUI_PrsImage::PointA ]->setValue( 50 );
+  myPointXMinMap[ HYDROGUI_PrsImage::PointA ]->setValue( 0 );
+  myPointXSecMap[ HYDROGUI_PrsImage::PointA ]->setValue( 0 );
+  myPointYDegMap[ HYDROGUI_PrsImage::PointA ]->setValue( 50 );
+  myPointYMinMap[ HYDROGUI_PrsImage::PointA ]->setValue( 0 );
+  myPointYSecMap[ HYDROGUI_PrsImage::PointA ]->setValue( 0 );
+
+  myPointXDegMap[ HYDROGUI_PrsImage::PointB ]->setValue( 50 );
+  myPointXMinMap[ HYDROGUI_PrsImage::PointB ]->setValue( 1 );
+  myPointXSecMap[ HYDROGUI_PrsImage::PointB ]->setValue( 0 );
+  myPointYDegMap[ HYDROGUI_PrsImage::PointB ]->setValue( 50 );
+  myPointYMinMap[ HYDROGUI_PrsImage::PointB ]->setValue( 0 );
+  myPointYSecMap[ HYDROGUI_PrsImage::PointB ]->setValue( 0 );
+
+  myPointXDegMap[ HYDROGUI_PrsImage::PointC ]->setValue( 50 );
+  myPointXMinMap[ HYDROGUI_PrsImage::PointC ]->setValue( 0 );
+  myPointXSecMap[ HYDROGUI_PrsImage::PointC ]->setValue( 0 );
+  myPointYDegMap[ HYDROGUI_PrsImage::PointC ]->setValue( 50 );
+  myPointYMinMap[ HYDROGUI_PrsImage::PointC ]->setValue( 1 );
+  myPointYSecMap[ HYDROGUI_PrsImage::PointC ]->setValue( 0 );
 }
 
 void HYDROGUI_ImportImageDlg::onBrowse()
 {
   QString aFilter( tr( "IMAGE_FILTER" ) );
-  QString aFileName = QFileDialog::getOpenFileName( this, tr( "IMPORT_IMAGE_FROM_FILE" ), "", aFilter );
-  //QString aFileName = "W:/Work/HYDRO/doc/samples/1.bmp";
+  QString aFileName = SUIT_FileDlg::getFileName( this, "", aFilter, tr( "IMPORT_IMAGE_FROM_FILE" ), true );
   if( !aFileName.isEmpty() )
   {
     QImage anImage( aFileName );
@@ -352,11 +466,40 @@ void HYDROGUI_ImportImageDlg::onBrowse()
       myFileName->setText( aFileName );
       emit createPreview( anImage );
       myImageNameGroup->setEnabled( true );
-      myMappingGroup->setEnabled( true );
+      myTransformGroup->setEnabled( true );
     }
   }
 }
 
+void HYDROGUI_ImportImageDlg::onModeActivated( int theMode )
+{
+  bool anIsManual = theMode == Manual;
+  for( int aPointType = HYDROGUI_PrsImage::PointA;
+       aPointType <= HYDROGUI_PrsImage::PointC; aPointType++ )
+  {
+    myRefImageWg->setVisible( !anIsManual );
+
+    myPointXDegMap[ aPointType ]->setVisible( anIsManual );
+    myPointYDegMap[ aPointType ]->setVisible( anIsManual );
+    myPointXMinMap[ aPointType ]->setVisible( anIsManual );
+    myPointYMinMap[ aPointType ]->setVisible( anIsManual );
+    myPointXSecMap[ aPointType ]->setVisible( anIsManual );
+    myPointYSecMap[ aPointType ]->setVisible( anIsManual );
+
+    myRefPointXMap[ aPointType ]->setVisible( !anIsManual );
+    myRefPointYMap[ aPointType ]->setVisible( !anIsManual );
+  }
+
+  QListIterator<QLabel*> anIter( myLambertLabels );
+  while( anIter.hasNext() )
+    anIter.next()->setVisible( anIsManual );
+}
+
+void HYDROGUI_ImportImageDlg::onRefImageActivated( const QString& theName )
+{
+  emit refImageActivated( theName );
+}
+
 void HYDROGUI_ImportImageDlg::onPointBtnToggled( bool theState )
 {
   int aPointType = HYDROGUI_PrsImage::None;
@@ -379,3 +522,27 @@ void HYDROGUI_ImportImageDlg::onPointBtnToggled( bool theState )
   }
   emit activatePointSelection( aPointType );
 }
+
+void HYDROGUI_ImportImageDlg::onPointCoordChanged( int theValue )
+{
+  QObject* aSender = sender();
+  if( !aSender )
+    return;
+
+  for( int aPointType = HYDROGUI_PrsImage::PointA;
+       aPointType <= HYDROGUI_PrsImage::PointC; aPointType++ )
+  {
+    if( aSender == myPointXMap[ aPointType ] ||
+        aSender == myPointYMap[ aPointType ] )
+    {
+      bool anIsY = aSender == myPointYMap[ aPointType ];
+      emit pointCoordChanged( false, aPointType, anIsY, theValue );
+    }
+    else if( aSender == myRefPointXMap[ aPointType ] ||
+             aSender == myRefPointYMap[ aPointType ] )
+    {
+      bool anIsY = aSender == myRefPointYMap[ aPointType ];
+      emit pointCoordChanged( true, aPointType, anIsY, theValue );
+    }
+  }
+}