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/kdejava/koala/org/kde/koala/KStatusBarLabel.java

45 lines
1.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QMouseEvent;
import org.kde.qt.QLabel;
/**
Internal label class for use in KStatusBar
See {@link KStatusBarLabelSignals} for signals emitted by KStatusBarLabel
@short Internal label class for use in KStatusBar
*/
public class KStatusBarLabel extends QLabel {
protected KStatusBarLabel(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
public KStatusBarLabel(String text, int _id, KStatusBar parent, String name) {
super((Class) null);
newKStatusBarLabel(text,_id,parent,name);
}
private native void newKStatusBarLabel(String text, int _id, KStatusBar parent, String name);
public KStatusBarLabel(String text, int _id, KStatusBar parent) {
super((Class) null);
newKStatusBarLabel(text,_id,parent);
}
private native void newKStatusBarLabel(String text, int _id, KStatusBar parent);
public KStatusBarLabel(String text, int _id) {
super((Class) null);
newKStatusBarLabel(text,_id);
}
private native void newKStatusBarLabel(String text, int _id);
protected native void mousePressEvent(QMouseEvent _event);
protected native void mouseReleaseEvent(QMouseEvent _event);
/** 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();
}