summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KCharSelectTable.java
blob: 64b73c11dbf40b9f4c969ba02cc28e7ef8e98c00 (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.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQSize;
import org.trinitydesktop.qt.TQKeyEvent;
import org.trinitydesktop.qt.TQMouseEvent;
import org.trinitydesktop.qt.TQWidget;
import org.trinitydesktop.qt.TQResizeEvent;
import org.trinitydesktop.qt.TQGridView;

/**

 A table widget which displays the characters of a font. Internally
 used by KCharSelect. See the KCharSelect documentation for further
 details.
 See {@link KCharSelectTableSignals} for signals emitted by KCharSelectTable
		@author Reginald Stadlbauer <reggie@kde.org>

		@short Character selection table.

*/
public class KCharSelectTable extends TQGridView  {
	protected KCharSelectTable(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public KCharSelectTable(TQWidget parent, String name, String _font, char _chr, int _tableNum) {
		super((Class) null);
		newKCharSelectTable(parent,name,_font,_chr,_tableNum);
	}
	private native void newKCharSelectTable(TQWidget parent, String name, String _font, char _chr, int _tableNum);
	public native TQSize sizeHint();
	public native void resizeEvent(TQResizeEvent arg1);
	public native void setFont(String _font);
	public native void setChar(char _chr);
	public native void setTableNum(int _tableNum);
	public native char chr();
	protected native void mousePressEvent(TQMouseEvent e);
	protected native void mouseDoubleClickEvent(TQMouseEvent e);
	protected native void mouseReleaseEvent(TQMouseEvent e);
	protected native void mouseMoveEvent(TQMouseEvent e);
	protected native void keyPressEvent(TQKeyEvent e);
	protected native void gotoLeft();
	protected native void gotoRight();
	protected native void gotoUp();
	protected native void gotoDown();
	/** 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();
}