summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QFrame.java
blob: 81ccfe4f512e8daaa62f70be8d4f97752931f408 (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 TQFrame extends TQWidget  {
	protected TQFrame(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 TQMetaObject metaObject();
	public native String className();
	public TQFrame(TQWidget parent, String name, int f) {
		super((Class) null);
		newTQFrame(parent,name,f);
	}
	private native void newTQFrame(TQWidget parent, String name, int f);
	public TQFrame(TQWidget parent, String name) {
		super((Class) null);
		newTQFrame(parent,name);
	}
	private native void newTQFrame(TQWidget parent, String name);
	public TQFrame(TQWidget parent) {
		super((Class) null);
		newTQFrame(parent);
	}
	private native void newTQFrame(TQWidget parent);
	public TQFrame() {
		super((Class) null);
		newTQFrame();
	}
	private native void newTQFrame();
	public native int frameStyle();
	public native void setFrameStyle(int arg1);
	public native int frameWidth();
	public native TQRect contentsRect();
	public native boolean lineShapesOk();
	public native TQSize 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 TQRect frameRect();
	public native void setFrameRect(TQRect arg1);
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	protected native void paintEvent(TQPaintEvent arg1);
	protected native void resizeEvent(TQResizeEvent arg1);
	protected native void drawFrame(TQPainter arg1);
	protected native void drawContents(TQPainter arg1);
	protected native void frameChanged();
	public native void styleChange(TQStyle 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();
}