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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Element;
import com.google.gwt.user.client.Event;
import com.google.gwt.user.client.ui.HTML;
import com.vaadin.terminal.gwt.client.ui.Icon;
public class ICaption extends HTML {
public static final String CLASSNAME = "i-caption";
private final Paintable owner;
private Element errorIndicatorElement;
private Element requiredFieldIndicator;
private Icon icon;
private Element captionText;
private Element clearElement;
private final ApplicationConnection client;
private boolean placedAfterComponent = false;
private boolean iconOnloadHandled = false;
private int maxWidth = -1;
private static String ATTRIBUTE_ICON = "icon";
private static String ATTRIBUTE_CAPTION = "caption";
private static String ATTRIBUTE_DESCRIPTION = "description";
private static String ATTRIBUTE_REQUIRED = "required";
private static String ATTRIBUTE_ERROR = "error";
private static String ATTRIBUTE_HIDEERRORS = "hideErrors";
/**
*
* @param component
* optional owner of caption. If not set, getOwner will return
* null
* @param client
*/
public ICaption(Paintable component, ApplicationConnection client) {
super();
this.client = client;
owner = component;
setStyleName(CLASSNAME);
sinkEvents(ITooltip.TOOLTIP_EVENTS);
}
/**
* Updates the caption from UIDL.
*
* @param uidl
* @return true if the position where the caption should be placed has
* changed
*/
public boolean updateCaption(UIDL uidl) {
setVisible(!uidl.getBooleanAttribute("invisible"));
boolean wasPlacedAfterComponent = placedAfterComponent;
placedAfterComponent = true;
String style = CLASSNAME;
if (uidl.hasAttribute("style")) {
final String[] styles = uidl.getStringAttribute("style").split(" ");
for (int i = 0; i < styles.length; i++) {
style += " " + CLASSNAME + "-" + styles[i];
}
}
if (uidl.hasAttribute("disabled")) {
style += " " + "i-disabled";
}
setStyleName(style);
if (uidl.hasAttribute(ATTRIBUTE_ICON)) {
if (icon == null) {
icon = new Icon(client);
icon.setWidth("0px");
icon.setHeight("0px");
DOM.insertChild(getElement(), icon.getElement(),
getInsertPosition(ATTRIBUTE_ICON));
}
placedAfterComponent = false;
iconOnloadHandled = false;
icon.setUri(uidl.getStringAttribute(ATTRIBUTE_ICON));
} else if (icon != null) {
// Remove existing
DOM.removeChild(getElement(), icon.getElement());
icon = null;
}
if (uidl.hasAttribute(ATTRIBUTE_CAPTION)) {
if (captionText == null) {
captionText = DOM.createDiv();
captionText.setClassName("i-captiontext");
DOM.insertChild(getElement(), captionText,
getInsertPosition(ATTRIBUTE_CAPTION));
}
// Update caption text
String c = uidl.getStringAttribute(ATTRIBUTE_CAPTION);
if (c == null) {
c = "";
} else {
placedAfterComponent = false;
}
DOM.setInnerText(captionText, c);
} else if (captionText != null) {
// Remove existing
DOM.removeChild(getElement(), captionText);
captionText = null;
}
if (uidl.hasAttribute(ATTRIBUTE_DESCRIPTION)) {
if (captionText != null) {
addStyleDependentName("hasdescription");
} else {
removeStyleDependentName("hasdescription");
}
}
if (uidl.getBooleanAttribute(ATTRIBUTE_REQUIRED)) {
if (requiredFieldIndicator == null) {
requiredFieldIndicator = DOM.createDiv();
requiredFieldIndicator
.setClassName("i-required-field-indicator");
DOM.setInnerText(requiredFieldIndicator, "*");
DOM.insertChild(getElement(), requiredFieldIndicator,
getInsertPosition(ATTRIBUTE_REQUIRED));
}
} else if (requiredFieldIndicator != null) {
// Remove existing
DOM.removeChild(getElement(), requiredFieldIndicator);
requiredFieldIndicator = null;
}
if (uidl.hasAttribute(ATTRIBUTE_ERROR)
&& !uidl.getBooleanAttribute(ATTRIBUTE_HIDEERRORS)) {
if (errorIndicatorElement == null) {
errorIndicatorElement = DOM.createDiv();
DOM.setInnerHTML(errorIndicatorElement, " ");
DOM.setElementProperty(errorIndicatorElement, "className",
"i-errorindicator");
DOM.insertChild(getElement(), errorIndicatorElement,
getInsertPosition(ATTRIBUTE_ERROR));
}
} else if (errorIndicatorElement != null) {
// Remove existing
DOM.removeChild(getElement(), errorIndicatorElement);
errorIndicatorElement = null;
}
if (clearElement == null) {
clearElement = DOM.createDiv();
DOM.setStyleAttribute(clearElement, "clear", "both");
DOM.setStyleAttribute(clearElement, "width", "0px");
DOM.setStyleAttribute(clearElement, "height", "0px");
DOM.setStyleAttribute(clearElement, "overflow", "hidden");
DOM.appendChild(getElement(), clearElement);
}
return (wasPlacedAfterComponent != placedAfterComponent);
}
private int getInsertPosition(String element) {
int pos = 0;
if (element.equals(ATTRIBUTE_ICON)) {
return pos;
}
if (icon != null) {
pos++;
}
if (element.equals(ATTRIBUTE_CAPTION)) {
return pos;
}
if (captionText != null) {
pos++;
}
if (element.equals(ATTRIBUTE_REQUIRED)) {
return pos;
}
if (requiredFieldIndicator != null) {
pos++;
}
// if (element.equals(ATTRIBUTE_ERROR)) {
// }
return pos;
}
@Override
public void onBrowserEvent(Event event) {
super.onBrowserEvent(event);
final Element target = DOM.eventGetTarget(event);
if (client != null && owner != null && target != getElement()) {
client.handleTooltipEvent(event, owner);
}
if (DOM.eventGetType(event) == Event.ONLOAD
&& icon.getElement() == target && !iconOnloadHandled) {
icon.setWidth("");
icon.setHeight("");
/*
* IE6 pngFix causes two onload events to be fired and we want to
* react only to the first one
*/
iconOnloadHandled = true;
// if max width defined, recalculate
if (maxWidth != -1) {
setMaxWidth(maxWidth);
} else {
String width = getElement().getStyle().getProperty("width");
if (width != null && !width.equals("")) {
setWidth(getRequiredWidth() + "px");
}
}
/*
* The size of the icon might affect the size of the component so we
* must report the size change to the parent TODO consider moving
* the responsibility of reacting to ONLOAD from ICaption to layouts
*/
if (owner != null) {
Util.notifyParentOfSizeChange(owner, true);
} else {
ApplicationConnection
.getConsole()
.log(
"Warning: Icon load event was not propagated because ICaption owner is unknown.");
}
}
}
public static boolean isNeeded(UIDL uidl) {
if (uidl.getStringAttribute(ATTRIBUTE_CAPTION) != null) {
return true;
}
if (uidl.hasAttribute(ATTRIBUTE_ERROR)) {
return true;
}
if (uidl.hasAttribute(ATTRIBUTE_ICON)) {
return true;
}
if (uidl.hasAttribute(ATTRIBUTE_REQUIRED)) {
return true;
}
return false;
}
/**
* Returns Paintable for which this Caption belongs to.
*
* @return owner Widget
*/
public Paintable getOwner() {
return owner;
}
public boolean shouldBePlacedAfterComponent() {
return placedAfterComponent;
}
public int getRenderedWidth() {
int width = 0;
if (icon != null) {
width += Util.getRequiredWidth(icon.getElement());
}
if (captionText != null) {
width += Util.getRequiredWidth(captionText);
}
if (requiredFieldIndicator != null) {
width += Util.getRequiredWidth(requiredFieldIndicator);
}
if (errorIndicatorElement != null) {
width += Util.getRequiredWidth(errorIndicatorElement);
}
return width;
}
public int getRequiredWidth() {
int width = 0;
if (icon != null) {
width += Util.getRequiredWidth(icon.getElement());
}
if (captionText != null) {
int textWidth = captionText.getScrollWidth();
if (BrowserInfo.get().isFF3()) {
/*
* In Firefox3 the caption might require more space than the
* scrollWidth returns as scrollWidth is rounded down.
*/
int requiredWidth = Util.getRequiredWidth(captionText);
if (requiredWidth > textWidth) {
textWidth = requiredWidth;
}
}
width += textWidth;
}
if (requiredFieldIndicator != null) {
width += Util.getRequiredWidth(requiredFieldIndicator);
}
if (errorIndicatorElement != null) {
width += Util.getRequiredWidth(errorIndicatorElement);
}
return width;
}
public int getHeight() {
int height = 0;
int h;
if (icon != null) {
h = icon.getOffsetHeight();
if (h > height) {
height = h;
}
}
if (captionText != null) {
h = captionText.getOffsetHeight();
if (h > height) {
height = h;
}
}
if (requiredFieldIndicator != null) {
h = requiredFieldIndicator.getOffsetHeight();
if (h > height) {
height = h;
}
}
if (errorIndicatorElement != null) {
h = errorIndicatorElement.getOffsetHeight();
if (h > height) {
height = h;
}
}
return height;
}
public void setAlignment(String alignment) {
DOM.setStyleAttribute(getElement(), "textAlign", alignment);
}
public void setMaxWidth(int maxWidth) {
this.maxWidth = maxWidth;
DOM.setStyleAttribute(getElement(), "width", maxWidth + "px");
if (icon != null) {
DOM.setStyleAttribute(icon.getElement(), "width", "");
}
if (captionText != null) {
DOM.setStyleAttribute(captionText, "width", "");
}
int requiredWidth = getRequiredWidth();
/*
* ApplicationConnection.getConsole().log( "Caption maxWidth: " +
* maxWidth + ", requiredWidth: " + requiredWidth);
*/
if (requiredWidth > maxWidth) {
// Needs to truncate and clip
int availableWidth = maxWidth;
// DOM.setStyleAttribute(getElement(), "width", maxWidth + "px");
if (requiredFieldIndicator != null) {
availableWidth -= Util.getRequiredWidth(requiredFieldIndicator);
}
if (errorIndicatorElement != null) {
availableWidth -= Util.getRequiredWidth(errorIndicatorElement);
}
if (availableWidth < 0) {
availableWidth = 0;
}
if (icon != null) {
int iconRequiredWidth = Util
.getRequiredWidth(icon.getElement());
if (availableWidth > iconRequiredWidth) {
availableWidth -= iconRequiredWidth;
} else {
DOM.setStyleAttribute(icon.getElement(), "width",
availableWidth + "px");
availableWidth = 0;
}
}
if (captionText != null) {
int captionWidth = Util.getRequiredWidth(captionText);
if (availableWidth > captionWidth) {
availableWidth -= captionWidth;
} else {
DOM.setStyleAttribute(captionText, "width", availableWidth
+ "px");
availableWidth = 0;
}
}
}
}
protected Element getTextElement() {
return captionText;
}
}
|