Salome HOME
Dump Image data to python script (Feature #13).
[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   connect( myEditorWidget, SIGNAL( selectionChanged() ), this, SIGNAL( selectionChanged() ) );
48 }
49
50 HYDROGUI_PolylineDlg::~HYDROGUI_PolylineDlg()
51 {
52 }
53
54 void HYDROGUI_PolylineDlg::reset()
55 {
56 }
57
58 void HYDROGUI_PolylineDlg::setPolylineName( const QString& theName )
59 {
60   myName->setText(theName);
61 }
62
63 QString HYDROGUI_PolylineDlg::getPolylineName() const
64 {
65   return myName->text();
66 }
67
68 void HYDROGUI_PolylineDlg::setCurve( CurveCreator_Curve* theCurve )
69 {
70   myEditorWidget->setCurve( theCurve );
71 }
72
73 QList<int> HYDROGUI_PolylineDlg::getSelectedSections()
74 {
75   return myEditorWidget->getSelectedSections();
76 }
77
78 QList< QPair< int, int > > HYDROGUI_PolylineDlg::getSelectedPoints()
79 {
80   return myEditorWidget->getSelectedPoints();
81 }