]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_TwoImagesDlg.cxx
Salome HOME
Formatting.
[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_ObjSelector.h"
26 #include "HYDROGUI_ColorWidget.h"
27
28 #include <QLayout>
29 #include <QLineEdit>
30 #include <QRadioButton>
31
32 HYDROGUI_TwoImagesDlg::HYDROGUI_TwoImagesDlg( HYDROGUI_Module* theModule, const QString& theTitle )
33 : HYDROGUI_InputPanel( theModule, theTitle )
34 {
35   myName = new QLineEdit();
36   myImage1 = new HYDROGUI_ObjSelector( module(), 0 );
37   myImage2 = new HYDROGUI_ObjSelector( module(), 0 );
38   myTransparent = new QRadioButton( tr( "TRANSPARENT" ) );
39   myTransparent->setChecked( true );
40   myColor = new QRadioButton( tr( "COLOR" ) );
41   myColorBox = new HYDROGUI_ColorWidget( 0 );
42
43   addWidget( tr( "NAME" ), myName );
44   addSeparator();
45   addWidget( tr( "IMAGE_1" ), myImage1 );
46   addWidget( tr( "IMAGE_2" ), myImage2 );
47
48   QFrame* aBackground = new QFrame();
49   QGridLayout* aLayout = new QGridLayout( aBackground );
50   aLayout->addWidget( myTransparent, 0, 0 );
51   aLayout->addWidget( myColor, 1, 0 );
52   aLayout->addWidget( myColorBox, 1, 1 );
53
54   addWidget( tr( "BACKGROUND" ), aBackground );
55   addSeparator();
56   setRowStretch();
57 }
58
59 HYDROGUI_TwoImagesDlg::~HYDROGUI_TwoImagesDlg()
60 {
61 }
62
63 void HYDROGUI_TwoImagesDlg::GetSelectedImages( QString& theName1, QString& theName2 ) const
64 {
65   theName1 = myImage1->GetName();
66   theName2 = myImage2->GetName();
67 }