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/HTMLImageElement.java

190 lines
5.7 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Embedded image. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-IMG">
IMG element definition </a> in HTML 4.0.
@short Embedded image.
*/
public class HTMLImageElement extends HTMLElement {
protected HTMLImageElement(Class dummy){super((Class) null);}
public HTMLImageElement() {
super((Class) null);
newHTMLImageElement();
}
private native void newHTMLImageElement();
public HTMLImageElement(HTMLImageElement other) {
super((Class) null);
newHTMLImageElement(other);
}
private native void newHTMLImageElement(HTMLImageElement other);
public HTMLImageElement(Node other) {
super((Class) null);
newHTMLImageElement(other);
}
private native void newHTMLImageElement(Node other);
/**
The name of the element (for backwards compatibility).
@short The name of the element (for backwards compatibility).
*/
public native String name();
/**
see name
@short see name
*/
public native void setName(String arg1);
/**
Aligns this object (vertically or horizontally) with respect to
its surrounding text. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG">
align attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Aligns this object (vertically or horizontally) with respect to its surrounding text.
*/
public native String align();
/**
see align
@short see align
*/
public native void setAlign(String arg1);
/**
Alternate text for user agents not rendering the normal content
of this element. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt">
alt attribute definition </a> in HTML 4.0.
@short Alternate text for user agents not rendering the normal content of this element.
*/
public native String alt();
/**
see alt
@short see alt
*/
public native void setAlt(String arg1);
/**
Width of border around image. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-border-IMG">
border attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Width of border around image.
*/
public native String getBorder();
/**
see border
@short see border
*/
public native void setBorder(String arg1);
/**
Override height. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-height-IMG">
height attribute definition </a> in HTML 4.0.
@short Override height.
*/
public native long height();
/**
see height
@short see height
*/
public native void setHeight(long arg1);
/**
Horizontal space to the left and right of this image. See the
<a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-hspace">
hspace attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Horizontal space to the left and right of this image.
*/
public native long hspace();
/**
see hspace
@short see hspace
*/
public native void setHspace(long arg1);
/**
Use server-side image map. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-ismap">
ismap attribute definition </a> in HTML 4.0.
@short Use server-side image map.
*/
public native boolean isMap();
/**
see isMap
@short see isMap
*/
public native void setIsMap(boolean arg1);
/**
URI designating a long description of this image or frame. See
the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-longdesc-IMG">
longdesc attribute definition </a> in HTML 4.0.
@short URI designating a long description of this image or frame.
*/
public native String longDesc();
/**
see longDesc
@short see longDesc
*/
public native void setLongDesc(String arg1);
/**
URI designating the source of this image. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-src-IMG">
src attribute definition </a> in HTML 4.0.
@short URI designating the source of this image.
*/
public native String src();
/**
see src
@short see src
*/
public native void setSrc(String arg1);
/**
Use client-side image map. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-usemap">
usemap attribute definition </a> in HTML 4.0.
@short Use client-side image map.
*/
public native String useMap();
/**
see useMap
@short see useMap
*/
public native void setUseMap(String arg1);
/**
Vertical space above and below this image. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-vspace">
vspace attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Vertical space above and below this image.
*/
public native long vspace();
/**
see vspace
@short see vspace
*/
public native void setVspace(long arg1);
/**
Override width. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-width-IMG">
width attribute definition </a> in HTML 4.0.
@short Override width.
*/
public native long width();
/**
see width
@short see width
*/
public native void setWidth(long arg1);
/**
Nonstandard extension to DOM.ImgElement
@short Nonstandard extension to DOM.ImgElement
*/
public native long x();
public native long y();
// DOM::HTMLImageElement* HTMLImageElement(DOM::HTMLImageElementImpl* arg1); >>>> NOT CONVERTED
}