You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KDirOperatorSignals.java

43 lines
1.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QPoint;
import java.util.ArrayList;
import org.kde.qt.QDropEvent;
import org.kde.qt.QWidget;
import org.kde.qt.QResizeEvent;
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, <code>item</code> 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, QDropEvent event, ArrayList urls);
}