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.
103 lines
4.0 KiB
Java
103 lines
4.0 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
|
|
/**
|
|
See {@link QDialSignals} for signals emitted by QDial
|
|
*/
|
|
public class QDial extends QWidget implements QRangeControlInterface {
|
|
protected QDial(Class dummy){super((Class) null);}
|
|
public native QMetaObject metaObject();
|
|
public native String className();
|
|
public QDial(QWidget parent, String name, int f) {
|
|
super((Class) null);
|
|
newQDial(parent,name,f);
|
|
}
|
|
private native void newQDial(QWidget parent, String name, int f);
|
|
public QDial(QWidget parent, String name) {
|
|
super((Class) null);
|
|
newQDial(parent,name);
|
|
}
|
|
private native void newQDial(QWidget parent, String name);
|
|
public QDial(QWidget parent) {
|
|
super((Class) null);
|
|
newQDial(parent);
|
|
}
|
|
private native void newQDial(QWidget parent);
|
|
public QDial() {
|
|
super((Class) null);
|
|
newQDial();
|
|
}
|
|
private native void newQDial();
|
|
public QDial(int minValue, int maxValue, int pageStep, int value, QWidget parent, String name) {
|
|
super((Class) null);
|
|
newQDial(minValue,maxValue,pageStep,value,parent,name);
|
|
}
|
|
private native void newQDial(int minValue, int maxValue, int pageStep, int value, QWidget parent, String name);
|
|
public QDial(int minValue, int maxValue, int pageStep, int value, QWidget parent) {
|
|
super((Class) null);
|
|
newQDial(minValue,maxValue,pageStep,value,parent);
|
|
}
|
|
private native void newQDial(int minValue, int maxValue, int pageStep, int value, QWidget parent);
|
|
public QDial(int minValue, int maxValue, int pageStep, int value) {
|
|
super((Class) null);
|
|
newQDial(minValue,maxValue,pageStep,value);
|
|
}
|
|
private native void newQDial(int minValue, int maxValue, int pageStep, int value);
|
|
public native boolean tracking();
|
|
public native boolean wrapping();
|
|
public native int notchSize();
|
|
public native void setNotchTarget(double arg1);
|
|
public native double notchTarget();
|
|
public native boolean notchesVisible();
|
|
public native QSize sizeHint();
|
|
public native QSize minimumSizeHint();
|
|
public native int minValue();
|
|
public native int maxValue();
|
|
public native void setMinValue(int arg1);
|
|
public native void setMaxValue(int arg1);
|
|
public native int lineStep();
|
|
public native int pageStep();
|
|
public native void setLineStep(int arg1);
|
|
public native void setPageStep(int arg1);
|
|
public native int value();
|
|
public native void setValue(int arg1);
|
|
public native void addLine();
|
|
public native void subtractLine();
|
|
public native void addPage();
|
|
public native void subtractPage();
|
|
public native void setNotchesVisible(boolean b);
|
|
public native void setWrapping(boolean on);
|
|
public native void setTracking(boolean enable);
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
protected native void resizeEvent(QResizeEvent arg1);
|
|
protected native void paintEvent(QPaintEvent arg1);
|
|
protected native void keyPressEvent(QKeyEvent arg1);
|
|
protected native void mousePressEvent(QMouseEvent arg1);
|
|
protected native void mouseReleaseEvent(QMouseEvent arg1);
|
|
protected native void mouseMoveEvent(QMouseEvent arg1);
|
|
protected native void wheelEvent(QWheelEvent arg1);
|
|
protected native void focusInEvent(QFocusEvent arg1);
|
|
protected native void focusOutEvent(QFocusEvent arg1);
|
|
protected native void valueChange();
|
|
protected native void rangeChange();
|
|
protected native void repaintScreen(QRect cr);
|
|
protected native void repaintScreen();
|
|
/** Deletes the wrapped C++ instance */
|
|
protected native void finalize() throws InternalError;
|
|
/** Delete the wrapped C++ instance ahead of finalize() */
|
|
public native void dispose();
|
|
/** Has the wrapped C++ instance been deleted? */
|
|
public native boolean isDisposed();
|
|
public native void setRange(int minValue, int maxValue);
|
|
public native void setSteps(int line, int page);
|
|
public native int bound(int arg1);
|
|
protected native int positionFromValue(int val, int space);
|
|
protected native int valueFromPosition(int pos, int space);
|
|
protected native void directSetValue(int val);
|
|
protected native int prevValue();
|
|
protected native void stepChange();
|
|
}
|