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 TQDockWindowSignals} for signals emitted by TQDockWindow
*/
public class TQDockWindow extends TQFrame {
protected TQDockWindow(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 TQMetaObject metaObject();
public native String className();
public TQDockWindow(int p, TQWidget parent, String name, int f) {
super((Class) null);
newTQDockWindow(p,parent,name,f);
}
private native void newTQDockWindow(int p, TQWidget parent, String name, int f);
public TQDockWindow(int p, TQWidget parent, String name) {
super((Class) null);
newTQDockWindow(p,parent,name);
}
private native void newTQDockWindow(int p, TQWidget parent, String name);
public TQDockWindow(int p, TQWidget parent) {
super((Class) null);
newTQDockWindow(p,parent);
}
private native void newTQDockWindow(int p, TQWidget parent);
public TQDockWindow(int p) {
super((Class) null);
newTQDockWindow(p);
}
private native void newTQDockWindow(int p);
public TQDockWindow() {
super((Class) null);
newTQDockWindow();
}
private native void newTQDockWindow();
public TQDockWindow(TQWidget parent, String name, int f) {
super((Class) null);
newTQDockWindow(parent,name,f);
}
private native void newTQDockWindow(TQWidget parent, String name, int f);
public TQDockWindow(TQWidget parent, String name) {
super((Class) null);
newTQDockWindow(parent,name);
}
private native void newTQDockWindow(TQWidget parent, String name);
public TQDockWindow(TQWidget parent) {
super((Class) null);
newTQDockWindow(parent);
}
private native void newTQDockWindow(TQWidget parent);
public native void setWidget(TQWidget w);
public native TQWidget widget();
public native int place();
public native TQDockArea 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 TQSize fixedExtent();
public native void setNewLine(boolean b);
public native boolean newLine();
public native int orientation();
public native TQSize sizeHint();
public native TQSize minimumSize();
public native TQSize minimumSizeHint();
public native TQBoxLayout boxLayout();
public native void setOpaqueMoving(boolean b);
public native boolean opaqueMoving();
public native boolean eventFilter(TQObject o, TQEvent e);
public native void undock(TQWidget 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(TQResizeEvent e);
public native void showEvent(TQShowEvent e);
protected native void hideEvent(TQHideEvent e);
protected native void contextMenuEvent(TQContextMenuEvent e);
protected native void drawFrame(TQPainter arg1);
protected native void drawContents(TQPainter arg1);
public native boolean event(TQEvent 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();
}
|