summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLButtonElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLButtonElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLButtonElement.java120
1 files changed, 120 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLButtonElement.java b/kdejava/koala/org/kde/koala/HTMLButtonElement.java
new file mode 100644
index 00000000..7468fd4e
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLButtonElement.java
@@ -0,0 +1,120 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Push button. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-BUTTON">
+ BUTTON element definition </a> in HTML 4.0.
+ @short Push button.
+
+*/
+public class HTMLButtonElement extends HTMLElement {
+ protected HTMLButtonElement(Class dummy){super((Class) null);}
+ public HTMLButtonElement() {
+ super((Class) null);
+ newHTMLButtonElement();
+ }
+ private native void newHTMLButtonElement();
+ public HTMLButtonElement(HTMLButtonElement other) {
+ super((Class) null);
+ newHTMLButtonElement(other);
+ }
+ private native void newHTMLButtonElement(HTMLButtonElement other);
+ public HTMLButtonElement(Node other) {
+ super((Class) null);
+ newHTMLButtonElement(other);
+ }
+ private native void newHTMLButtonElement(Node other);
+ /**
+ Returns the <code>FORM</code> element containing this
+ control. Returns null if this control is not within the context
+ of a form.
+ @short Returns the <code>FORM</code> element containing this control.
+ */
+ public native HTMLFormElement formElement();
+ /**
+ 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);
+ /**
+ 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);
+ /**
+ 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-BUTTON">
+ 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);
+ /**
+ 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 button. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-type-BUTTON">
+ type attribute definition </a> in HTML 4.0.
+ @short The type of button.
+ */
+ public native String type();
+ /**
+ The current form control value. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-value-BUTTON">
+ 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();
+ // DOM::HTMLButtonElement* HTMLButtonElement(DOM::HTMLButtonElementImpl* arg1); >>>> NOT CONVERTED
+}