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.5 KiB
Java
39 lines
1.5 KiB
Java
15 years ago
|
//Auto-generated by kalyptus. DO NOT EDIT.
|
||
11 years ago
|
package org.trinitydesktop.qt;
|
||
15 years ago
|
|
||
11 years ago
|
import org.trinitydesktop.qt.Qt;
|
||
15 years ago
|
|
||
13 years ago
|
public class TQComboTableItem extends TQTableItem {
|
||
|
protected TQComboTableItem(Class dummy){super((Class) null);}
|
||
|
public TQComboTableItem(TQTable table, String[] list, boolean editable) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQComboTableItem(table,list,editable);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQComboTableItem(TQTable table, String[] list, boolean editable);
|
||
|
public TQComboTableItem(TQTable table, String[] list) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQComboTableItem(table,list);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQComboTableItem(TQTable table, String[] list);
|
||
|
public native TQWidget createEditor();
|
||
|
public native void setContentFromEditor(TQWidget w);
|
||
|
public native void paint(TQPainter p, TQColorGroup cg, TQRect cr, boolean selected);
|
||
15 years ago
|
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();
|
||
13 years ago
|
public native TQSize sizeHint();
|
||
15 years ago
|
/** 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();
|
||
|
}
|