You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
Java
39 lines
1.4 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
import org.kde.qt.Qt;
|
|
|
|
public class QComboTableItem extends QTableItem {
|
|
protected QComboTableItem(Class dummy){super((Class) null);}
|
|
public QComboTableItem(QTable table, String[] list, boolean editable) {
|
|
super((Class) null);
|
|
newQComboTableItem(table,list,editable);
|
|
}
|
|
private native void newQComboTableItem(QTable table, String[] list, boolean editable);
|
|
public QComboTableItem(QTable table, String[] list) {
|
|
super((Class) null);
|
|
newQComboTableItem(table,list);
|
|
}
|
|
private native void newQComboTableItem(QTable table, String[] list);
|
|
public native QWidget createEditor();
|
|
public native void setContentFromEditor(QWidget w);
|
|
public native void paint(QPainter p, QColorGroup cg, QRect cr, boolean selected);
|
|
public native void setCurrentItem(int i);
|
|
public native void setCurrentItem(String i);
|
|
public native int currentItem();
|
|
public native String currentText();
|
|
public native int count();
|
|
public native String text(int i);
|
|
public native void setEditable(boolean b);
|
|
public native boolean isEditable();
|
|
public native void setStringList(String[] l);
|
|
public native int rtti();
|
|
public native QSize sizeHint();
|
|
/** 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();
|
|
}
|