]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_StreamDlg.cxx
Salome HOME
new presentation using DTM
[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 & ) ), 
123            this, SIGNAL( AxisChanged( const QString& ) ) );
124   connect( myAddButton, SIGNAL( clicked() ), this, SIGNAL( AddProfiles() ) );
125   connect( myRemoveButton, SIGNAL( clicked() ), this, SLOT( onRemoveProfiles() ) );
126 }
127
128 HYDROGUI_StreamDlg::~HYDROGUI_StreamDlg()
129 {
130 }
131
132 void HYDROGUI_StreamDlg::reset()
133 {
134   bool isBlocked = blockSignals( true );
135
136   myObjectName->clear();
137
138   myAxes->clear();
139   myProfiles->setObjects( HYDROGUI_ListModel::Object2VisibleList() );
140   myAddButton->setEnabled( false );
141   myRemoveButton->setEnabled( false );
142
143   blockSignals( isBlocked );
144 }
145
146 void HYDROGUI_StreamDlg::setObjectName( const QString& theName )
147 {
148   myObjectName->setText( theName );
149 }
150
151 QString HYDROGUI_StreamDlg::getObjectName() const
152 {
153   return myObjectName->text();
154 }
155
156 void HYDROGUI_StreamDlg::setAxisNames( const QStringList& theAxises )
157 {
158   bool isBlocked = blockSignals( true );
159
160   myAxes->clear();
161   myAxes->addItems( theAxises );
162
163   blockSignals( isBlocked );
164 }
165
166 void HYDROGUI_StreamDlg::setAxisName( const QString& theName )
167 {
168   bool isBlocked = blockSignals( true );
169
170   int aNewId = myAxes->findText( theName );
171   if ( aNewId != myAxes->currentIndex() ) {
172     myAxes->setCurrentIndex( aNewId );
173   }
174   myAddButton->setEnabled( myAxes->currentIndex() > -1 );
175
176   blockSignals( isBlocked );
177 }
178
179 QString HYDROGUI_StreamDlg::getAxisName() const
180 {
181   return myAxes->currentText();
182 }
183
184 void HYDROGUI_StreamDlg::setProfiles( const QStringList& theProfiles )
185 {
186   bool isBlocked = blockSignals( true );
187
188   myProfiles->setUpdatesEnabled( false );
189   
190   HYDROGUI_ListModel::Object2VisibleList aProfiles;
191 #ifndef LIGHT_MODE
192   foreach ( const QString& aProfileName, theProfiles )
193   {
194     Handle(HYDROData_Profile) anObject = Handle(HYDROData_Profile)::DownCast( 
195       HYDROGUI_Tool::FindObjectByName( module(), aProfileName ) );
196     if ( !anObject.IsNull() )
197     {
198       aProfiles.append( HYDROGUI_ListModel::Object2Visible( anObject, true ) );
199     }
200   }
201 #endif
202
203   myProfiles->setObjects( aProfiles );
204
205   myRemoveButton->setEnabled( myProfiles->getObjects().count() > 0 );
206
207   myProfiles->setUpdatesEnabled( true );
208
209   blockSignals( isBlocked );
210 }
211
212 void HYDROGUI_StreamDlg::onRemoveProfiles()
213 {
214   QStringList aSelectedProfiles = myProfiles->getSelectedNames();
215
216   emit RemoveProfiles( aSelectedProfiles );
217 }
218
219 void HYDROGUI_StreamDlg::setDDZ( const double theDDZ )
220 {
221   myDDZ->setValue( theDDZ );
222 }
223
224 double HYDROGUI_StreamDlg::getDDZ() const
225 {
226   return myDDZ->value();
227 }
228
229 void HYDROGUI_StreamDlg::setSpatialStep( const double theSpatialStep )
230 {
231   mySpatialStep->setValue( theSpatialStep );
232 }
233
234 double HYDROGUI_StreamDlg::getSpatialStep() const
235 {
236   return mySpatialStep->value();
237 }
238