org.kde.koala
Interface KFileDialogSignals


public interface KFileDialogSignals


Method Summary
 void fileHighlighted(java.lang.String arg1)
          Emitted when the user highlights a file.
 void fileSelected(java.lang.String arg1)
          Emitted when the user selects a file.
 void filterChanged(java.lang.String filter)
          Emitted when the filter changed, i.e.
 void selectionChanged()
          Emitted when the user hilights one or more files in multiselection mode.
 

Method Detail

fileSelected

void fileSelected(java.lang.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().


fileHighlighted

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


selectionChanged

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:
fileSelected(java.lang.String)

filterChanged

void filterChanged(java.lang.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:
#setFilter, #currentFilter