//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.TQPoint; import java.util.ArrayList; import org.kde.qt.TQDropEvent; import org.kde.qt.TQWidget; import org.kde.qt.TQResizeEvent; public interface KDirOperatorSignals { void urlEntered(KURL arg1); void updateInformation(int files, int dirs); void completion(String arg1); void finishedLoading(); /** 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. @short 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. */ void viewChanged(KFileViewInterface newView); /** 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(). @short Emitted when a file is highlighted or generally the selection changes in multiselection mode. */ void fileHighlighted(KFileItem item); void dirActivated(KFileItem item); void fileSelected(KFileItem item); /** Emitted when files are dropped. Dropping files is disabled by default. You need to enable it with setAcceptDrops() @param item the item on which the drop occurred or 0. @param event the drop event itself. @param urls the urls that where dropped. @short Emitted when files are dropped. */ void dropped(KFileItem item, TQDropEvent event, ArrayList urls); }