summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KColorCombo.java
blob: 52a7e20b6b982d52fca67edaa06a62c6979c7ac0 (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
52
53
54
55
56
57
58
59
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQColor;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQWidget;
import org.kde.qt.TQResizeEvent;
import org.kde.qt.TQComboBox;

/**

 Combobox for colors.
  See {@link KColorComboSignals} for signals emitted by KColorCombo
		@short    Combobox for colors.

*/
public class KColorCombo extends TQComboBox  {
	protected KColorCombo(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Constructs a color combo box.
		     		@short    Constructs a color combo box.
	*/
	public KColorCombo(TQWidget parent, String name) {
		super((Class) null);
		newKColorCombo(parent,name);
	}
	private native void newKColorCombo(TQWidget parent, String name);
	public KColorCombo(TQWidget parent) {
		super((Class) null);
		newKColorCombo(parent);
	}
	private native void newKColorCombo(TQWidget parent);
	/**	
		 Selects the color <code>col.</code>
		     		@short    Selects the color <code>col.</code>
	*/
	public native void setColor(TQColor col);
	/**	
		 Returns the currently selected color.
				@short    Returns the currently selected color.
	*/
	public native TQColor color();
	/**	
		 Clear the color list and don't show it, till the next setColor() call
				@short    Clear the color list and don't show it, till the next setColor() call
	*/
	public native void showEmptyList();
	protected native void resizeEvent(TQResizeEvent re);
	/** 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();
}