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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
/**
See {@link QDockWindowSignals} for signals emitted by QDockWindow
*/
public class QDockWindow extends QFrame {
protected QDockWindow(Class dummy){super((Class) null);}
public static final int InDock = 0;
public static final int OutsideDock = 1;
public static final int Never = 0;
public static final int Docked = 1;
public static final int Undocked = 2;
public static final int Always = Docked|Undocked;
public native QMetaObject metaObject();
public native String className();
public QDockWindow(int p, QWidget parent, String name, int f) {
super((Class) null);
newQDockWindow(p,parent,name,f);
}
private native void newQDockWindow(int p, QWidget parent, String name, int f);
public QDockWindow(int p, QWidget parent, String name) {
super((Class) null);
newQDockWindow(p,parent,name);
}
private native void newQDockWindow(int p, QWidget parent, String name);
public QDockWindow(int p, QWidget parent) {
super((Class) null);
newQDockWindow(p,parent);
}
private native void newQDockWindow(int p, QWidget parent);
public QDockWindow(int p) {
super((Class) null);
newQDockWindow(p);
}
private native void newQDockWindow(int p);
public QDockWindow() {
super((Class) null);
newQDockWindow();
}
private native void newQDockWindow();
public QDockWindow(QWidget parent, String name, int f) {
super((Class) null);
newQDockWindow(parent,name,f);
}
private native void newQDockWindow(QWidget parent, String name, int f);
public QDockWindow(QWidget parent, String name) {
super((Class) null);
newQDockWindow(parent,name);
}
private native void newQDockWindow(QWidget parent, String name);
public QDockWindow(QWidget parent) {
super((Class) null);
newQDockWindow(parent);
}
private native void newQDockWindow(QWidget parent);
public native void setWidget(QWidget w);
public native QWidget widget();
public native int place();
public native QDockArea area();
public native void setCloseMode(int m);
public native boolean isCloseEnabled();
public native int closeMode();
public native void setResizeEnabled(boolean b);
public native void setMovingEnabled(boolean b);
public native boolean isResizeEnabled();
public native boolean isMovingEnabled();
public native void setHorizontallyStretchable(boolean b);
public native void setVerticallyStretchable(boolean b);
public native boolean isHorizontallyStretchable();
public native boolean isVerticallyStretchable();
public native void setHorizontalStretchable(boolean b);
public native void setVerticalStretchable(boolean b);
public native boolean isHorizontalStretchable();
public native boolean isVerticalStretchable();
public native boolean isStretchable();
public native void setOffset(int o);
public native int offset();
public native void setFixedExtentWidth(int w);
public native void setFixedExtentHeight(int h);
public native QSize fixedExtent();
public native void setNewLine(boolean b);
public native boolean newLine();
public native int orientation();
public native QSize sizeHint();
public native QSize minimumSize();
public native QSize minimumSizeHint();
public native QBoxLayout boxLayout();
public native void setOpaqueMoving(boolean b);
public native boolean opaqueMoving();
public native boolean eventFilter(QObject o, QEvent e);
public native void undock(QWidget w);
public native void undock();
public native void dock();
public native void setOrientation(int o);
public native void setCaption(String s);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
protected native void resizeEvent(QResizeEvent e);
public native void showEvent(QShowEvent e);
protected native void hideEvent(QHideEvent e);
protected native void contextMenuEvent(QContextMenuEvent e);
protected native void drawFrame(QPainter arg1);
protected native void drawContents(QPainter arg1);
public native boolean event(QEvent e);
/** 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();
}
|