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
|
/* *************************************************************************
IT Mill Toolkit
Development of Browser User Interfaces Made Easy
Copyright (C) 2000-2006 IT Mill Ltd
*************************************************************************
This product is distributed under commercial license that can be found
from the product package on license/license.txt. Use of this product might
require purchasing a commercial license from IT Mill Ltd. For guidelines
on usage, see license/licensing-guidelines.html
*************************************************************************
For more information, contact:
IT Mill Ltd phone: +358 2 4802 7180
Ruukinkatu 2-4 fax: +358 2 4802 7181
20540, Turku email: info@itmill.com
Finland company www: www.itmill.com
Primary source for information and releases: www.itmill.com
********************************************************************** */
package com.itmill.toolkit.ui;
import java.util.Hashtable;
import java.util.Iterator;
import com.itmill.toolkit.terminal.PaintException;
import com.itmill.toolkit.terminal.PaintTarget;
import com.itmill.toolkit.terminal.Resource;
import com.itmill.toolkit.terminal.Sizeable;
/** Component for embedding external objects.
*
* @author IT Mill Ltd.
* @version @VERSION@
* @since 3.0
*/
public class Embedded extends AbstractComponent implements Sizeable {
/** General object type */
public static final int TYPE_OBJECT = 0;
/** Image types */
public static final int TYPE_IMAGE = 1;
/** Type of the object */
private int type = TYPE_OBJECT;
/** Source of the embedded object */
private Resource source = null;
/** Dimensions of the object. */
private int width = -1;
private int height = -1;
private int widthUnits = Sizeable.UNITS_PIXELS;
private int heightUnits = Sizeable.UNITS_PIXELS;
/** Generic object attributes */
private String mimeType = null;
private String standby = null;
/** Hash of object parameteres. */
private Hashtable parameters = new Hashtable();
/** Applet or other client side runnable properties. */
private String codebase = null;
private String codetype = null;
private String classId = null;
private String archive = null;
/** Creates a new empty Embedded object.
*/
public Embedded() {
}
/** Creates a new empty Embedded object with caption.
*/
public Embedded(String caption) {
setCaption(caption);
}
/** Creates a new Embedded object whose contents is loaded from given resource.
* The dimensions are assumed if possible. The type is guessed from resource.
*/
public Embedded(String caption, Resource source) {
setCaption(caption);
setSource(source);
}
/** Get component UIDL tag.
* @return Component UIDL tag as string.
*/
public String getTag() {
return "embedded";
}
/** Invoked when the component state should be painted */
public void paintContent(PaintTarget target) throws PaintException {
if (type == TYPE_IMAGE) {
target.addAttribute("type", "image");
}
if (source != null)
target.addAttribute("src", source);
// Dimensions
if (width > 0)
target.addAttribute(
"width",
"" + width + Sizeable.UNIT_SYMBOLS[this.widthUnits]);
if (height > 0)
target.addAttribute(
"height",
"" + height + Sizeable.UNIT_SYMBOLS[this.heightUnits]);
if (mimeType != null && !"".equals(mimeType))
target.addAttribute("mimetype", mimeType);
if (classId != null && !"".equals(classId))
target.addAttribute("classid", classId);
if (codebase != null && !"".equals(codebase))
target.addAttribute("codebase", codebase);
if (codetype != null && !"".equals(codetype))
target.addAttribute("codetype", codetype);
if (standby != null && !"".equals(standby))
target.addAttribute("standby", standby);
if (archive != null && !"".equals(archive))
target.addAttribute("archive", archive);
// Params
for (Iterator i = this.getParameterNames(); i.hasNext();) {
target.startTag("embeddedparam");
String key = (String) i.next();
target.addAttribute("name", key);
target.addAttribute("value", (String) getParameter(key));
target.endTag("embeddedparam");
}
}
/** Set an object parameter.
* Parameters are optional information, and they are passed to the
* instantiated object. Parameters are are stored as name value pairs.
* This overrides the previous value assigned to this parameter.
* @param name - The name of the parameter.
* @param value - The value of the parameter.
*/
public void setParameter(String name, String value) {
parameters.put(name, value);
requestRepaint();
}
/** Get the value of an object parameter.
* Parameters are optional information, and they are passed to the
* instantiated object. Parameters are are stored as name value pairs.
* @return Value of parameter or null if not found.
*/
public String getParameter(String name) {
return (String) parameters.get(name);
}
/** Remove an object parameter from the list.
* @param name - The name of the parameter to remove.
*/
public void removeParameter(String name) {
parameters.remove(name);
requestRepaint();
}
/** Get embedded object parameter names.
* @return Iterator of parameters names.
*/
public Iterator getParameterNames() {
return parameters.keySet().iterator();
}
/**
* Returns the codebase, the root-path used to access resources with relative paths.
* @return String
*/
public String getCodebase() {
return codebase;
}
/**
* Returns the MIME-Type of the code.
* @return String
*/
public String getCodetype() {
return codetype;
}
/**
* Returns the MIME-Type of the object
* @return String
*/
public String getMimeType() {
return mimeType;
}
/**
* Returns the standby text displayed when
* the object is loading.
* @return String
*/
public String getStandby() {
return standby;
}
/**
* Sets the codebase, the root-path used to access resources with relative paths.
* @param codebase The codebase to set
*/
public void setCodebase(String codebase) {
if (codebase != this.codebase
|| (codebase != null && !codebase.equals(this.codebase))) {
this.codebase = codebase;
requestRepaint();
}
}
/**
* Sets the codetype, the MIME-Type of the code.
* @param codetype The codetype to set
*/
public void setCodetype(String codetype) {
if (codetype != this.codetype
|| (codetype != null && !codetype.equals(this.codetype))) {
this.codetype = codetype;
requestRepaint();
}
}
/**
* Sets the mimeType, the MIME-Type of the object.
* @param mimeType The mimeType to set
*/
public void setMimeType(String mimeType) {
if (mimeType != this.mimeType
|| (mimeType != null && !mimeType.equals(this.mimeType))) {
this.mimeType = mimeType;
requestRepaint();
}
}
/**
* Sets the standby, the text to display while loading the object.
* @param standby The standby to set
*/
public void setStandby(String standby) {
if (standby != this.standby
|| (standby != null && !standby.equals(this.standby))) {
this.standby = standby;
requestRepaint();
}
}
/**
* Returns the visual height of the object.
* Default height is -1, which is interpreted as "unspecified".
* @return The height in units specified by heightUnits property.
*/
public int getHeight() {
return height;
}
/**
* Returns the visual width of the object.
* Default width is -1, which is interpreted as "unspecified".
* @return The width in units specified by widthUnits property.
*/
public int getWidth() {
return width;
}
/** Sets the visual height of the object.
* Default height is -1, which is interpreted as "unspecified".
* @param height The height in units specified by heightUnits property.
*/
public void setHeight(int height) {
if (this.height != height) {
this.height = height;
requestRepaint();
}
}
/** Sets the visual width of the object.
* Default width is -1, which is interpreted as "unspecified".
* @param width The width in units specified by widthUnits property.
*/
public void setWidth(int width) {
if (this.width != width) {
this.width = width;
requestRepaint();
}
}
/**
* Returns the classId attribute.
* @return String
*/
public String getClassId() {
return classId;
}
/**
* Sets the classId attribute.
* @param classId The classId to set
*/
public void setClassId(String classId) {
if (classId != this.classId
|| (classId != null && !classId.equals(classId))) {
this.classId = classId;
requestRepaint();
}
}
/** Get the resource contained in the embedded object.
* @return Resource
*/
public Resource getSource() {
return source;
}
/** Get the type of the embedded object.
* <p>This can be one of the following:<ul>
* <li>TYPE_OBJECT <i>(This is the default)</i>
* <li>TYPE_IMAGE
* </ul>
* </p>
* @return int
*/
public int getType() {
return type;
}
/** Set the object source resource.
* The dimensions are assumed if possible.
* The type is guessed from resource.
* @param source The source to set
*/
public void setSource(Resource source) {
if (source != null && !source.equals(this.source)) {
this.source = source;
String mt = source.getMIMEType();
if ((mt.substring(0, mt.indexOf("/")).equalsIgnoreCase("image"))) {
type = TYPE_IMAGE;
} else {
type = TYPE_OBJECT;
}
requestRepaint();
}
}
/** Sets the object type.
* <p>This can be one of the following:<ul>
* <li>TYPE_OBJECT <i>(This is the default)</i>
* <li>TYPE_IMAGE
* </ul>
* </p>
* @param type The type to set
*/
public void setType(int type) {
if (type != TYPE_OBJECT && type != TYPE_IMAGE)
throw new IllegalArgumentException("Unsupported type");
if (type != this.type) {
this.type = type;
requestRepaint();
}
}
/**
* Returns the archive attribute.
* @return String
*/
public String getArchive() {
return archive;
}
/**
* Sets the archive attribute.
* @param archive The archive string to set
*/
public void setArchive(String archive) {
if (archive != this.archive
|| (archive != null && !archive.equals(this.archive))) {
this.archive = archive;
requestRepaint();
}
}
/**Get height property units.
* Default units are <code>Sizeable.UNITS_PIXELS</code>.
* @see com.itmill.toolkit.terminal.Sizeable#getHeightUnits()
*/
public int getHeightUnits() {
return this.heightUnits;
}
/**Get width property units.
* Default units are <code>Sizeable.UNITS_PIXELS</code>.
* @see com.itmill.toolkit.terminal.Sizeable#getWidthUnits()
*/
public int getWidthUnits() {
return this.widthUnits;
}
/**Set height property units.
* @see com.itmill.toolkit.terminal.Sizeable#setHeightUnits(int)
*/
public void setHeightUnits(int units) {
if (units >= 0 && units <= Sizeable.UNITS_PERCENTAGE && this.heightUnits != units) {
this.heightUnits = units;
requestRepaint();
}
}
/**Set width property units.
* @see com.itmill.toolkit.terminal.Sizeable#setWidthUnits(int)
*/
public void setWidthUnits(int units) {
if (units >= 0 && units <= Sizeable.UNITS_PERCENTAGE && this.widthUnits != units) {
this.widthUnits = units;
requestRepaint();
}
}
}
|