org.kde.koala

Interface KFileDialogSignals

public interface KFileDialogSignals

Method Summary
voidfileHighlighted(String arg1)
Emitted when the user highlights a file.
voidfileSelected(String arg1)
Emitted when the user selects a file.
voidfilterChanged(String filter)
Emitted when the filter changed, i.e. the user entered an own filter or chose one of the predefined set via setFilter().
voidselectionChanged()
Emitted when the user hilights one or more files in multiselection mode.

Method Detail

fileHighlighted

public void fileHighlighted(String arg1)
Emitted when the user highlights a file.

UNKNOWN: Emitted when the user highlights a file.

fileSelected

public void fileSelected(String arg1)
Emitted when the user selects a file. It is only emitted in single- selection mode. The best way to get notified about selected file(s) is to connect to the okClicked() signal inherited from KDialogBase and call selectedFile(), selectedFiles(), selectedURL() or selectedURLs().

UNKNOWN: Emitted when the user selects a file.

filterChanged

public void filterChanged(String filter)
Emitted when the filter changed, i.e. the user entered an own filter or chose one of the predefined set via setFilter().

Parameters: filter contains the new filter (only the extension part, not the explanation), i.e. "*.cpp" or "*.cpp .cc".

See Also: KFileDialogSignals KFileDialogSignals

UNKNOWN: Emitted when the filter changed, i.

selectionChanged

public void selectionChanged()
Emitted when the user hilights one or more files in multiselection mode. Note: fileHighlighted() or fileSelected() are not emitted in multiselection mode. You may use selectedItems() to ask for the current highlighted items.

See Also: KFileDialogSignals

UNKNOWN: Emitted when the user hilights one or more files in multiselection mode.