Salome HOME
Merge branch 'BR_HYDRO_IMPS_2016' of ssh://gitolite3@git.salome-platform.org/modules...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_StreamDlg.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_StreamDlg.h"
20 #include "HYDROGUI_ListSelector.h"
21 #include "HYDROGUI_OrderedListWidget.h"
22 #include <HYDROData_Profile.h>
23
24 #ifndef LIGHT_MODE
25   #include "HYDROGUI_Module.h"
26   #include "HYDROGUI_Tool2.h"
27   #include <LightApp_Application.h>
28   #include <LightApp_SelectionMgr.h>
29 #endif
30
31 #include <QComboBox>
32 #include <QGroupBox>
33 #include <QLabel>
34 #include <QLayout>
35 #include <QLineEdit>
36 #include <QListWidget>
37 #include <QPushButton>
38 #include <QDoubleSpinBox>
39
40 HYDROGUI_StreamDlg::HYDROGUI_StreamDlg( HYDROGUI_Module* theModule, const QString& theTitle )
41 : HYDROGUI_InputPanel( theModule, theTitle )
42 {
43   // Stream name
44   myObjectNameGroup = new QGroupBox( tr( "STREAM_NAME" ), mainFrame() );
45
46   myObjectName = new QLineEdit( myObjectNameGroup );
47
48   QBoxLayout* aNameLayout = new QHBoxLayout( myObjectNameGroup );
49   aNameLayout->setMargin( 5 );
50   aNameLayout->setSpacing( 5 );
51   aNameLayout->addWidget( new QLabel( tr( "NAME" ), myObjectNameGroup ) );
52   aNameLayout->addWidget( myObjectName );
53
54   // Stream parameters
55   QGroupBox* aParamGroup = new QGroupBox( tr( "STREAM_PARAMETERS" ), mainFrame() );
56
57   myAxes = new QComboBox( aParamGroup );
58   myAxes->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
59   myDDZ = new QDoubleSpinBox( aParamGroup );
60   myDDZ->setRange( 1E-2, 100 );
61   myDDZ->setSingleStep( 1E-2 );
62   myDDZ->setValue( 0.1 );
63   myDDZ->setDecimals( 2 );
64   mySpatialStep = new QDoubleSpinBox( aParamGroup );
65   mySpatialStep->setRange( 1E-2, 100 );
66   mySpatialStep->setSingleStep( 1.0 );
67   mySpatialStep->setValue( 1 );
68   mySpatialStep->setDecimals( 2 );
69
70   QGridLayout* aParam1Layout = new QGridLayout();
71   aParam1Layout->setMargin( 0 );
72   aParam1Layout->addWidget( new QLabel( tr( "STREAM_HYDRAULIC_AXIS" ) ), 0, 0 );
73   aParam1Layout->addWidget( myAxes, 0, 1 );
74   aParam1Layout->addWidget( new QLabel( tr( "STREAM_DDZ" ) ), 1, 0 );
75   aParam1Layout->addWidget( myDDZ, 1, 1 );
76   aParam1Layout->addWidget( new QLabel( tr( "STREAM_SPATIAL_STEP" ) ), 2, 0 );
77   aParam1Layout->addWidget( mySpatialStep, 2, 1 );
78
79   myProfiles = new HYDROGUI_OrderedListWidget( aParamGroup, 0 );
80   myProfiles->setHiddenObjectsShown(true);
81   myProfiles->setVisibilityIconShown(false);
82   myProfiles->setContentsMargins(QMargins());
83   myProfiles->setOrderingEnabled( false );
84  
85   myAddButton = new QPushButton( aParamGroup );
86   myAddButton->setText( tr("ADD") );
87   myRemoveButton = new QPushButton( aParamGroup );
88   myRemoveButton->setText( tr("REMOVE") );
89   QBoxLayout* aButtonsLayout = new QHBoxLayout();
90   aButtonsLayout->addWidget( myAddButton );
91   aButtonsLayout->addWidget( myRemoveButton );
92   aButtonsLayout->addStretch();
93  
94   QBoxLayout* aParamLayout = new QVBoxLayout();
95   aParamLayout->setMargin( 5 );
96   aParamLayout->setSpacing( 5 );
97   aParamLayout->addLayout( aParam1Layout );
98   aParamLayout->addWidget( myProfiles );
99   aParamLayout->addLayout( aButtonsLayout );
100
101
102
103   aParamGroup->setLayout( aParamLayout );
104
105   // Common
106   addWidget( myObjectNameGroup );
107   addWidget( aParamGroup );
108   addStretch();
109
110   // Create selector
111   if ( module() ) {
112     HYDROGUI_ListSelector* aListSelector = 
113 #ifdef LIGHT_MODE
114       new HYDROGUI_ListSelector( myProfiles, 0 );
115 #else
116       new HYDROGUI_ListSelector( myProfiles, module()->getApp()->selectionMgr() );
117 #endif
118     aListSelector->setAutoBlock( true );
119   }
120
121   // Connect signals and slots
122   connect( myAxes, SIGNAL( currentIndexChanged( const QString & ) ), this, SIGNAL( AxisChanged( const QString& ) ) );
123   connect( myAddButton, SIGNAL( clicked() ), this, SIGNAL( AddProfiles() ) );
124   connect( myRemoveButton, SIGNAL( clicked() ), this, SLOT( onRemoveProfiles() ) );
125   connect( myDDZ, SIGNAL( valueChanged (double) ), this, SLOT (onDDZValueChanged(double)));
126   connect( mySpatialStep, SIGNAL( valueChanged (double) ), this, SLOT (onSSValueChanged(double)));
127 }
128
129 HYDROGUI_StreamDlg::~HYDROGUI_StreamDlg()
130 {
131 }
132
133 void HYDROGUI_StreamDlg::reset()
134 {
135   bool isBlocked = blockSignals( true );
136
137   myObjectName->clear();
138
139   myAxes->clear();
140   myProfiles->setObjects( HYDROGUI_ListModel::Object2VisibleList() );
141   myAddButton->setEnabled( true );
142   myRemoveButton->setEnabled( true );
143
144   blockSignals( isBlocked );
145 }
146
147 void HYDROGUI_StreamDlg::setObjectName( const QString& theName )
148 {
149   myObjectName->setText( theName );
150 }
151
152 QString HYDROGUI_StreamDlg::getObjectName() const
153 {
154   return myObjectName->text();
155 }
156
157 void HYDROGUI_StreamDlg::setAxisNames( const QStringList& theAxises )
158 {
159   bool isBlocked = blockSignals( true );
160
161   myAxes->clear();
162   myAxes->addItems( theAxises );
163
164   blockSignals( isBlocked );
165 }
166
167 void HYDROGUI_StreamDlg::setAxisName( const QString& theName )
168 {
169   bool isBlocked = blockSignals( true );
170
171   int aNewId = myAxes->findText( theName );
172   if ( aNewId != myAxes->currentIndex() ) {
173     myAxes->setCurrentIndex( aNewId );
174   }
175   //myAddButton->setEnabled( myAxes->currentIndex() > -1 );
176
177   blockSignals( isBlocked );
178 }
179
180 QString HYDROGUI_StreamDlg::getAxisName() const
181 {
182   return myAxes->currentText();
183 }
184
185 void HYDROGUI_StreamDlg::setProfiles( const QStringList& theProfiles )
186 {
187   bool isBlocked = blockSignals( true );
188
189   myProfiles->setUpdatesEnabled( false );
190   
191   HYDROGUI_ListModel::Object2VisibleList aProfiles;
192 #ifndef LIGHT_MODE
193   foreach ( const QString& aProfileName, theProfiles )
194   {
195     Handle(HYDROData_Profile) anObject = Handle(HYDROData_Profile)::DownCast( 
196       HYDROGUI_Tool::FindObjectByName( module(), aProfileName ) );
197     if ( !anObject.IsNull() )
198     {
199       aProfiles.append( HYDROGUI_ListModel::Object2Visible( anObject, true ) );
200     }
201   }
202 #endif
203
204   myProfiles->setObjects( aProfiles );
205
206   myRemoveButton->setEnabled( myProfiles->getObjects().count() > 0 );
207
208   myProfiles->setUpdatesEnabled( true );
209
210   blockSignals( isBlocked );
211 }
212
213 void HYDROGUI_StreamDlg::onRemoveProfiles()
214 {
215   QStringList aSelectedProfiles = myProfiles->getSelectedNames();
216
217   emit RemoveProfiles( aSelectedProfiles );
218 }
219
220 void HYDROGUI_StreamDlg::onDDZValueChanged(double d)
221 {
222   emit DDZValueChanged( d );
223 }
224
225 void HYDROGUI_StreamDlg::onSSValueChanged(double d)
226 {
227   emit SSValueChanged( d );
228 }
229
230
231 void HYDROGUI_StreamDlg::setDDZ( const double theDDZ )
232 {
233   myDDZ->setValue( theDDZ );
234 }
235
236 double HYDROGUI_StreamDlg::getDDZ() const
237 {
238   return myDDZ->value();
239 }
240
241 void HYDROGUI_StreamDlg::setSpatialStep( const double theSpatialStep )
242 {
243   mySpatialStep->setValue( theSpatialStep );
244 }
245
246 double HYDROGUI_StreamDlg::getSpatialStep() const
247 {
248   return mySpatialStep->value();
249 }
250