summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/BrowserHostExtension.java
blob: 60c0761757495d165d116267e42985e92b859b65 (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.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQObject;
import java.util.ArrayList;
import org.kde.qt.TQObject;

/**

 An extension class for container parts, i.e. parts that contain
 other parts.
 For instance a TDEHTMLPart hosts one part per frame.
 		@short    An extension class for container parts, i.

*/
public class BrowserHostExtension extends TQObject  {
	protected BrowserHostExtension(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public BrowserHostExtension(ReadOnlyPart parent, String name) {
		super((Class) null);
		newBrowserHostExtension(parent,name);
	}
	private native void newBrowserHostExtension(ReadOnlyPart parent, String name);
	public BrowserHostExtension(ReadOnlyPart parent) {
		super((Class) null);
		newBrowserHostExtension(parent);
	}
	private native void newBrowserHostExtension(ReadOnlyPart parent);
	/**	
		 Returns a list of the names of all hosted child objects.
			 Note that this method does not query the child objects recursively.
		   		@short    Returns a list of the names of all hosted child objects.
	*/
	public native ArrayList frameNames();
	/**	
		 Returns a list of pointers to all hosted child objects.
			 Note that this method does not query the child objects recursively.
		   		@short    Returns a list of pointers to all hosted child objects.
	*/
	// const TQPtrList<KParts::ReadOnlyPart> frames(); >>>> NOT CONVERTED
	/**	
		 Returns the part that contains <code>frame</code> and that may be accessed
		 by <code>callingPart</code>
				@short    Returns the part that contains <code>frame</code> and that may be accessed  by <code>callingPart</code>
	*/
	public native BrowserHostExtension findFrameParent(ReadOnlyPart callingPart, String frame);
	/**	
		 Opens the given url in a hosted child frame. The frame name is specified in the
		 frameName variable in the urlArgs argument structure (see KParts.URLArgs ) .
		   		@short    Opens the given url in a hosted child frame.
	*/
	public native boolean openURLInFrame(KURL url, URLArgs urlArgs);
	/**	
		 Queries <code>obj</code> for a child object which inherits from this
		 BrowserHostExtension class. Convenience method.
		   		@short    Queries <code>obj</code> for a child object which inherits from this  BrowserHostExtension class.
	*/
	public static native BrowserHostExtension childObject(TQObject arg1);
}