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

import org.kde.qt.Qt;

public class TQColorDrag extends TQStoredDrag  {
	protected TQColorDrag(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public TQColorDrag(TQColor col, TQWidget dragsource, String name) {
		super((Class) null);
		newTQColorDrag(col,dragsource,name);
	}
	private native void newTQColorDrag(TQColor col, TQWidget dragsource, String name);
	public TQColorDrag(TQColor col, TQWidget dragsource) {
		super((Class) null);
		newTQColorDrag(col,dragsource);
	}
	private native void newTQColorDrag(TQColor col, TQWidget dragsource);
	public TQColorDrag(TQColor col) {
		super((Class) null);
		newTQColorDrag(col);
	}
	private native void newTQColorDrag(TQColor col);
	public TQColorDrag(TQWidget dragSource, String name) {
		super((Class) null);
		newTQColorDrag(dragSource,name);
	}
	private native void newTQColorDrag(TQWidget dragSource, String name);
	public TQColorDrag(TQWidget dragSource) {
		super((Class) null);
		newTQColorDrag(dragSource);
	}
	private native void newTQColorDrag(TQWidget dragSource);
	public TQColorDrag() {
		super((Class) null);
		newTQColorDrag();
	}
	private native void newTQColorDrag();
	public native void setColor(TQColor col);
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	public static native boolean canDecode(TQMimeSourceInterface arg1);
	public static native boolean decode(TQMimeSourceInterface arg1, TQColor col);
	/** 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();
}