blob: 6081df43d05553e1e607e36bf7662402482e2f33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
/**
See {@link QSpinWidgetSignals} for signals emitted by QSpinWidget
*/
public class QSpinWidget extends QWidget {
protected QSpinWidget(Class dummy){super((Class) null);}
public static final int UpDownArrows = 0;
public static final int PlusMinus = 1;
public native QMetaObject metaObject();
public native String className();
public QSpinWidget(QWidget parent, String name) {
super((Class) null);
newQSpinWidget(parent,name);
}
private native void newQSpinWidget(QWidget parent, String name);
public QSpinWidget(QWidget parent) {
super((Class) null);
newQSpinWidget(parent);
}
private native void newQSpinWidget(QWidget parent);
public QSpinWidget() {
super((Class) null);
newQSpinWidget();
}
private native void newQSpinWidget();
public native void setEditWidget(QWidget widget);
public native QWidget editWidget();
public native QRect upRect();
public native QRect downRect();
public native void setUpEnabled(boolean on);
public native void setDownEnabled(boolean on);
public native boolean isUpEnabled();
public native boolean isDownEnabled();
public native void setButtonSymbols(int bs);
public native int buttonSymbols();
public native void arrange();
public native void stepUp();
public native void stepDown();
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
protected native void mousePressEvent(QMouseEvent e);
protected native void resizeEvent(QResizeEvent ev);
protected native void mouseReleaseEvent(QMouseEvent e);
protected native void mouseMoveEvent(QMouseEvent e);
protected native void wheelEvent(QWheelEvent arg1);
public native void styleChange(QStyle arg1);
protected native void paintEvent(QPaintEvent arg1);
protected native void enableChanged(boolean old);
protected native void windowActivationChange(boolean 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();
}
|