summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KURLRequesterSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KURLRequesterSignals.java')
-rw-r--r--kdejava/koala/org/kde/koala/KURLRequesterSignals.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/kdejava/koala/org/kde/koala/KURLRequesterSignals.java b/kdejava/koala/org/kde/koala/KURLRequesterSignals.java
deleted file mode 100644
index 66b4e556..00000000
--- a/kdejava/koala/org/kde/koala/KURLRequesterSignals.java
+++ /dev/null
@@ -1,45 +0,0 @@
-//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.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);
-}