blob: 496c6cd77a61946217d240b49f230c480f21fbd3 (
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.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QSize;
import org.kde.qt.QKeyEvent;
import org.kde.qt.QMouseEvent;
import org.kde.qt.QWidget;
import org.kde.qt.QResizeEvent;
import org.kde.qt.QGridView;
/**
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 QGridView {
protected KCharSelectTable(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
public KCharSelectTable(QWidget parent, String name, String _font, char _chr, int _tableNum) {
super((Class) null);
newKCharSelectTable(parent,name,_font,_chr,_tableNum);
}
private native void newKCharSelectTable(QWidget parent, String name, String _font, char _chr, int _tableNum);
public native QSize sizeHint();
public native void resizeEvent(QResizeEvent 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(QMouseEvent e);
protected native void mouseDoubleClickEvent(QMouseEvent e);
protected native void mouseReleaseEvent(QMouseEvent e);
protected native void mouseMoveEvent(QMouseEvent e);
protected native void keyPressEvent(QKeyEvent 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();
}
|