You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtjava/javalib/org/trinitydesktop/qt/TQMenuItem.java

42 lines
1.3 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQMenuItem implements QtSupport {
private long _qt;
private boolean _allocatedInJavaWorld = true;
protected TQMenuItem(Class dummy){}
public TQMenuItem() {
newTQMenuItem();
}
private native void newTQMenuItem();
public native int id();
public native TQIconSet iconSet();
public native String text();
public native String whatsThis();
public native TQPixmap pixmap();
public native TQPopupMenu popup();
public native TQWidget widget();
public native TQCustomMenuItem custom();
public native TQKeySequence key();
public native TQSignal signal();
public native boolean isSeparator();
public native boolean isEnabled();
public native boolean isChecked();
public native boolean isDirty();
public native boolean isVisible();
public native boolean isEnabledAndVisible();
public native void setText(String text);
public native void setDirty(boolean dirty);
public native void setVisible(boolean visible);
public native void setWhatsThis(String text);
/** 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();
}