summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QLabel.java
blob: 8803ecac9f1f57aca7a44bb727e39e5ec9649057 (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
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 TQLabel extends TQFrame  {
	protected TQLabel(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public TQLabel(TQWidget parent, String name, int f) {
		super((Class) null);
		newTQLabel(parent,name,f);
	}
	private native void newTQLabel(TQWidget parent, String name, int f);
	public TQLabel(TQWidget parent, String name) {
		super((Class) null);
		newTQLabel(parent,name);
	}
	private native void newTQLabel(TQWidget parent, String name);
	public TQLabel(TQWidget parent) {
		super((Class) null);
		newTQLabel(parent);
	}
	private native void newTQLabel(TQWidget parent);
	public TQLabel(String text, TQWidget parent, String name, int f) {
		super((Class) null);
		newTQLabel(text,parent,name,f);
	}
	private native void newTQLabel(String text, TQWidget parent, String name, int f);
	public TQLabel(String text, TQWidget parent, String name) {
		super((Class) null);
		newTQLabel(text,parent,name);
	}
	private native void newTQLabel(String text, TQWidget parent, String name);
	public TQLabel(String text, TQWidget parent) {
		super((Class) null);
		newTQLabel(text,parent);
	}
	private native void newTQLabel(String text, TQWidget parent);
	public TQLabel(TQWidget buddy, String arg2, TQWidget parent, String name, int f) {
		super((Class) null);
		newTQLabel(buddy,arg2,parent,name,f);
	}
	private native void newTQLabel(TQWidget buddy, String arg2, TQWidget parent, String name, int f);
	public TQLabel(TQWidget buddy, String arg2, TQWidget parent, String name) {
		super((Class) null);
		newTQLabel(buddy,arg2,parent,name);
	}
	private native void newTQLabel(TQWidget buddy, String arg2, TQWidget parent, String name);
	public TQLabel(TQWidget buddy, String arg2, TQWidget parent) {
		super((Class) null);
		newTQLabel(buddy,arg2,parent);
	}
	private native void newTQLabel(TQWidget buddy, String arg2, TQWidget parent);
	public native String text();
	public native TQPixmap pixmap();
	public native TQPicture picture();
	public native TQMovie 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 TQSize sizeHint();
	public native TQSize minimumSizeHint();
	public native void setBuddy(TQWidget arg1);
	public native TQWidget buddy();
	public native int heightForWidth(int arg1);
	public native void setFont(TQFont f);
	public native void setText(String arg1);
	public native void setPixmap(TQPixmap arg1);
	public native void setPicture(TQPicture arg1);
	public native void setMovie(TQMovie 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(TQPainter arg1);
	protected native void fontChange(TQFont arg1);
	protected native void resizeEvent(TQResizeEvent 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();
}