connect( m_bReset, SIGNAL( clicked() ), this, SLOT( reset() ) );
connect( view, SIGNAL( Hide( QHideEvent* ) ), this, SLOT( hide() ) );
+
+ resize( minimumSizeHint() );
}
/*!
GroupPointLayout->setMargin( 11 );
// Controls
- const double min = -1e+16;
- const double max = 1e+16;
+ const double min = -1e+7;
+ const double max = 1e+7;
const double step = 5;
- const int precision = -6; // PAL12789. Minus is for using 'g' double->string conversion specifier,
- // see QtxDoubleSpinBox::mapValueToText( double v )
+ const int precision = 3;
TextLabelX = new QLabel( GroupPoint );
TextLabelX->setObjectName( "TextLabelX" );
// Layout
QVBoxLayout* aLay = new QVBoxLayout(this);
- aLay->setMargin(0);
+ aLay->setMargin(5);
aLay->setSpacing(5);
aLay->addWidget(myNameGrp);
aLay->addWidget(myLabelsGrp);
myTabWg->addTab(myAxes[ 1 ], tr("Y_AXIS"));
myTabWg->addTab(myAxes[ 2 ], tr("Z_AXIS"));
- myTabWg->setContentsMargins(5,5,5,5);
-
myIsVisible = new QCheckBox(tr("IS_VISIBLE"), aFrame);
QVBoxLayout* aLay = new QVBoxLayout(aFrame);