You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLBodyElement.java

115 lines
3.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
The HTML document body. This element is always present in the DOM
API, even if the tags are not present in the source document. See
the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-BODY">
BODY element definition </a> in HTML 4.0.
@short The HTML document body.
*/
public class HTMLBodyElement extends HTMLElement {
protected HTMLBodyElement(Class dummy){super((Class) null);}
public HTMLBodyElement() {
super((Class) null);
newHTMLBodyElement();
}
private native void newHTMLBodyElement();
public HTMLBodyElement(HTMLBodyElement other) {
super((Class) null);
newHTMLBodyElement(other);
}
private native void newHTMLBodyElement(HTMLBodyElement other);
public HTMLBodyElement(Node other) {
super((Class) null);
newHTMLBodyElement(other);
}
private native void newHTMLBodyElement(Node other);
/**
Color of active links (after mouse-button down, but before
mouse-button up). See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-alink">
alink attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Color of active links (after mouse-button down, but before mouse-button up).
*/
public native String aLink();
/**
see aLink
@short see aLink
*/
public native void setALink(String arg1);
/**
URI of the background texture tile image. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-background">
background attribute definition </a> in HTML 4.0. This
attribute is deprecated in HTML 4.0.
@short URI of the background texture tile image.
*/
public native String background();
/**
see background
@short see background
*/
public native void setBackground(String arg1);
/**
Document background color. See the <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor">
bgcolor attribute definition </a> in HTML 4.0. This attribute
is deprecated in HTML 4.0.
@short Document background color.
*/
public native String bgColor();
/**
see bgColor
@short see bgColor
*/
public native void setBgColor(String arg1);
/**
Color of links that are not active and unvisited. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-link">
link attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Color of links that are not active and unvisited.
*/
public native String link();
/**
see link
@short see link
*/
public native void setLink(String arg1);
/**
Document text color. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-text">
text attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Document text color.
*/
public native String text();
/**
see text
@short see text
*/
public native void setText(String arg1);
/**
Color of links that have been visited by the user. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-vlink">
vlink attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Color of links that have been visited by the user.
*/
public native String vLink();
/**
see vLink
@short see vLink
*/
public native void setVLink(String arg1);
// DOM::HTMLBodyElement* HTMLBodyElement(DOM::HTMLBodyElementImpl* arg1); >>>> NOT CONVERTED
}