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.
98 lines
4.1 KiB
Java
98 lines
4.1 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
|
|
/**
|
|
See {@link QScrollBarSignals} for signals emitted by QScrollBar
|
|
*/
|
|
public class QScrollBar extends QWidget implements QRangeControlInterface {
|
|
protected QScrollBar(Class dummy){super((Class) null);}
|
|
public native QMetaObject metaObject();
|
|
public native String className();
|
|
public QScrollBar(QWidget parent, String name) {
|
|
super((Class) null);
|
|
newQScrollBar(parent,name);
|
|
}
|
|
private native void newQScrollBar(QWidget parent, String name);
|
|
public QScrollBar(QWidget parent) {
|
|
super((Class) null);
|
|
newQScrollBar(parent);
|
|
}
|
|
private native void newQScrollBar(QWidget parent);
|
|
public QScrollBar(int arg1, QWidget parent, String name) {
|
|
super((Class) null);
|
|
newQScrollBar(arg1,parent,name);
|
|
}
|
|
private native void newQScrollBar(int arg1, QWidget parent, String name);
|
|
public QScrollBar(int arg1, QWidget parent) {
|
|
super((Class) null);
|
|
newQScrollBar(arg1,parent);
|
|
}
|
|
private native void newQScrollBar(int arg1, QWidget parent);
|
|
public QScrollBar(int minValue, int maxValue, int lineStep, int pageStep, int value, int arg6, QWidget parent, String name) {
|
|
super((Class) null);
|
|
newQScrollBar(minValue,maxValue,lineStep,pageStep,value,arg6,parent,name);
|
|
}
|
|
private native void newQScrollBar(int minValue, int maxValue, int lineStep, int pageStep, int value, int arg6, QWidget parent, String name);
|
|
public QScrollBar(int minValue, int maxValue, int lineStep, int pageStep, int value, int arg6, QWidget parent) {
|
|
super((Class) null);
|
|
newQScrollBar(minValue,maxValue,lineStep,pageStep,value,arg6,parent);
|
|
}
|
|
private native void newQScrollBar(int minValue, int maxValue, int lineStep, int pageStep, int value, int arg6, QWidget parent);
|
|
public native void setOrientation(int arg1);
|
|
public native int orientation();
|
|
public native void setTracking(boolean enable);
|
|
public native boolean tracking();
|
|
public native boolean draggingSlider();
|
|
public native void setPalette(QPalette arg1);
|
|
public native QSize sizeHint();
|
|
public native void setSizePolicy(QSizePolicy sp);
|
|
public native void setSizePolicy(int hor, int ver, boolean hfw);
|
|
public native void setSizePolicy(int hor, int ver);
|
|
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 int sliderStart();
|
|
public native QRect sliderRect();
|
|
public native void setValue(int arg1);
|
|
public static native String tr(String arg1, String arg2);
|
|
public static native String tr(String arg1);
|
|
protected native void wheelEvent(QWheelEvent arg1);
|
|
protected native void keyPressEvent(QKeyEvent arg1);
|
|
protected native void resizeEvent(QResizeEvent arg1);
|
|
protected native void paintEvent(QPaintEvent arg1);
|
|
protected native void mousePressEvent(QMouseEvent arg1);
|
|
protected native void mouseReleaseEvent(QMouseEvent arg1);
|
|
protected native void mouseMoveEvent(QMouseEvent arg1);
|
|
protected native void contextMenuEvent(QContextMenuEvent arg1);
|
|
protected native void hideEvent(QHideEvent arg1);
|
|
protected native void valueChange();
|
|
protected native void stepChange();
|
|
protected native void rangeChange();
|
|
public native void styleChange(QStyle arg1);
|
|
/** 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 addPage();
|
|
public native void subtractPage();
|
|
public native void addLine();
|
|
public native void subtractLine();
|
|
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();
|
|
}
|