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.
37 lines
1.3 KiB
Java
37 lines
1.3 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.koala;
|
|
|
|
import org.kde.qt.TQMetaObject;
|
|
import org.kde.qt.QtSupport;
|
|
import org.kde.qt.TQImage;
|
|
import org.kde.qt.TQWidget;
|
|
|
|
public interface KScanDialogSignals {
|
|
/**
|
|
Informs you that an image has been previewed.
|
|
@param img the image
|
|
@param id the image's id
|
|
@short Informs you that an image has been previewed.
|
|
*/
|
|
void preview(TQImage img, int id);
|
|
/**
|
|
Informs you that an image has scanned. <code>id</code> is the same as in the
|
|
<code>preview</code>() signal, if this image had been previewed before.
|
|
Note, that those id's may not be properly implemented in the current
|
|
libkscan.
|
|
@param img the image
|
|
@param id the image's id
|
|
@short Informs you that an image has scanned.
|
|
*/
|
|
void finalImage(TQImage img, int id);
|
|
/**
|
|
Informs you that the image with the id <code>id</code> has been run through
|
|
text-recognition. The text is in the String parameter. In the future,
|
|
a compound document, using rich text will be used instead.
|
|
@param text the text that has been recognized
|
|
@param id the id of the image
|
|
@short Informs you that the image with the id <code>id</code> has been run through text-recognition.
|
|
*/
|
|
void textRecognized(String text, int id);
|
|
}
|