blob: f3423706db9d73ccf223782c81f844b0e9705db5 (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQComboTableItem extends TQTableItem {
protected TQComboTableItem(Class dummy){super((Class) null);}
public TQComboTableItem(TQTable table, String[] list, boolean editable) {
super((Class) null);
newTQComboTableItem(table,list,editable);
}
private native void newTQComboTableItem(TQTable table, String[] list, boolean editable);
public TQComboTableItem(TQTable table, String[] list) {
super((Class) null);
newTQComboTableItem(table,list);
}
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);
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 TQSize 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();
}
|