summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KActionCollectionSignals.java
blob: 8dd6cae11ae2317b279fd3f45e2e0d9508f8d80e (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
//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.TQObject;
import java.util.ArrayList;
import org.kde.qt.TQWidget;

public interface KActionCollectionSignals {
	void inserted(KAction arg1);
	void removed(KAction arg1);
	/**	 Emitted when <code>action</code> is highlighted.
		  This is only emitted if you have setHighlightingEnabled()
				@short   Emitted when <code>action</code> is highlighted.
		@see #connectHighlight
		@see #disconnectHighlight
		@see #actionHighlighted
		@see #setHighlightingEnabled
		@see #highlightingEnabled
	*/
	void actionHighlighted(KAction action);
	/**	 Emitted when <code>action</code> is highlighed or loses highlighting.
		  This is only emitted if you have setHighlightingEnabled()
				@short   Emitted when <code>action</code> is highlighed or loses highlighting.
		@see #connectHighlight
		@see #disconnectHighlight
		@see #actionHighlighted
		@see #setHighlightingEnabled
		@see #highlightingEnabled
	*/
	void actionHighlighted(KAction action, boolean highlight);
	/**	 Emitted when an action is highlighted, with text
		  being the tooltip for the action.
		  This is only emitted if you have setHighlightingEnabled()
			  This is useful to connect to KStatusBar.message().  See
		  this class overview for more information.
				@short   Emitted when an action is highlighted, with text   being the tooltip for the action.
		@see #setHighlightingEnabled
	*/
	void actionStatusText(String text);
	/**	 Emitted when an action loses highlighting.
		  This is only emitted if you have setHighlightingEnabled()
				@short   Emitted when an action loses highlighting.
		@see #setHighlightingEnabled
	*/
	void clearStatusText();
}