summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KScanDialogSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KScanDialogSignals.java')
-rw-r--r--kdejava/koala/org/kde/koala/KScanDialogSignals.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KScanDialogSignals.java b/kdejava/koala/org/kde/koala/KScanDialogSignals.java
new file mode 100644
index 00000000..d272143d
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KScanDialogSignals.java
@@ -0,0 +1,36 @@
+//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.QImage;
+import org.kde.qt.QWidget;
+
+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(QImage 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(QImage 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);
+}