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/PreviewJobSignals.java

27 lines
1006 B

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QPixmap;
import java.util.ArrayList;
public interface PreviewJobSignals {
/**
Emitted when a thumbnail picture for <code>item</code> has been successfully
retrieved.
@param item the file of the preview
@param preview the preview image
@short Emitted when a thumbnail picture for <code>item</code> has been successfully retrieved.
*/
void gotPreview(KFileItem item, QPixmap preview);
/**
Emitted when a thumbnail for <code>item</code> could not be created,
either because a ThumbCreator for its MIME type does not
exist, or because something went wrong.
@param item the file that failed
@short Emitted when a thumbnail for <code>item</code> could not be created, either because a ThumbCreator for its MIME type does not exist, or because something went wrong.
*/
void failed(KFileItem item);
}