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