mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- 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.
25 lines
670 B
C++
Executable File
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()
|
|
{
|
|
}
|