//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); }