summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLButtonElement.java
blob: 7468fd4e4d547980e2fd5bc888275b5377116e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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
}