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

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import org.kde.qt.TQEvent;

/**

 The KParts.OpenURLEvent event informs that a given part has opened a given URL.
 Applications can use this event to send this information to interested plugins.
 The event should be sent before opening the URL in the part, so that the plugins
 can use part().url() to get the old URL.
 		@short    The KParts.OpenURLEvent event informs that a given part has opened a given URL.

*/
public class OpenURLEvent extends Event  {
	protected OpenURLEvent(Class dummy){super((Class) null);}
	public OpenURLEvent(ReadOnlyPart part, KURL url, URLArgs args) {
		super((Class) null);
		newOpenURLEvent(part,url,args);
	}
	private native void newOpenURLEvent(ReadOnlyPart part, KURL url, URLArgs args);
	public OpenURLEvent(ReadOnlyPart part, KURL url) {
		super((Class) null);
		newOpenURLEvent(part,url);
	}
	private native void newOpenURLEvent(ReadOnlyPart part, KURL url);
	public native ReadOnlyPart part();
	public native KURL url();
	public native URLArgs args();
	public static native boolean test(TQEvent event);
}