org.kde.koala
Interface KDirOperatorSignals


public interface KDirOperatorSignals


Method Summary
 void completion(java.lang.String arg1)
           
 void dirActivated(KFileItem item)
           
 void dropped(KFileItem item, org.kde.qt.QDropEvent event, java.util.ArrayList urls)
          Emitted when files are dropped.
 void fileHighlighted(KFileItem item)
          Emitted when a file is highlighted or generally the selection changes in multiselection mode.
 void fileSelected(KFileItem item)
           
 void finishedLoading()
           
 void updateInformation(int files, int dirs)
           
 void urlEntered(KURL arg1)
           
 void viewChanged(KFileViewInterface newView)
          Emitted whenever the current fileview is changed, either by an explicit call to setView() or by the user selecting a different view thru the GUI.
 

Method Detail

urlEntered

void urlEntered(KURL arg1)

updateInformation

void updateInformation(int files,
                       int dirs)

completion

void completion(java.lang.String arg1)

finishedLoading

void finishedLoading()

viewChanged

void viewChanged(KFileViewInterface newView)
Emitted whenever the current fileview is changed, either by an explicit call to setView() or by the user selecting a different view thru the GUI.


fileHighlighted

void fileHighlighted(KFileItem item)
Emitted when a file is highlighted or generally the selection changes in multiselection mode. In the latter case, item is null. You can access the selected items with selectedItems().


dirActivated

void dirActivated(KFileItem item)

fileSelected

void fileSelected(KFileItem item)

dropped

void dropped(KFileItem item,
             org.kde.qt.QDropEvent event,
             java.util.ArrayList urls)
Emitted when files are dropped. Dropping files is disabled by default. You need to enable it with setAcceptDrops()

Parameters:
item - the item on which the drop occurred or 0.
event - the drop event itself.
urls - the urls that where dropped.