Salome HOME
refs #497: redesign of HYDRO main menu.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_RiverBottomDlg.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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_RiverBottomDlg.h"
24
25 #include "HYDROGUI_Tool.h"
26 #include "HYDROGUI_ObjComboBox.h"
27
28 #include <HYDROData_Stream.h>
29 #include <HYDROData_Polyline3D.h>
30
31 #include <QLabel>
32 #include <QLayout>
33 #include <QComboBox>
34 #include <QGroupBox>
35
36 HYDROGUI_RiverBottomDlg::HYDROGUI_RiverBottomDlg( HYDROGUI_Module* theModule, const QString& theTitle )
37     : HYDROGUI_InputPanel( theModule, theTitle ),
38     HYDROGUI_ObjComboBoxFilter()
39 {
40     // Channel name
41     QGroupBox* group = new QGroupBox( mainFrame() );
42     QBoxLayout* base = new QVBoxLayout( group );
43
44     base->addWidget( myRivers = new HYDROGUI_ObjComboBox( theModule, tr( "STREAM_OBJECT" ), KIND_STREAM, group ) );
45     myRivers->setObjectFilter( this );
46
47     addWidget( group );
48
49     addStretch();
50
51     connect( myRivers, SIGNAL( objectSelected( const QString& ) ), this, SLOT( onRiverChanged( const QString& ) ) );
52
53     updateState();
54 }
55
56 HYDROGUI_RiverBottomDlg::~HYDROGUI_RiverBottomDlg()
57 {
58 }
59
60 void HYDROGUI_RiverBottomDlg::reset()
61 {
62     bool isBlocked = blockSignals( true );
63
64     myRivers->reset();
65
66     blockSignals( isBlocked );
67
68     updateState();
69 }
70
71 QString HYDROGUI_RiverBottomDlg::getRiverName() const
72 {
73     return myRivers->selectedObject();
74 }
75
76 void HYDROGUI_RiverBottomDlg::setRiverName( const QString& theName )
77 {
78     myRivers->setSectedObject( theName );
79 }
80
81 bool HYDROGUI_RiverBottomDlg::isOk( const Handle(HYDROData_Entity)& theEntity ) const
82 {
83     Handle(HYDROData_Stream) aStream = Handle(HYDROData_Stream)::DownCast(theEntity);
84     return !aStream.IsNull() && aStream->GetBottomPolyline().IsNull();
85 }
86
87 void HYDROGUI_RiverBottomDlg::onRiverChanged( const QString& )
88 {
89     updateState();
90 }
91
92 void HYDROGUI_RiverBottomDlg::updateState()
93 {
94     setApplyEnabled( !getRiverName().isEmpty() );
95 }