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.
53 lines
1.5 KiB
Java
53 lines
1.5 KiB
Java
//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.QWidget;
|
|
|
|
/**
|
|
|
|
Icon canvas for KIconDialog.
|
|
See {@link KIconCanvasSignals} for signals emitted by KIconCanvas
|
|
@short Icon canvas for KIconDialog.
|
|
|
|
*/
|
|
public class KIconCanvas extends KIconView {
|
|
protected KIconCanvas(Class dummy){super((Class) null);}
|
|
public native QMetaObject metaObject();
|
|
public native String className();
|
|
public KIconCanvas(QWidget parent, String name) {
|
|
super((Class) null);
|
|
newKIconCanvas(parent,name);
|
|
}
|
|
private native void newKIconCanvas(QWidget parent, String name);
|
|
public KIconCanvas(QWidget parent) {
|
|
super((Class) null);
|
|
newKIconCanvas(parent);
|
|
}
|
|
private native void newKIconCanvas(QWidget parent);
|
|
public KIconCanvas() {
|
|
super((Class) null);
|
|
newKIconCanvas();
|
|
}
|
|
private native void newKIconCanvas();
|
|
/**
|
|
Load icons into the canvas.
|
|
@short Load icons into the canvas.
|
|
*/
|
|
public native void loadFiles(String[] files);
|
|
/**
|
|
Returns the current icon.
|
|
@short Returns the current icon.
|
|
*/
|
|
public native String getCurrent();
|
|
public native void stopLoading();
|
|
/** 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();
|
|
}
|