1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.common.ui.client.widgets; |
17 | |
|
18 | |
import org.kuali.student.common.ui.client.util.DebugIdUtils; |
19 | |
import org.kuali.student.common.ui.client.widgets.impl.KSButtonImpl; |
20 | |
|
21 | |
import com.google.gwt.core.client.GWT; |
22 | |
import com.google.gwt.event.dom.client.ClickHandler; |
23 | |
import com.google.gwt.event.dom.client.MouseOutHandler; |
24 | |
import com.google.gwt.event.dom.client.MouseOverHandler; |
25 | |
import com.google.gwt.event.shared.HandlerRegistration; |
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
public class KSButton extends KSButtonAbstract { |
37 | |
|
38 | 0 | KSButtonAbstract button = GWT.create(KSButtonImpl.class); |
39 | |
|
40 | |
public boolean isEnabled() { |
41 | 0 | return button.isEnabled(); |
42 | |
} |
43 | |
|
44 | |
public void setEnabled(boolean enabled) { |
45 | 0 | button.setEnabled(enabled); |
46 | 0 | } |
47 | |
|
48 | 0 | public KSButton() { |
49 | 0 | this.init(); |
50 | 0 | this.initWidget(button); |
51 | 0 | } |
52 | |
|
53 | 0 | public KSButton(String text, ClickHandler handler) { |
54 | 0 | this.init(text, handler); |
55 | 0 | this.initWidget(button); |
56 | 0 | button.ensureDebugId(DebugIdUtils.createWebDriverSafeDebugId(text)); |
57 | 0 | } |
58 | |
|
59 | 0 | public KSButton(String text) { |
60 | 0 | this.init(text); |
61 | 0 | this.initWidget(button); |
62 | 0 | button.ensureDebugId(DebugIdUtils.createWebDriverSafeDebugId(text)); |
63 | 0 | } |
64 | |
|
65 | 0 | public KSButton(String text, ButtonStyle style) { |
66 | 0 | this.init(text, style); |
67 | 0 | this.initWidget(button); |
68 | 0 | button.ensureDebugId(DebugIdUtils.createWebDriverSafeDebugId(text)); |
69 | 0 | } |
70 | |
|
71 | 0 | public KSButton(String text, ButtonStyle style, ClickHandler handler) { |
72 | 0 | this.init(text, style, handler); |
73 | 0 | this.initWidget(button); |
74 | 0 | button.ensureDebugId(DebugIdUtils.createWebDriverSafeDebugId(text)); |
75 | 0 | } |
76 | |
|
77 | |
public void setText(String text) { |
78 | 0 | button.setText(text); |
79 | 0 | } |
80 | |
|
81 | |
@Override |
82 | |
public HandlerRegistration addClickHandler(ClickHandler handler) { |
83 | 0 | return button.addClickHandler(handler); |
84 | |
} |
85 | |
|
86 | |
@Override |
87 | |
public HandlerRegistration addMouseOverHandler(MouseOverHandler handler) { |
88 | 0 | return button.addMouseOverHandler(handler); |
89 | |
} |
90 | |
|
91 | |
@Override |
92 | |
public HandlerRegistration addMouseOutHandler(MouseOutHandler handler) { |
93 | 0 | return button.addMouseOutHandler(handler); |
94 | |
} |
95 | |
|
96 | |
@Override |
97 | |
public void init() { |
98 | 0 | button.init(); |
99 | 0 | } |
100 | |
|
101 | |
@Override |
102 | |
public void init(String text) { |
103 | 0 | button.init(text); |
104 | 0 | } |
105 | |
|
106 | |
@Override |
107 | |
public void init(String text, ButtonStyle style) { |
108 | 0 | button.init(text, style); |
109 | 0 | } |
110 | |
|
111 | |
public void init(String text, ButtonStyle style, ClickHandler handler) { |
112 | 0 | button.init(text, style, handler); |
113 | 0 | } |
114 | |
|
115 | |
@Override |
116 | |
public void init(String text, ClickHandler handler) { |
117 | 0 | button.init(text, handler); |
118 | 0 | } |
119 | |
|
120 | |
@Override |
121 | |
public void addStyleName(String style) { |
122 | 0 | button.addStyleName(style); |
123 | 0 | } |
124 | |
|
125 | |
@Override |
126 | |
public void removeStyleName(String style) { |
127 | 0 | button.removeStyleName(style); |
128 | 0 | } |
129 | |
|
130 | |
@Override |
131 | |
public void setStyleName(String style) { |
132 | 0 | button.setStyleName(style); |
133 | 0 | } |
134 | |
|
135 | |
@Override |
136 | |
protected void onEnsureDebugId(String baseID) { |
137 | 0 | button.ensureDebugId(baseID); |
138 | 0 | } |
139 | |
|
140 | |
|
141 | |
|
142 | |
} |