summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDEIconViewSignals.java
blob: 8d76c5bc9cc09b13072833ff504f338bf88ae298 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQIconViewItem;
import org.kde.qt.TQFont;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQPoint;
import org.kde.qt.TQDragMoveEvent;
import org.kde.qt.TQDragEnterEvent;
import org.kde.qt.TQDragLeaveEvent;
import org.kde.qt.TQFocusEvent;
import org.kde.qt.TQMouseEvent;
import org.kde.qt.TQDropEvent;
import org.kde.qt.TQEvent;
import org.kde.qt.TQWidget;
import org.kde.qt.TQWheelEvent;

public interface TDEIconViewSignals {
	/**	
		 This signal is emitted whenever the user executes an iconview item.
		 That means depending on the KDE wide Single Click/Double Click
		 setting the user clicked or double clicked on that item.
			@param item is the pointer to the executed iconview item.
			 Note that you may not delete any TQIconViewItem objects in slots
		 connected to this signal.
		   		@short    This signal is emitted whenever the user executes an iconview item.
	*/
	void executed(TQIconViewItem item);
	/**	
		 This signal is emitted whenever the user executes an iconview item.
		 That means depending on the KDE wide Single Click/Double Click
		 setting the user clicked or double clicked on that item.
			@param item is the pointer to the executed iconview item.
			@param pos is the position where the user has clicked
			 Note that you may not delete any TQIconViewItem objects in slots
		 connected to this signal.
		   		@short    This signal is emitted whenever the user executes an iconview item.
	*/
	void executed(TQIconViewItem item, TQPoint pos);
	/**	
		 This signal is emitted whenever the user hold something on an iconview
		 during a drag'n'drop.
			@param item is the pointer to the iconview item the hold event occur.
			 Note that you may not delete any TQIconViewItem objects in slots
		 connected to this signal.
		   		@short    This signal is emitted whenever the user hold something on an iconview  during a drag'n'drop.
	*/
	void held(TQIconViewItem item);
	/**	
		 This signal gets emitted whenever the user double clicks into the
		 iconview.
			@param item is the pointer to the clicked iconview item.
			@param pos is the position where the user has clicked, and
			 Note that you may not delete any TQIconViewItem objects in slots
		 connected to this signal.
			 This signal is more or less here for the sake of completeness.
		 You should normally not need to use this. In most cases it's better
		 to use executed() instead.
		   		@short    This signal gets emitted whenever the user double clicks into the  iconview.
	*/
	void doubleClicked(TQIconViewItem item, TQPoint pos);
}