Salome HOME
PR: quadtree
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_TwoImagesDlg.cxx
index d8edd5962fc28c9536760a1db835484ffced4642..65dff63bff5e569c2ee8adc5267f517def270a3c 100644 (file)
@@ -34,7 +34,7 @@
 
 HYDROGUI_TwoImagesDlg::HYDROGUI_TwoImagesDlg( HYDROGUI_Module* theModule, const QString& theTitle )
 : HYDROGUI_InputPanel( theModule, theTitle ),
-  myMode( TwoImages ),
+  myMode( TwoFuseImage ),
   myIsEdit( false )
 {
   // Image name
@@ -62,16 +62,17 @@ HYDROGUI_TwoImagesDlg::HYDROGUI_TwoImagesDlg( HYDROGUI_Module* theModule, const
   myImage2 = new HYDROGUI_ObjSelector( theModule, KIND_IMAGE, aParamGroup );
 
   myPolylineLabel = new QLabel( tr( "POLYLINE" ), aParamGroup );
-  myPolyline = new HYDROGUI_ObjSelector( theModule, KIND_POLYLINEXY, aParamGroup );
+  myPolyline = new HYDROGUI_ObjSelector( theModule, KIND_POLYLINEXY, aParamGroup,
+    HYDROGUI_ObjSelector::ClosedPolyline);
 
-  QFrame* aBackgroundFrame = new QFrame( aParamGroup );
-  QLabel* aBackgroundLabel = new QLabel( tr( "BACKGROUND" ), aBackgroundFrame );
-  myTransparent = new QRadioButton( tr( "TRANSPARENT" ), aBackgroundFrame );
+  myBackgroundFrame = new QFrame( aParamGroup );
+  QLabel* aBackgroundLabel = new QLabel( tr( "BACKGROUND" ), myBackgroundFrame );
+  myTransparent = new QRadioButton( tr( "TRANSPARENT" ), myBackgroundFrame );
   myTransparent->setChecked( true );
-  myColor = new QRadioButton( tr( "COLOR" ), aBackgroundFrame );
-  myColorBox = new HYDROGUI_ColorWidget( aBackgroundFrame );
+  myColor = new QRadioButton( tr( "COLOR" ), myBackgroundFrame );
+  myColorBox = new HYDROGUI_ColorWidget( myBackgroundFrame );
 
-  QGridLayout* aBackgroundLayout = new QGridLayout( aBackgroundFrame );
+  QGridLayout* aBackgroundLayout = new QGridLayout( myBackgroundFrame );
   aBackgroundLayout->setMargin( 0 );
   aBackgroundLayout->setSpacing( 5 );
   aBackgroundLayout->addWidget( aBackgroundLabel, 0, 0, 2, 1 );
@@ -88,7 +89,7 @@ HYDROGUI_TwoImagesDlg::HYDROGUI_TwoImagesDlg( HYDROGUI_Module* theModule, const
   aParamLayout->addWidget( myImage2,         1, 1 );
   aParamLayout->addWidget( myPolylineLabel,  1, 0 );
   aParamLayout->addWidget( myPolyline,       1, 1 );
-  aParamLayout->addWidget( aBackgroundFrame, 2, 0, 1, 2 );
+  aParamLayout->addWidget( myBackgroundFrame, 2, 0, 1, 2 );
 
   // Common
   addWidget( anImageNameGroup );
@@ -128,7 +129,9 @@ void HYDROGUI_TwoImagesDlg::setMode( const int theMode, const bool theIsEdit )
   myMode = theMode;
   myIsEdit = theIsEdit;
 
-  bool anIsTwoImages = myMode == TwoImages;
+  bool anIsTwoImages = isTwoImagesMode();
+
+  myBackgroundFrame->setVisible( theMode != TwoCutImage );
 
   myModifySelectedImage->setVisible( !anIsTwoImages && !myIsEdit );
 
@@ -159,7 +162,7 @@ void HYDROGUI_TwoImagesDlg::setSelectedObjects( const QString& theName1,
                                                 const QString& theName2 )
 {
   myImage1->SetName( theName1 );
-  if( myMode == TwoImages )
+  if( isTwoImagesMode() )
     myImage2->SetName( theName2 );
   else
     myPolyline->SetName( theName2 );
@@ -169,7 +172,7 @@ bool HYDROGUI_TwoImagesDlg::getSelectedObjects( QString& theName1,
                                                 QString& theName2 ) const
 {
   theName1 = myImage1->GetName();
-  if( myMode == TwoImages )
+  if( isTwoImagesMode() )
     theName2 = myImage2->GetName();
   else
     theName2 = myPolyline->GetName();
@@ -180,18 +183,21 @@ void HYDROGUI_TwoImagesDlg::setPreselectedObject( const QString& theName )
 {
   myImage1->SetName( theName );
 
-  HYDROGUI_ObjSelector* aSelector = myMode == TwoImages ? myImage2 : myPolyline;
+  HYDROGUI_ObjSelector* aSelector = isTwoImagesMode() ? myImage2 : myPolyline;
   aSelector->SetChecked( true );
   aSelector->SetName( QString() );
 }
 
 void HYDROGUI_TwoImagesDlg::setColor( const QColor& theColor )
 {
-  if( theColor.alpha() == 0 ) // transparent
+  if( theColor.alpha() == 0 ) // transparent
     myTransparent->setChecked( true );
-  else
+    myColorBox->resetColor();
+  }
+  else {
     myColor->setChecked( true );
-  myColorBox->setColor( theColor );
+    myColorBox->setColor( theColor );
+  }
 }
 
 QColor HYDROGUI_TwoImagesDlg::getColor() const
@@ -206,3 +212,8 @@ void HYDROGUI_TwoImagesDlg::onModifySelectedImage( bool theState )
 {
   myImageName->setEnabled( !theState );
 }
+
+bool HYDROGUI_TwoImagesDlg::isTwoImagesMode() const
+{
+  return myMode == TwoFuseImage || myMode == TwoCutImage;
+}