You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KCharSelectTable.java

56 lines
2.0 KiB

//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();
}