<parameter name="show_manifold_edges" value="false"/>
<parameter name="show_non_manifold_edges" value="false"/>
<parameter name="feature_edges_coloring" value="false"/>
- <parameter name="scalar_bar_horizontal_height" value="0.05"/>
- <parameter name="scalar_bar_horizontal_width" value="0.5" />
- <parameter name="scalar_bar_horizontal_x" value="0.01"/>
+ <parameter name="scalar_bar_horizontal_height" value="0.08"/>
+ <parameter name="scalar_bar_horizontal_width" value="0.8" />
+ <parameter name="scalar_bar_horizontal_x" value="0.1"/>
<parameter name="scalar_bar_horizontal_y" value="0.01"/>
<parameter name="scalar_bar_horizontal_title_size" value="0"/>
<parameter name="scalar_bar_horizontal_label_size" value="0"/>
<parameter name="scalar_bar_title_color" value="255, 255, 255"/>
<parameter name="scalar_bar_title_font" value="Arial,Bold,Italic,Shadow,12"/>
<parameter name="scalar_bar_display_units" value="true"/>
- <parameter name="scalar_bar_vertical_height" value="0.5" />
- <parameter name="scalar_bar_vertical_width" value="0.05"/>
+ <parameter name="scalar_bar_vertical_height" value="0.8" />
+ <parameter name="scalar_bar_vertical_width" value="0.08"/>
<parameter name="scalar_bar_vertical_x" value="0.01"/>
- <parameter name="scalar_bar_vertical_y" value="0.01"/>
+ <parameter name="scalar_bar_vertical_y" value="0.1"/>
<parameter name="scalar_bar_vertical_title_height" value="0"/>
<parameter name="scalar_bar_vertical_title_width" value="0"/>
<parameter name="scalar_bar_vertical_label_height" value="0"/>
VisuGUI_GaussScalarBarPane::VisuGUI_GaussScalarBarPane (QWidget * parent):
QWidget(parent)
{
- myVerX = 0.01; myVerY = 0.10; myVerW = 0.10; myVerH = 0.80;
- myHorX = 0.20; myHorY = 0.01; myHorW = 0.60; myHorH = 0.12;
+ myVerX = 0.01; myVerY = 0.10; myVerW = 0.08; myVerH = 0.80;
+ myHorX = 0.10; myHorY = 0.01; myHorW = 0.80; myHorH = 0.08;
myVerTS = myVerLS = myVerBW = myVerBH = 0;
myHorTS = myHorLS = myHorBW = myHorBH = 0;
Imin = 0.0; Imax = 0.0;
VISU::initSpinBox(YSpin, 0.0, +1.0);
YSpin->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
//YSpin->setMinimumWidth( 70 );
- YSpin->setValue( 0.01 );
+ YSpin->setValue( 0.1 );
OriginGroupLayout->addWidget( XLabel, 0, 0);
OriginGroupLayout->addWidget( XSpin, 0, 1);
if(orient == 0) {
sbX1=0.01;
sbY1=0.1;
- sbW=0.17;
+ sbW=0.1;
sbH=0.8;
} else {
- sbX1=0.2;
+ sbX1=0.1;
sbY1=0.01;
- sbW=0.6;
- sbH=0.12;
+ sbW=0.8;
+ sbH=0.08;
}
}
QLabel* YLabel = new QLabel( tr( "LBL_Y" ), OriginGroup );
YSpin = new QtxDoubleSpinBox( 0.0, 1.0, 0.1, OriginGroup );
YSpin->setMinimumWidth( 70 );
- YSpin->setValue( 0.01 );
+ YSpin->setValue( 0.1 );
OriginGroupLayout->addWidget( XLabel );
OriginGroupLayout->addWidget( XSpin );
// Scalar Bar origin
QString propertyName = QString( "scalar_bar_%1_" ).arg( anOrientation == 0 ? "vertical" : "horizontal" );
- vtkFloatingPointType aXorigin = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL) ? 0.01 : 0.2;
+ vtkFloatingPointType aXorigin = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL) ? 0.01 : 0.1;
aXorigin = aResourceMgr->doubleValue("VISU", propertyName + "x", aXorigin);
myPosition[0] = aXorigin;
- vtkFloatingPointType aYorigin = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL) ? 0.1 : 0.012;
+ vtkFloatingPointType aYorigin = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL) ? 0.1 : 0.01;
aYorigin = aResourceMgr->doubleValue("VISU", propertyName + "y", aYorigin);
myPosition[1] = aYorigin;
// Scalar Bar size
- myWidth = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL)? 0.1 : 0.6;
+ myWidth = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL)? 0.08 : 0.8;
myWidth = aResourceMgr->doubleValue("VISU", propertyName + "width", myWidth);
- myHeight = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL)? 0.8:0.12;
+ myHeight = (myOrientation == VISU::ColoredPrs3dBase::VERTICAL)? 0.8:0.08;
myHeight = aResourceMgr->doubleValue("VISU", propertyName + "height", myHeight);
myTitleSize = 0;