summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDirOperatorSignals.java
blob: 77a967bab5b78ffd7cd1ca4f1fedfbedbc2fdf3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//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);
}