org.kde.koala

Interface KURLRequesterSignals

public interface KURLRequesterSignals

Method Summary
voidopenFileDialog(KURLRequester arg1)
Emitted before the filedialog is going to open.
voidreturnPressed()
Emitted when return or enter was pressed in the lineedit.
voidreturnPressed(String arg1)
Emitted when return or enter was pressed in the lineedit.
voidtextChanged(String arg1)
Emitted when the text in the lineedit changes.
voidurlSelected(String arg1)
Emitted when the user changed the URL via the file dialog.

Method Detail

openFileDialog

public void openFileDialog(KURLRequester 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.

UNKNOWN: Emitted before the filedialog is going to open.

returnPressed

public void returnPressed()
Emitted when return or enter was pressed in the lineedit.

UNKNOWN: Emitted when return or enter was pressed in the lineedit.

returnPressed

public void returnPressed(String arg1)
Emitted when return or enter was pressed in the lineedit. The parameter contains the contents of the lineedit.

UNKNOWN: Emitted when return or enter was pressed in the lineedit.

textChanged

public void textChanged(String arg1)
Emitted when the text in the lineedit changes. The parameter contains the contents of the lineedit.

UNKNOWN: Emitted when the text in the lineedit changes.

urlSelected

public void urlSelected(String 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

UNKNOWN: Emitted when the user changed the URL via the file dialog.