|
|
|
@ -207,7 +207,7 @@ KTreeColorsPage::KTreeColorsPage( KSettingsDialog * dialog,
|
|
|
|
|
_maxButtons, // maxValue
|
|
|
|
|
1, // pageStep
|
|
|
|
|
1, // value
|
|
|
|
|
Qt::Vertical,
|
|
|
|
|
TQt::Vertical,
|
|
|
|
|
this );
|
|
|
|
|
outerBox->addWidget( _slider, 0 );
|
|
|
|
|
outerBox->activate();
|
|
|
|
@ -820,7 +820,7 @@ KTreemapPage::KTreemapPage( KSettingsDialog * dialog,
|
|
|
|
|
TQLabel * label = new TQLabel( i18n( "Ambient &Light" ), gbox );
|
|
|
|
|
TQHBox * hbox = new TQHBox( gbox );
|
|
|
|
|
_ambientLight = new TQSlider ( MinAmbientLight, MaxAmbientLight, 10, // min, max, pageStep
|
|
|
|
|
DefaultAmbientLight,Qt::Horizontal, hbox );
|
|
|
|
|
DefaultAmbientLight,TQt::Horizontal, hbox );
|
|
|
|
|
_ambientLightSB = new TQSpinBox( MinAmbientLight, MaxAmbientLight, 1, // min, max, step
|
|
|
|
|
hbox );
|
|
|
|
|
_ambientLightSB->setSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Minimum ) );
|
|
|
|
@ -830,7 +830,7 @@ KTreemapPage::KTreemapPage( KSettingsDialog * dialog,
|
|
|
|
|
label = new TQLabel( i18n( "&Height Scale" ), gbox );
|
|
|
|
|
hbox = new TQHBox( gbox );
|
|
|
|
|
_heightScalePercent = new TQSlider( MinHeightScalePercent, MaxHeightScalePercent, 10, // min, max, pageStep
|
|
|
|
|
DefaultHeightScalePercent,Qt::Horizontal, hbox );
|
|
|
|
|
DefaultHeightScalePercent,TQt::Horizontal, hbox );
|
|
|
|
|
_heightScalePercentSB = new TQSpinBox( MinHeightScalePercent, MaxHeightScalePercent, 1, // min, max, step
|
|
|
|
|
hbox );
|
|
|
|
|
_heightScalePercentSB->setSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Minimum ) );
|
|
|
|
|