blob: 9208ae8588dccbc29afec079ac5ab1a0995b6e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import org.kde.qt.*;
public class LCDRange extends QVBox {
private QSlider slider;
public LCDRange(QWidget parent, String name) {
super(parent, name);
QLCDNumber lcd = new QLCDNumber(2, this, "lcd");
slider = new QSlider(Horizontal, this, "slider");
slider.setRange(0, 99);
slider.setValue(0);
connect(slider, SIGNAL("valueChanged(int)"),
lcd, SLOT("display(int)"));
connect(slider, SIGNAL("valueChanged(int)"),
SIGNAL("valueChanged(int)"));
}
public LCDRange(QWidget parent) {
this(parent, null);
}
public int value() {
return slider.value();
}
public void setValue(int value) {
slider.setValue(value);
}
}
|