//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.TQMetaObject; import org.kde.qt.QtSupport; import org.kde.qt.TQSize; import org.kde.qt.TQKeyEvent; import org.kde.qt.TQMouseEvent; import org.kde.qt.TQWidget; import org.kde.qt.TQResizeEvent; import org.kde.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 @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(); }