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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QLabel extends QFrame {
protected QLabel(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
public QLabel(QWidget parent, String name, int f) {
super((Class) null);
newQLabel(parent,name,f);
}
private native void newQLabel(QWidget parent, String name, int f);
public QLabel(QWidget parent, String name) {
super((Class) null);
newQLabel(parent,name);
}
private native void newQLabel(QWidget parent, String name);
public QLabel(QWidget parent) {
super((Class) null);
newQLabel(parent);
}
private native void newQLabel(QWidget parent);
public QLabel(String text, QWidget parent, String name, int f) {
super((Class) null);
newQLabel(text,parent,name,f);
}
private native void newQLabel(String text, QWidget parent, String name, int f);
public QLabel(String text, QWidget parent, String name) {
super((Class) null);
newQLabel(text,parent,name);
}
private native void newQLabel(String text, QWidget parent, String name);
public QLabel(String text, QWidget parent) {
super((Class) null);
newQLabel(text,parent);
}
private native void newQLabel(String text, QWidget parent);
public QLabel(QWidget buddy, String arg2, QWidget parent, String name, int f) {
super((Class) null);
newQLabel(buddy,arg2,parent,name,f);
}
private native void newQLabel(QWidget buddy, String arg2, QWidget parent, String name, int f);
public QLabel(QWidget buddy, String arg2, QWidget parent, String name) {
super((Class) null);
newQLabel(buddy,arg2,parent,name);
}
private native void newQLabel(QWidget buddy, String arg2, QWidget parent, String name);
public QLabel(QWidget buddy, String arg2, QWidget parent) {
super((Class) null);
newQLabel(buddy,arg2,parent);
}
private native void newQLabel(QWidget buddy, String arg2, QWidget parent);
public native String text();
public native QPixmap pixmap();
public native QPicture picture();
public native QMovie movie();
public native int textFormat();
public native void setTextFormat(int arg1);
public native int alignment();
public native void setAlignment(int arg1);
public native int indent();
public native void setIndent(int arg1);
public native boolean autoResize();
public native void setAutoResize(boolean arg1);
public native boolean hasScaledContents();
public native void setScaledContents(boolean arg1);
public native QSize sizeHint();
public native QSize minimumSizeHint();
public native void setBuddy(QWidget arg1);
public native QWidget buddy();
public native int heightForWidth(int arg1);
public native void setFont(QFont f);
public native void setText(String arg1);
public native void setPixmap(QPixmap arg1);
public native void setPicture(QPicture arg1);
public native void setMovie(QMovie arg1);
public native void setNum(int arg1);
public native void setNum(double arg1);
public native void clear();
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
protected native void drawContents(QPainter arg1);
protected native void fontChange(QFont arg1);
protected native void resizeEvent(QResizeEvent 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();
}
|