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

285 lines
9.5 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Form control. Note. Depending upon the environment the page is
being viewed, the value property may be read-only for the file
upload input type. For the "password" input type, the actual value
returned may be masked to prevent unauthorized use. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-INPUT">
INPUT element definition </a> in HTML 4.0.
@short Form control.
*/
public class HTMLInputElement extends HTMLElement {
protected HTMLInputElement(Class dummy){super((Class) null);}
public HTMLInputElement() {
super((Class) null);
newHTMLInputElement();
}
private native void newHTMLInputElement();
public HTMLInputElement(HTMLInputElement other) {
super((Class) null);
newHTMLInputElement(other);
}
private native void newHTMLInputElement(HTMLInputElement other);
public HTMLInputElement(Node other) {
super((Class) null);
newHTMLInputElement(other);
}
private native void newHTMLInputElement(Node other);
/**
Stores the initial control value (i.e., the initial value of
<code>value</code> ).
@short Stores the initial control value (i.
*/
public native String defaultValue();
/**
see defaultValue
@short see defaultValue
*/
public native void setDefaultValue(String arg1);
/**
When <code>type</code> has the value "Radio" or "Checkbox",
stores the initial value of the <code>checked</code>
attribute.
@short When <code>type</code> has the value "Radio" or "Checkbox", stores the initial value of the <code>checked</code> attribute.
*/
public native boolean defaultChecked();
/**
see defaultChecked
@short see defaultChecked
*/
public native void setDefaultChecked(boolean arg1);
/**
### KDE 4.0: remove.
@short ### KDE 4.
*/
public native HTMLFormElement formElement();
/**
A comma-separated list of content types that a server
processing this form will handle correctly. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accept">
accept attribute definition </a> in HTML 4.0.
@short A comma-separated list of content types that a server processing this form will handle correctly.
*/
public native String accept();
/**
see accept
@short see accept
*/
public native void setAccept(String arg1);
/**
A single character access key to give access to the form
control. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey">
accesskey attribute definition </a> in HTML 4.0.
@short A single character access key to give access to the form control.
*/
public native String accessKey();
/**
see accessKey
@short see accessKey
*/
public native void setAccessKey(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);
/**
Describes whether a radio or check box is checked, when
<code>type</code> has the value "Radio" or "Checkbox". The value is
true if explicitly set. Represents the current state of the
checkbox or radio button. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-checked">
checked attribute definition </a> in HTML 4.0.
@short Describes whether a radio or check box is checked, when <code>type</code> has the value "Radio" or "Checkbox".
*/
public native boolean checked();
/**
see checked
@short see checked
*/
public native void setChecked(boolean arg1);
/**
The control is unavailable in this context. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled">
disabled attribute definition </a> in HTML 4.0.
@short The control is unavailable in this context.
*/
public native boolean disabled();
/**
see disabled
@short see disabled
*/
public native void setDisabled(boolean arg1);
/**
Maximum number of characters for text fields, when <code>type</code>
has the value "Text" or "Password". See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-maxlength">
maxlength attribute definition </a> in HTML 4.0.
@short Maximum number of characters for text fields, when <code>type</code> has the value "Text" or "Password".
*/
public native long maxLength();
/**
see maxLength
@short see maxLength
*/
public native void setMaxLength(long arg1);
/**
Form control or object name when submitted with a form. See the
<a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-INPUT">
name attribute definition </a> in HTML 4.0.
@short Form control or object name when submitted with a form.
*/
public native String name();
/**
see name
@short see name
*/
public native void setName(String arg1);
/**
This control is read-only. When <code>type</code> has the
value "text" or "password" only. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-readonly">
readonly attribute definition </a> in HTML 4.0.
@short This control is read-only.
*/
public native boolean readOnly();
/**
see readOnly
@short see readOnly
*/
public native void setReadOnly(boolean arg1);
/**
Size information. The precise meaning is specific to each type
of field. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-size-INPUT">
size attribute definition </a> in HTML 4.0.
@short Size information.
*/
public native long getSize();
/**
see getSize
@short see getSize
*/
public native void setSize(long arg1);
/**
When the <code>type</code> attribute has the value "Image",
this attribute specifies the location of the image to be used
to decorate the graphical submit button. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-src">
src attribute definition </a> in HTML 4.0.
@short When the <code>type</code> attribute has the value "Image", this attribute specifies the location of the image to be used to decorate the graphical submit button.
*/
public native String src();
/**
see src
@short see src
*/
public native void setSrc(String arg1);
/**
Index that represents the element's position in the tabbing
order. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex">
tabindex attribute definition </a> in HTML 4.0.
@short Index that represents the element's position in the tabbing order.
*/
public native long tabIndex();
/**
see tabIndex
@short see tabIndex
*/
public native void setTabIndex(long arg1);
/**
The type of control created. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-type-INPUT">
type attribute definition </a> in HTML 4.0.
@short The type of control created.
*/
public native String type();
/**
see type
@short see type
*/
public native void setType(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);
/**
The current form control value. Used for radio buttons and
check boxes. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-value-INPUT">
value attribute definition </a> in HTML 4.0.
@short The current form control value.
*/
public native String value();
/**
see value
@short see value
*/
public native void setValue(String arg1);
/**
Removes keyboard focus from this element.
@short Removes keyboard focus from this element.
*/
public native void blur();
/**
Gives keyboard focus to this element.
@short Gives keyboard focus to this element.
*/
public native void focus();
/**
Select the contents of the text area. For <code>INPUT</code>
elements whose <code>type</code> attribute has one of the
following values: "Text", "File", or "Password".
@short Select the contents of the text area.
*/
public native void select();
/**
Simulate a mouse-click. For <code>INPUT</code> elements whose
<code>type</code> attribute has one of the following values:
"Button", "Checkbox", "Radio", "Reset", or "Submit".
@short Simulate a mouse-click.
*/
public native void click();
// DOM::HTMLInputElement* HTMLInputElement(DOM::HTMLInputElementImpl* arg1); >>>> NOT CONVERTED
}