summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KPaletteTable.java
blob: d86a7b3d92602756f4caaf3f71e7fa4394e6ffa9 (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
//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.TQWidget;

/**

 A color palette in table form.
 See {@link KPaletteTableSignals} for signals emitted by KPaletteTable
		@author Waldo Bastian <bastian@kde.org>

		@short    A color palette in table form.

*/
public class KPaletteTable extends TQWidget  {
	protected KPaletteTable(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public KPaletteTable(TQWidget parent, int minWidth, int cols) {
		super((Class) null);
		newKPaletteTable(parent,minWidth,cols);
	}
	private native void newKPaletteTable(TQWidget parent, int minWidth, int cols);
	public KPaletteTable(TQWidget parent, int minWidth) {
		super((Class) null);
		newKPaletteTable(parent,minWidth);
	}
	private native void newKPaletteTable(TQWidget parent, int minWidth);
	public KPaletteTable(TQWidget parent) {
		super((Class) null);
		newKPaletteTable(parent);
	}
	private native void newKPaletteTable(TQWidget parent);
	public native void addToCustomColors(TQColor arg1);
	public native void addToRecentColors(TQColor arg1);
	public native String paletteName();
	public native void setPalette(String paletteName);
	protected native void readNamedColor();
	protected native void slotColorCellSelected(int arg1);
	protected native void slotColorCellDoubleClicked(int arg1);
	protected native void slotColorTextSelected(String colorText);
	protected native void slotSetPalette(String _paletteName);
	protected native void slotShowNamedColorReadError();
	/** 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();
}