|
|
|
@ -38,9 +38,10 @@ public class UINumberDragPane extends BasicBeanPane<Double> implements GlobalNam
|
|
|
|
|
public UINumberDragPane(double minValue, double maxValue, double dierta) { |
|
|
|
|
dragBar = new UISlider((int) minValue, (int) maxValue); |
|
|
|
|
dragBar.setPaintLabels(true); |
|
|
|
|
dragBar.setMajorTickSpacing((int) maxValue); |
|
|
|
|
dragBar.setMajorTickSpacing((int) maxValue - (int) minValue); |
|
|
|
|
spinner = createUISpinner(minValue, maxValue, dierta); |
|
|
|
|
spinner.setGlobalName(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_StyleAlignment_Text_Rotation")); |
|
|
|
|
spinner.setValue(dragBar.getValue()); |
|
|
|
|
this.setLayout(new BorderLayout()); |
|
|
|
|
this.add(Layouts.row( |
|
|
|
|
cell(dragBar).weight(0.7), flex(0.1), cell(spinner).weight(0.7) |
|
|
|
|