You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.1 KiB
Java
73 lines
2.1 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.koala;
|
|
|
|
import org.kde.qt.Qt;
|
|
import org.kde.qt.QtSupport;
|
|
|
|
/**
|
|
|
|
Base font. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-BASEFONT">
|
|
BASEFONT element definition </a> in HTML 4.0. This element is
|
|
deprecated in HTML 4.0.
|
|
@short Base font.
|
|
|
|
*/
|
|
public class HTMLBaseFontElement extends HTMLElement {
|
|
protected HTMLBaseFontElement(Class dummy){super((Class) null);}
|
|
public HTMLBaseFontElement() {
|
|
super((Class) null);
|
|
newHTMLBaseFontElement();
|
|
}
|
|
private native void newHTMLBaseFontElement();
|
|
public HTMLBaseFontElement(HTMLBaseFontElement other) {
|
|
super((Class) null);
|
|
newHTMLBaseFontElement(other);
|
|
}
|
|
private native void newHTMLBaseFontElement(HTMLBaseFontElement other);
|
|
public HTMLBaseFontElement(Node other) {
|
|
super((Class) null);
|
|
newHTMLBaseFontElement(other);
|
|
}
|
|
private native void newHTMLBaseFontElement(Node other);
|
|
/**
|
|
Font color. See the <a href="http://www.w3.org/TR/REC-html40/">
|
|
color attribute definition </a> in HTML 4.0. This attribute is
|
|
deprecated in HTML 4.0.
|
|
@short Font color.
|
|
*/
|
|
public native String color();
|
|
/**
|
|
see color
|
|
@short see color
|
|
*/
|
|
public native void setColor(String arg1);
|
|
/**
|
|
Font face identifier. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/"> face attribute
|
|
definition </a> in HTML 4.0. This attribute is deprecated in
|
|
HTML 4.0.
|
|
@short Font face identifier.
|
|
*/
|
|
public native String face();
|
|
/**
|
|
see face
|
|
@short see face
|
|
*/
|
|
public native void setFace(String arg1);
|
|
/**
|
|
Computed Font size. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-BASEFONT">
|
|
size attribute definition </a> in HTML 4.0. This attribute is
|
|
deprecated in HTML 4.0.
|
|
@short Computed Font size.
|
|
*/
|
|
public native long getSize();
|
|
/**
|
|
see size
|
|
@short see size
|
|
*/
|
|
public native void setSize(long arg1);
|
|
// DOM::HTMLBaseFontElement* HTMLBaseFontElement(DOM::HTMLBaseFontElementImpl* arg1); >>>> NOT CONVERTED
|
|
}
|