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.
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.
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
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include <HYDROGUI_BathymetryOp.h>
21 #include <HYDROGUI_Operations.h>
22 #include <HYDROGUI_BathymetryPrs.h>
23 #include <HYDROGUI_ShapeBathymetry.h>
24 #include <HYDROGUI_Module.h>
25 #include <HYDROGUI_OCCDisplayer.h>
26 #include <LightApp_Application.h>
27 #include <OCCViewer_ViewManager.h>
28 #include <OCCViewer_ViewWindow.h>
29 #include <QtxDoubleSpinBox.h>
30 #include <SUIT_Desktop.h>
31 #include <SUIT_SelectionMgr.h>
33 #include <QPushButton>
34 #include <QApplication>
36 HYDROGUI_BathymetryLimitsDlg::HYDROGUI_BathymetryLimitsDlg( QWidget* theParent )
37 : QDialog( theParent )
39 QGridLayout* layout = new QGridLayout();
42 layout->addWidget( new QLabel( tr( "Min value" ) ), 0, 0 );
43 layout->addWidget( new QLabel( tr( "Max value" ) ), 1, 0 );
45 myMin = new QtxDoubleSpinBox( this );
46 myMin->setRange( -1000, 1000 );
47 myMax = new QtxDoubleSpinBox( this );
48 myMax->setRange( -1000, 1000 );
50 layout->addWidget( myMin, 0, 1 );
51 layout->addWidget( myMax, 1, 1 );
53 QFrame* aBtnFrame = new QFrame( this );
54 QHBoxLayout* aBtnLayout = new QHBoxLayout( aBtnFrame );
55 layout->addWidget( aBtnFrame, 2, 0, 1, 2 );
57 QPushButton* ok = new QPushButton( tr( "OK" ), this );
58 QPushButton* cancel = new QPushButton( tr( "Cancel" ), this );
59 aBtnLayout->addWidget( ok );
60 aBtnLayout->addWidget( cancel );
62 connect( ok, SIGNAL( clicked() ), this, SLOT( accept() ) );
63 connect( cancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
66 HYDROGUI_BathymetryLimitsDlg::~HYDROGUI_BathymetryLimitsDlg()
70 double HYDROGUI_BathymetryLimitsDlg::GetMin() const
72 return myMin->value();
75 double HYDROGUI_BathymetryLimitsDlg::GetMax() const
77 return myMax->value();
80 void HYDROGUI_BathymetryLimitsDlg::SetMinMax( double theMin, double theMax )
82 myMin->setValue( theMin );
83 myMax->setValue( theMax );
90 HYDROGUI_BathymetryOp::HYDROGUI_BathymetryOp( HYDROGUI_Module* theModule, int theMode )
91 : HYDROGUI_Operation( theModule ), myMode( theMode ), myIsActivate( false )
95 HYDROGUI_BathymetryOp::~HYDROGUI_BathymetryOp()
99 OCCViewer_Viewer* getViewer( HYDROGUI_Module* theModule );
100 Handle(AIS_InteractiveContext) getContext( HYDROGUI_Module* theModule );
101 QList<Handle(HYDROGUI_BathymetryPrs)> getShownBathymetries( HYDROGUI_Module* theModule );
103 void HYDROGUI_BathymetryOp::startOperation()
108 void HYDROGUI_BathymetryOp::commitOperation()
110 //if( myMode!=BathymetryTextId )
114 void HYDROGUI_BathymetryOp::abortOperation()
119 OCCViewer_ViewWindow* HYDROGUI_BathymetryOp::activeViewWindow() const
121 LightApp_Application* app = module()->getApp();
122 OCCViewer_ViewManager* mgr = dynamic_cast<OCCViewer_ViewManager*>
123 ( app->getViewManager( OCCViewer_Viewer::Type(), true ) );
124 return dynamic_cast<OCCViewer_ViewWindow*>( mgr->getActiveView() );
127 void HYDROGUI_BathymetryOp::activate( bool isActivate )
129 if( myIsActivate==isActivate )
132 myIsActivate = isActivate;
133 QList<Handle(HYDROGUI_BathymetryPrs)> baths = getShownBathymetries( module() );
134 bool isUpdateCS = false;
136 if( myMode!=BathymetryRescaleUserId )
137 qApp->setOverrideCursor( Qt::WaitCursor );
141 case BathymetryTextId:
143 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
144 bath->GetShape()->TextLabels( isActivate, bath==baths.last() );
147 connect( selectionMgr(), SIGNAL( selectionChanged() ), this, SLOT( onSelectionChanged() ) );
149 disconnect( selectionMgr(), SIGNAL( selectionChanged() ), this, SLOT( onSelectionChanged() ) );
153 case BathymetryRescaleSelectionId:
157 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
158 bath->GetShape()->RescaleBySelection();
165 case BathymetryRescaleVisibleId:
169 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
170 bath->GetShape()->RescaleByVisible( activeViewWindow() );
177 case BathymetryRescaleUserId:
181 double min=0, max=0, lmin=0, lmax=0;
183 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
185 bath->GetShape()->GetRange( lmin, lmax );
186 if( first || lmin < min )
188 if( first || lmax > max )
193 HYDROGUI_BathymetryLimitsDlg dlg( module()->getApp()->desktop() );
194 dlg.SetMinMax( min, max );
195 if( dlg.exec()==QDialog::Accepted )
197 qApp->setOverrideCursor( Qt::WaitCursor );
201 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
202 bath->GetShape()->Rescale( min, max );
213 case BathymetryRescaleDefaultId:
217 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
218 bath->GetShape()->RescaleDefault();
227 module()->getOCCDisplayer()->UpdateColorScale( getViewer( module() ) );
229 qApp->restoreOverrideCursor();
232 void HYDROGUI_BathymetryOp::onSelectionChanged()
234 QList<Handle(HYDROGUI_BathymetryPrs)> baths = getShownBathymetries( module() );
235 bool isUpdateCS = false;
237 qApp->setOverrideCursor( Qt::WaitCursor );
238 if( myMode==BathymetryTextId )
240 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
241 bath->GetShape()->TextLabels( true, bath==baths.last() );
244 qApp->restoreOverrideCursor();