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

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

/**

 Introduced in DOM Level 2
 A base interface that all views shall derive from.
 		@short    Introduced in DOM Level 2

*/
public class AbstractView implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected AbstractView(Class dummy){}

	public AbstractView() {
		newAbstractView();
	}
	private native void newAbstractView();
	public AbstractView(AbstractView other) {
		newAbstractView(other);
	}
	private native void newAbstractView(AbstractView other);
	/**	
		 The source DocumentView of which this is an AbstractView.
		     		@short    The source DocumentView of which this is an AbstractView.
	*/
	public native Document document();
	/**	
		 Introduced in DOM Level 2
		 This method is from the ViewCSS interface
			 This method is used to get the computed style as it is defined in
		 [CSS2].
			@param elt The element whose style is to be computed. This parameter
		 cannot be null.
			@param pseudoElt The pseudo-element or null if none.
				@return The computed style. The CSSStyleDeclaration is read-only and
 contains only absolute values.
     
		@short    Introduced in DOM Level 2  This method is from the ViewCSS interface
	*/
	public native CSSStyleDeclaration getComputedStyle(Element elt, String pseudoElt);
	/**	
			 not part of the DOM
		     		@short
	*/
	// DOM::AbstractViewImpl* handle(); >>>> NOT CONVERTED
	public native boolean isNull();
	// DOM::AbstractView* AbstractView(DOM::AbstractViewImpl* arg1); >>>> NOT CONVERTED
}