summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQListBoxText.java
blob: 6cf9d2fe8cd87b74b0ee394ef10dc49a697b7d0a (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class TQListBoxText extends TQListBoxItem  {
	protected TQListBoxText(Class dummy){super((Class) null);}
	public TQListBoxText(TQListBox listbox, String text) {
		super((Class) null);
		newTQListBoxText(listbox,text);
	}
	private native void newTQListBoxText(TQListBox listbox, String text);
	public TQListBoxText(TQListBox listbox) {
		super((Class) null);
		newTQListBoxText(listbox);
	}
	private native void newTQListBoxText(TQListBox listbox);
	public TQListBoxText(String text) {
		super((Class) null);
		newTQListBoxText(text);
	}
	private native void newTQListBoxText(String text);
	public TQListBoxText() {
		super((Class) null);
		newTQListBoxText();
	}
	private native void newTQListBoxText();
	public TQListBoxText(TQListBox listbox, String text, TQListBoxItem after) {
		super((Class) null);
		newTQListBoxText(listbox,text,after);
	}
	private native void newTQListBoxText(TQListBox listbox, String text, TQListBoxItem after);
	public native int height(TQListBox arg1);
	public native int width(TQListBox arg1);
	public native int rtti();
	protected native void paint(TQPainter 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();
}