blob: 65dbee4ba85ff43cae66ca13e03f1bf5e144dc62 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class QFrame extends QWidget {
protected QFrame(Class dummy){super((Class) null);}
public static final int NoFrame = 0;
public static final int Box = 0x0001;
public static final int Panel = 0x0002;
public static final int WinPanel = 0x0003;
public static final int HLine = 0x0004;
public static final int VLine = 0x0005;
public static final int StyledPanel = 0x0006;
public static final int PopupPanel = 0x0007;
public static final int MenuBarPanel = 0x0008;
public static final int ToolBarPanel = 0x0009;
public static final int LineEditPanel = 0x000a;
public static final int TabWidgetPanel = 0x000b;
public static final int GroupBoxPanel = 0x000c;
public static final int MShape = 0x000f;
public static final int Plain = 0x0010;
public static final int Raised = 0x0020;
public static final int Sunken = 0x0030;
public static final int MShadow = 0x00f0;
public native QMetaObject metaObject();
public native String className();
public QFrame(QWidget parent, String name, int f) {
super((Class) null);
newQFrame(parent,name,f);
}
private native void newQFrame(QWidget parent, String name, int f);
public QFrame(QWidget parent, String name) {
super((Class) null);
newQFrame(parent,name);
}
private native void newQFrame(QWidget parent, String name);
public QFrame(QWidget parent) {
super((Class) null);
newQFrame(parent);
}
private native void newQFrame(QWidget parent);
public QFrame() {
super((Class) null);
newQFrame();
}
private native void newQFrame();
public native int frameStyle();
public native void setFrameStyle(int arg1);
public native int frameWidth();
public native QRect contentsRect();
public native boolean lineShapesOk();
public native QSize sizeHint();
public native int frameShape();
public native void setFrameShape(int arg1);
public native int frameShadow();
public native void setFrameShadow(int arg1);
public native int lineWidth();
public native void setLineWidth(int arg1);
public native int margin();
public native void setMargin(int arg1);
public native int midLineWidth();
public native void setMidLineWidth(int arg1);
public native QRect frameRect();
public native void setFrameRect(QRect arg1);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
protected native void paintEvent(QPaintEvent arg1);
protected native void resizeEvent(QResizeEvent arg1);
protected native void drawFrame(QPainter arg1);
protected native void drawContents(QPainter arg1);
protected native void frameChanged();
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();
}
|