summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KHTMLPartSignals.java
blob: efeebe2f0dc0d613d74d5e4b57c82572a2aee398 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQRect;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQDataStream;
import org.kde.qt.TQObject;
import org.kde.qt.TQPoint;
import java.util.ArrayList;
import org.kde.qt.TQPainter;
import org.kde.qt.TQCustomEvent;
import org.kde.qt.TQCursor;
import org.kde.qt.TQVariant;
import org.kde.qt.TQWidget;

public interface KHTMLPartSignals {
	/**	
		 Emitted if the cursor is moved over an URL.
		   		@short    Emitted if the cursor is moved over an URL.
	*/
	void onURL(String url);
	/**	
		 Emitted when the user clicks the right mouse button on the document.
		   		@short    Emitted when the user clicks the right mouse button on the document.
	*/
	void popupMenu(String url, TQPoint point);
	/**	
		 This signal is emitted when the selection changes.
		   		@short    This signal is emitted when the selection changes.
	*/
	void selectionChanged();
	/**	
		 This signal is emitted when an element retrieves the
		 keyboard focus. Note that the signal argument can be
		 a null node if no element is active, meaning a node
		 has explicitly been deactivated without a new one
		 becoming active.
		   		@short    This signal is emitted when an element retrieves the  keyboard focus.
	*/
	void nodeActivated(Node arg1);
	/**	
			  void docCreated();
			  /*
		 This signal is emitted whenever the caret position has been changed.
			 The signal transmits the position the DOM.Range way, the node and
		 the zero-based offset within this node.
			@param node node which the caret is in. This can be null if the caret
			has been deactivated.
			@param offset offset within the node. If the node is null, the offset
			is meaningless.
				@short
	*/
	void caretPositionChanged(Node node, long offset);
	/**	
		 If form notification is on, this will be emitted either for a form
		 submit or before the form submit according to the setting.
				@short    If form notification is on, this will be emitted either for a form  submit or before the form submit according to the setting.
	*/
	void formSubmitNotification(String action, String url, byte[] formData, String target, String contentType, String boundary);
}