blob: 7088fd8e0f107229c1d3fc9c200704f95c1f5b77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
public interface QRangeControlInterface {
int value();
void setValue(int arg1);
void addPage();
void subtractPage();
void addLine();
void subtractLine();
int minValue();
int maxValue();
void setRange(int minValue, int maxValue);
void setMinValue(int minVal);
void setMaxValue(int minVal);
int lineStep();
int pageStep();
void setSteps(int line, int page);
int bound(int arg1);
}
|