Salome HOME
Fix for the bug #45: check and warning when the same image is used in 2 arguments.
[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( TwoImages ),
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
67   QFrame* aBackgroundFrame = new QFrame( aParamGroup );
68   QLabel* aBackgroundLabel = new QLabel( tr( "BACKGROUND" ), aBackgroundFrame );
69   myTransparent = new QRadioButton( tr( "TRANSPARENT" ), aBackgroundFrame );
70   myTransparent->setChecked( true );
71   myColor = new QRadioButton( tr( "COLOR" ), aBackgroundFrame );
72   myColorBox = new HYDROGUI_ColorWidget( aBackgroundFrame );
73
74   QGridLayout* aBackgroundLayout = new QGridLayout( aBackgroundFrame );
75   aBackgroundLayout->setMargin( 0 );
76   aBackgroundLayout->setSpacing( 5 );
77   aBackgroundLayout->addWidget( aBackgroundLabel, 0, 0, 2, 1 );
78   aBackgroundLayout->addWidget( myTransparent,    0, 1 );
79   aBackgroundLayout->addWidget( myColor,          1, 1 );
80   aBackgroundLayout->addWidget( myColorBox,       1, 2 );
81
82   QGridLayout* aParamLayout = new QGridLayout( aParamGroup );
83   aParamLayout->setMargin( 5 );
84   aParamLayout->setSpacing( 5 );
85   aParamLayout->addWidget( myImage1Label,    0, 0 );
86   aParamLayout->addWidget( myImage1,         0, 1 );
87   aParamLayout->addWidget( myImage2Label,    1, 0 );
88   aParamLayout->addWidget( myImage2,         1, 1 );
89   aParamLayout->addWidget( myPolylineLabel,  1, 0 );
90   aParamLayout->addWidget( myPolyline,       1, 1 );
91   aParamLayout->addWidget( aBackgroundFrame, 2, 0, 1, 2 );
92
93   // Common
94   addWidget( anImageNameGroup );
95   addWidget( aParamGroup );
96   addStretch();
97
98   connect( myModifySelectedImage, SIGNAL( toggled( bool ) ),
99            this, SLOT( onModifySelectedImage( bool ) ) );
100   connect( myTransparent, SIGNAL( toggled( bool ) ), 
101     myColorBox, SLOT( setDisabled( bool ) ) );
102   connect( myImage1, SIGNAL( alreadySelected( const QString& ) ),
103     this, SIGNAL( alreadySelected( const QString& ) ) );
104   connect( myImage2, SIGNAL( alreadySelected( const QString& ) ),
105     this, SIGNAL( alreadySelected( const QString& ) ) );
106
107   setMode( myMode, myIsEdit );
108 }
109
110 HYDROGUI_TwoImagesDlg::~HYDROGUI_TwoImagesDlg()
111 {
112 }
113
114 void HYDROGUI_TwoImagesDlg::reset()
115 {
116   myImageName->clear();
117   myModifySelectedImage->setChecked( false );
118   myImage1->Clear();
119   myImage2->Clear();
120   myPolyline->Clear();
121   myTransparent->setChecked( true );
122   myColorBox->resetColor();
123   myColorBox->setDisabled( true );
124 }
125
126 void HYDROGUI_TwoImagesDlg::setMode( const int theMode, const bool theIsEdit )
127 {
128   myMode = theMode;
129   myIsEdit = theIsEdit;
130
131   bool anIsTwoImages = myMode == TwoImages;
132
133   myModifySelectedImage->setVisible( !anIsTwoImages && !myIsEdit );
134
135   myImage1Label->setText( anIsTwoImages ? tr( "IMAGE_1" ) : tr( "IMAGE" ) );
136
137   myImage2Label->setVisible( anIsTwoImages );
138   myImage2->setVisible( anIsTwoImages );
139   myPolylineLabel->setVisible( !anIsTwoImages );
140   myPolyline->setVisible( !anIsTwoImages );
141 }
142
143 bool HYDROGUI_TwoImagesDlg::isModifySelected() const
144 {
145   return myModifySelectedImage->isChecked();
146 }
147
148 void HYDROGUI_TwoImagesDlg::setImageName( const QString& theName )
149 {
150   myImageName->setText( theName );
151 }
152
153 QString HYDROGUI_TwoImagesDlg::getImageName() const
154 {
155   return myImageName->text();
156 }
157
158 void HYDROGUI_TwoImagesDlg::setSelectedObjects( const QString& theName1,
159                                                 const QString& theName2 )
160 {
161   myImage1->SetName( theName1 );
162   if( myMode == TwoImages )
163     myImage2->SetName( theName2 );
164   else
165     myPolyline->SetName( theName2 );
166 }
167
168 bool HYDROGUI_TwoImagesDlg::getSelectedObjects( QString& theName1,
169                                                 QString& theName2 ) const
170 {
171   theName1 = myImage1->GetName();
172   if( myMode == TwoImages )
173     theName2 = myImage2->GetName();
174   else
175     theName2 = myPolyline->GetName();
176   return !theName1.isEmpty() && !theName2.isEmpty();
177 }
178
179 void HYDROGUI_TwoImagesDlg::setPreselectedObject( const QString& theName )
180 {
181   myImage1->SetName( theName );
182
183   HYDROGUI_ObjSelector* aSelector = myMode == TwoImages ? myImage2 : myPolyline;
184   aSelector->SetChecked( true );
185   aSelector->SetName( QString() );
186 }
187
188 void HYDROGUI_TwoImagesDlg::setColor( const QColor& theColor )
189 {
190   if( theColor.alpha() == 0 ) // transparent
191     myTransparent->setChecked( true );
192   else
193     myColor->setChecked( true );
194   myColorBox->setColor( theColor );
195 }
196
197 QColor HYDROGUI_TwoImagesDlg::getColor() const
198 {
199   QColor aColor( 255, 255, 255, 0 ); // transparent
200   if( myColor->isChecked() )
201     aColor = myColorBox->color();
202   return aColor;
203 }
204
205 void HYDROGUI_TwoImagesDlg::onModifySelectedImage( bool theState )
206 {
207   myImageName->setEnabled( !theState );
208 }