Salome HOME
Access to 'Invalid value' of altitude from Bathymetry is added.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PolylineDlg.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_PolylineDlg.h"
24 #include <CurveCreator_Widget.h>
25 #include <CurveCreator_Curve.hxx>
26
27 #include <QHBoxLayout>
28 #include <QLabel>
29 #include <QLineEdit>
30
31 HYDROGUI_PolylineDlg::HYDROGUI_PolylineDlg( HYDROGUI_Module* theModule, const QString& theTitle )
32 : HYDROGUI_InputPanel( theModule, theTitle ), myName(NULL)
33 {
34   QHBoxLayout* aNameLayout = new QHBoxLayout();
35   QLabel* aNameLabel = new QLabel(tr("CURVE_NAME_TLT"), this);
36   aNameLayout->addWidget(aNameLabel);
37   myName = new QLineEdit(this);
38   aNameLayout->addWidget(myName);
39
40   addLayout(aNameLayout);
41
42   myEditorWidget =
43     new CurveCreator_Widget( this, NULL);
44
45   addWidget( myEditorWidget );
46 }
47
48 HYDROGUI_PolylineDlg::~HYDROGUI_PolylineDlg()
49 {
50 }
51
52 void HYDROGUI_PolylineDlg::reset()
53 {
54 }
55
56 void HYDROGUI_PolylineDlg::setPolylineName( const QString& theName )
57 {
58   myName->setText(theName);
59 }
60
61 QString HYDROGUI_PolylineDlg::getPolylineName() const
62 {
63   return myName->text();
64 }
65
66 void HYDROGUI_PolylineDlg::setCurve( CurveCreator_Curve* theCurve )
67 {
68   myEditorWidget->setCurve( theCurve );
69 }