summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KURLComboRequester.java
blob: 833f8fb3b47444396e2aeea288baa51ec108bc6b (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQWidget;

/**

 URL requester with a combo box, for use in Designer
 		@short    URL requester with a combo box, for use in Designer

*/
public class KURLComboRequester extends KURLRequester  {
	protected KURLComboRequester(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Constructs a KURLRequester widget with a combobox.
		     		@short    Constructs a KURLRequester widget with a combobox.
	*/
	public KURLComboRequester(TQWidget parent, String name) {
		super((Class) null);
		newKURLComboRequester(parent,name);
	}
	private native void newKURLComboRequester(TQWidget parent, String name);
	public KURLComboRequester(TQWidget parent) {
		super((Class) null);
		newKURLComboRequester(parent);
	}
	private native void newKURLComboRequester(TQWidget parent);
	public KURLComboRequester() {
		super((Class) null);
		newKURLComboRequester();
	}
	private native void newKURLComboRequester();
	/** 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();
}