Salome HOME
debug of local CS
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_TwoImagesDlg.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_TwoImagesDlg.h"
24
25 #include "HYDROGUI_ColorWidget.h"
26 #include "HYDROGUI_ObjSelector.h"
27
28 #include <QCheckBox>
29 #include <QGroupBox>
30 #include <QLabel>
31 #include <QLayout>
32 #include <QLineEdit>
33 #include <QRadioButton>
34
35 HYDROGUI_TwoImagesDlg::HYDROGUI_TwoImagesDlg( HYDROGUI_Module* theModule, const QString& theTitle )
36 : HYDROGUI_InputPanel( theModule, theTitle ),
37   myMode( TwoFuseImage ),
38   myIsEdit( false )
39 {
40   // Image name
41   QGroupBox* anImageNameGroup = new QGroupBox( tr( "IMAGE_NAME" ) );
42
43   QLabel* anImageNameLabel = new QLabel( tr( "NAME" ), anImageNameGroup );
44   myImageName = new QLineEdit( anImageNameGroup );
45
46   myModifySelectedImage = new QCheckBox( tr( "MODIFY_SELECTED_IMAGE" ) );
47
48   QGridLayout* anImageNameLayout = new QGridLayout( anImageNameGroup );
49   anImageNameLayout->setMargin( 5 );
50   anImageNameLayout->setSpacing( 5 );
51   anImageNameLayout->addWidget( anImageNameLabel,      0, 0 );
52   anImageNameLayout->addWidget( myImageName,           0, 1 );
53   anImageNameLayout->addWidget( myModifySelectedImage, 1, 0, 1, 2 );
54
55   // Parameters
56   QGroupBox* aParamGroup = new QGroupBox( tr( "PARAMETERS" ) );
57
58   myImage1Label = new QLabel( tr( "IMAGE_1" ), aParamGroup );
59   myImage1 = new HYDROGUI_ObjSelector( theModule, KIND_IMAGE, aParamGroup );
60
61   myImage2Label = new QLabel( tr( "IMAGE_2" ), aParamGroup );
62   myImage2 = new HYDROGUI_ObjSelector( theModule, KIND_IMAGE, aParamGroup );
63
64   myPolylineLabel = new QLabel( tr( "POLYLINE" ), aParamGroup );
65   myPolyline = new HYDROGUI_ObjSelector( theModule, KIND_POLYLINEXY, aParamGroup,
66     HYDROGUI_ObjSelector::ClosedPolyline);
67
68   myBackgroundFrame = new QFrame( aParamGroup );
69   QLabel* aBackgroundLabel = new QLabel( tr( "BACKGROUND" ), myBackgroundFrame );
70   myTransparent = new QRadioButton( tr( "TRANSPARENT" ), myBackgroundFrame );
71   myTransparent->setChecked( true );
72   myColor = new QRadioButton( tr( "COLOR" ), myBackgroundFrame );
73   myColorBox = new HYDROGUI_ColorWidget( myBackgroundFrame );
74
75   QGridLayout* aBackgroundLayout = new QGridLayout( myBackgroundFrame );
76   aBackgroundLayout->setMargin( 0 );
77   aBackgroundLayout->setSpacing( 5 );
78   aBackgroundLayout->addWidget( aBackgroundLabel, 0, 0, 2, 1 );
79   aBackgroundLayout->addWidget( myTransparent,    0, 1 );
80   aBackgroundLayout->addWidget( myColor,          1, 1 );
81   aBackgroundLayout->addWidget( myColorBox,       1, 2 );
82
83   QGridLayout* aParamLayout = new QGridLayout( aParamGroup );
84   aParamLayout->setMargin( 5 );
85   aParamLayout->setSpacing( 5 );
86   aParamLayout->addWidget( myImage1Label,    0, 0 );
87   aParamLayout->addWidget( myImage1,         0, 1 );
88   aParamLayout->addWidget( myImage2Label,    1, 0 );
89   aParamLayout->addWidget( myImage2,         1, 1 );
90   aParamLayout->addWidget( myPolylineLabel,  1, 0 );
91   aParamLayout->addWidget( myPolyline,       1, 1 );
92   aParamLayout->addWidget( myBackgroundFrame, 2, 0, 1, 2 );
93
94   // Common
95   addWidget( anImageNameGroup );
96   addWidget( aParamGroup );
97   addStretch();
98
99   connect( myModifySelectedImage, SIGNAL( toggled( bool ) ),
100            this, SLOT( onModifySelectedImage( bool ) ) );
101   connect( myTransparent, SIGNAL( toggled( bool ) ), 
102     myColorBox, SLOT( setDisabled( bool ) ) );
103   connect( myImage1, SIGNAL( alreadySelected( const QString& ) ),
104     this, SIGNAL( alreadySelected( const QString& ) ) );
105   connect( myImage2, SIGNAL( alreadySelected( const QString& ) ),
106     this, SIGNAL( alreadySelected( const QString& ) ) );
107
108   setMode( myMode, myIsEdit );
109 }
110
111 HYDROGUI_TwoImagesDlg::~HYDROGUI_TwoImagesDlg()
112 {
113 }
114
115 void HYDROGUI_TwoImagesDlg::reset()
116 {
117   myImageName->clear();
118   myModifySelectedImage->setChecked( false );
119   myImage1->Clear();
120   myImage2->Clear();
121   myPolyline->Clear();
122   myTransparent->setChecked( true );
123   myColorBox->resetColor();
124   myColorBox->setDisabled( true );
125 }
126
127 void HYDROGUI_TwoImagesDlg::setMode( const int theMode, const bool theIsEdit )
128 {
129   myMode = theMode;
130   myIsEdit = theIsEdit;
131
132   bool anIsTwoImages = isTwoImagesMode();
133
134   myBackgroundFrame->setVisible( theMode != TwoCutImage );
135
136   myModifySelectedImage->setVisible( !anIsTwoImages && !myIsEdit );
137
138   myImage1Label->setText( anIsTwoImages ? tr( "IMAGE_1" ) : tr( "IMAGE" ) );
139
140   myImage2Label->setVisible( anIsTwoImages );
141   myImage2->setVisible( anIsTwoImages );
142   myPolylineLabel->setVisible( !anIsTwoImages );
143   myPolyline->setVisible( !anIsTwoImages );
144 }
145
146 bool HYDROGUI_TwoImagesDlg::isModifySelected() const
147 {
148   return myModifySelectedImage->isChecked();
149 }
150
151 void HYDROGUI_TwoImagesDlg::setImageName( const QString& theName )
152 {
153   myImageName->setText( theName );
154 }
155
156 QString HYDROGUI_TwoImagesDlg::getImageName() const
157 {
158   return myImageName->text();
159 }
160
161 void HYDROGUI_TwoImagesDlg::setSelectedObjects( const QString& theName1,
162                                                 const QString& theName2 )
163 {
164   myImage1->SetName( theName1 );
165   if( isTwoImagesMode() )
166     myImage2->SetName( theName2 );
167   else
168     myPolyline->SetName( theName2 );
169 }
170
171 bool HYDROGUI_TwoImagesDlg::getSelectedObjects( QString& theName1,
172                                                 QString& theName2 ) const
173 {
174   theName1 = myImage1->GetName();
175   if( isTwoImagesMode() )
176     theName2 = myImage2->GetName();
177   else
178     theName2 = myPolyline->GetName();
179   return !theName1.isEmpty() && !theName2.isEmpty();
180 }
181
182 void HYDROGUI_TwoImagesDlg::setPreselectedObject( const QString& theName )
183 {
184   myImage1->SetName( theName );
185
186   HYDROGUI_ObjSelector* aSelector = isTwoImagesMode() ? myImage2 : myPolyline;
187   aSelector->SetChecked( true );
188   aSelector->SetName( QString() );
189 }
190
191 void HYDROGUI_TwoImagesDlg::setColor( const QColor& theColor )
192 {
193   if( theColor.alpha() == 0 ) { // transparent
194     myTransparent->setChecked( true );
195     myColorBox->resetColor();
196   }
197   else {
198     myColor->setChecked( true );
199     myColorBox->setColor( theColor );
200   }
201 }
202
203 QColor HYDROGUI_TwoImagesDlg::getColor() const
204 {
205   QColor aColor( 255, 255, 255, 0 ); // transparent
206   if( myColor->isChecked() )
207     aColor = myColorBox->color();
208   return aColor;
209 }
210
211 void HYDROGUI_TwoImagesDlg::onModifySelectedImage( bool theState )
212 {
213   myImageName->setEnabled( !theState );
214 }
215
216 bool HYDROGUI_TwoImagesDlg::isTwoImagesMode() const
217 {
218   return myMode == TwoFuseImage || myMode == TwoCutImage;
219 }