summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KEditListBoxSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KEditListBoxSignals.java')
-rw-r--r--kdejava/koala/org/kde/koala/KEditListBoxSignals.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KEditListBoxSignals.java b/kdejava/koala/org/kde/koala/KEditListBoxSignals.java
new file mode 100644
index 00000000..9ca5ac26
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KEditListBoxSignals.java
@@ -0,0 +1,25 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.QListBox;
+import org.kde.qt.QMetaObject;
+import org.kde.qt.QtSupport;
+import java.util.ArrayList;
+import org.kde.qt.QPushButton;
+import org.kde.qt.QWidget;
+
+public interface KEditListBoxSignals {
+ void changed();
+ /**
+ This signal is emitted when the user adds a new string to the list,
+ the parameter is the added string.
+ @short This signal is emitted when the user adds a new string to the list, the parameter is the added string.
+ */
+ void added(String text);
+ /**
+ This signal is emitted when the user removes a string from the list,
+ the parameter is the removed string.
+ @short This signal is emitted when the user removes a string from the list, the parameter is the removed string.
+ */
+ void removed(String text);
+}