summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QColorDrag.java
blob: 2c41932f34696c5069beec8c9a43d2d09da2c3a1 (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 QColorDrag extends QStoredDrag  {
	protected QColorDrag(Class dummy){super((Class) null);}
	public native QMetaObject metaObject();
	public native String className();
	public QColorDrag(QColor col, QWidget dragsource, String name) {
		super((Class) null);
		newQColorDrag(col,dragsource,name);
	}
	private native void newQColorDrag(QColor col, QWidget dragsource, String name);
	public QColorDrag(QColor col, QWidget dragsource) {
		super((Class) null);
		newQColorDrag(col,dragsource);
	}
	private native void newQColorDrag(QColor col, QWidget dragsource);
	public QColorDrag(QColor col) {
		super((Class) null);
		newQColorDrag(col);
	}
	private native void newQColorDrag(QColor col);
	public QColorDrag(QWidget dragSource, String name) {
		super((Class) null);
		newQColorDrag(dragSource,name);
	}
	private native void newQColorDrag(QWidget dragSource, String name);
	public QColorDrag(QWidget dragSource) {
		super((Class) null);
		newQColorDrag(dragSource);
	}
	private native void newQColorDrag(QWidget dragSource);
	public QColorDrag() {
		super((Class) null);
		newQColorDrag();
	}
	private native void newQColorDrag();
	public native void setColor(QColor col);
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	public static native boolean canDecode(QMimeSourceInterface arg1);
	public static native boolean decode(QMimeSourceInterface arg1, QColor 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();
}