summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KURLRequesterSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KURLRequesterSignals.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/KURLRequesterSignals.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KURLRequesterSignals.java b/tdejava/koala/org/trinitydesktop/koala/KURLRequesterSignals.java
new file mode 100644
index 00000000..59880465
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/KURLRequesterSignals.java
@@ -0,0 +1,45 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.TQMetaObject;
+import org.trinitydesktop.qt.QtSupport;
+import org.trinitydesktop.qt.TQWidget;
+
+public interface KURLRequesterSignals {
+ /**
+ Emitted when the text in the lineedit changes.
+ The parameter contains the contents of the lineedit.
+ @short Emitted when the text in the lineedit changes.
+ */
+ void textChanged(String arg1);
+ /**
+ Emitted when return or enter was pressed in the lineedit.
+ @short Emitted when return or enter was pressed in the lineedit.
+ */
+ void returnPressed();
+ /**
+ Emitted when return or enter was pressed in the lineedit.
+ The parameter contains the contents of the lineedit.
+ @short Emitted when return or enter was pressed in the lineedit.
+ */
+ void returnPressed(String arg1);
+ /**
+ Emitted before the filedialog is going to open. Connect
+ to this signal to "configure" the filedialog, e.g. set the
+ filefilter, the mode, a preview-widget, etc. It's usually
+ not necessary to set a URL for the filedialog, as it will
+ get set properly from the editfield contents.
+ If you use multiple KURLRequesters, you can connect all of them
+ to the same slot and use the given KURLRequester pointer to know
+ which one is going to open.
+ @short Emitted before the filedialog is going to open.
+ */
+ void openFileDialog(KURLRequester arg1);
+ /**
+ Emitted when the user changed the URL via the file dialog.
+ The parameter contains the contents of the lineedit.
+ // TODO KDE4: Use KURL instead
+ @short Emitted when the user changed the URL via the file dialog.
+ */
+ void urlSelected(String arg1);
+}