summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QListBoxText.java
blob: 4e256b433050c64bd91d1e80bdeb74ea1a15b7d4 (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 QListBoxText extends QListBoxItem  {
	protected QListBoxText(Class dummy){super((Class) null);}
	public QListBoxText(QListBox listbox, String text) {
		super((Class) null);
		newQListBoxText(listbox,text);
	}
	private native void newQListBoxText(QListBox listbox, String text);
	public QListBoxText(QListBox listbox) {
		super((Class) null);
		newQListBoxText(listbox);
	}
	private native void newQListBoxText(QListBox listbox);
	public QListBoxText(String text) {
		super((Class) null);
		newQListBoxText(text);
	}
	private native void newQListBoxText(String text);
	public QListBoxText() {
		super((Class) null);
		newQListBoxText();
	}
	private native void newQListBoxText();
	public QListBoxText(QListBox listbox, String text, QListBoxItem after) {
		super((Class) null);
		newQListBoxText(listbox,text,after);
	}
	private native void newQListBoxText(QListBox listbox, String text, QListBoxItem after);
	public native int height(QListBox arg1);
	public native int width(QListBox arg1);
	public native int rtti();
	protected native void paint(QPainter 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();
}