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
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
|
|
public interface TQRangeControlInterface {
|
|
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);
|
|
}
|