You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
475 B
Java
22 lines
475 B
Java
15 years ago
|
//Auto-generated by kalyptus. DO NOT EDIT.
|
||
|
package org.kde.qt;
|
||
|
|
||
|
|
||
13 years ago
|
public interface TQRangeControlInterface {
|
||
15 years ago
|
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);
|
||
|
}
|