1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/samples/qt/Common/src/Transparency.cxx
nds 55a40de890 0028934: Coding - Eliminate compiler warnings in OCCT samples
- covering Qt warnings for compilation under MSVC 2013 and greater
- avoid warning about 'M_PI'(and others) redefinition warning of math.h: includes of QtWidgets should follow after other includes.
2018-04-09 10:18:38 +03:00

25 lines
670 B
C++
Executable File

#include "Transparency.h"
#include <Standard_WarningsDisable.hxx>
#include <QHBoxLayout>
#include <QSpinBox>
#include <Standard_WarningsRestore.hxx>
DialogTransparency::DialogTransparency( QWidget* parent, Qt::WindowFlags f, bool modal )
: QDialog( parent, f )
{
setModal( modal );
QHBoxLayout* base = new QHBoxLayout( this );
base->setMargin( 3 );
base->setSpacing( 3 );
QSpinBox* aSpin = new QSpinBox( this );
aSpin->setRange( 0, 10 );
aSpin->setSingleStep( 1 );
base->addWidget( aSpin );
connect( aSpin, SIGNAL( valueChanged( int ) ), this, SIGNAL( sendTransparencyChanged( int ) ) );
}
DialogTransparency::~DialogTransparency()
{
}