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
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal;
import java.io.Serializable;
/**
* Interface to be implemented by components wishing to display some object that
* may be dynamically resized during runtime.
*
* @author Vaadin Ltd.
* @version
* @VERSION@
* @since 3.0
*/
public interface Sizeable extends Serializable {
/**
* @deprecated from 7.0, use {@link Unit#PIXELS} instead
*/
@Deprecated
public static final Unit UNITS_PIXELS = Unit.PIXELS;
/**
* @deprecated from 7.0, use {@link Unit#POINTS} instead
*/
@Deprecated
public static final Unit UNITS_POINTS = Unit.POINTS;
/**
* @deprecated from 7.0, use {@link Unit#PICAS} instead
*/
@Deprecated
public static final Unit UNITS_PICAS = Unit.PICAS;
/**
* @deprecated from 7.0, use {@link Unit#EM} instead
*/
@Deprecated
public static final Unit UNITS_EM = Unit.EM;
/**
* @deprecated from 7.0, use {@link Unit#EX} instead
*/
@Deprecated
public static final Unit UNITS_EX = Unit.EX;
/**
* @deprecated from 7.0, use {@link Unit#MM} instead
*/
@Deprecated
public static final Unit UNITS_MM = Unit.MM;
/**
* @deprecated from 7.0, use {@link Unit#CM} instead
*/
@Deprecated
public static final Unit UNITS_CM = Unit.CM;
/**
* @deprecated from 7.0, use {@link Unit#INCH} instead
*/
@Deprecated
public static final Unit UNITS_INCH = Unit.INCH;
/**
* @deprecated from 7.0, use {@link Unit#PERCENTAGE} instead
*/
@Deprecated
public static final Unit UNITS_PERCENTAGE = Unit.PERCENTAGE;
public static final float SIZE_UNDEFINED = -1;
public enum Unit {
/**
* Unit code representing pixels.
*/
PIXELS("px"),
/**
* Unit code representing points (1/72nd of an inch).
*/
POINTS("pt"),
/**
* Unit code representing picas (12 points).
*/
PICAS("pc"),
/**
* Unit code representing the font-size of the relevant font.
*/
EM("em"),
/**
* Unit code representing the x-height of the relevant font.
*/
EX("ex"),
/**
* Unit code representing millimeters.
*/
MM("mm"),
/**
* Unit code representing centimeters.
*/
CM("cm"),
/**
* Unit code representing inches.
*/
INCH("in"),
/**
* Unit code representing in percentage of the containing element
* defined by terminal.
*/
PERCENTAGE("%");
private String symbol;
private Unit(String symbol) {
this.symbol = symbol;
}
public String getSymbol() {
return symbol;
}
@Override
public String toString() {
return symbol;
}
public static Unit getUnitFromSymbol(String symbol) {
if (symbol == null) {
return Unit.PIXELS; // Defaults to pixels
}
for (Unit unit : Unit.values()) {
if (symbol.equals(unit.getSymbol())) {
return unit;
}
}
return Unit.PIXELS; // Defaults to pixels
}
}
/**
* Gets the width of the object. Negative number implies unspecified size
* (terminal is free to set the size).
*
* @return width of the object in units specified by widthUnits property.
*/
public float getWidth();
/**
* Gets the height of the object. Negative number implies unspecified size
* (terminal is free to set the size).
*
* @return height of the object in units specified by heightUnits property.
*/
public float getHeight();
/**
* Gets the width property units.
*
* @return units used in width property.
*/
public Unit getWidthUnits();
/**
* Gets the height property units.
*
* @return units used in height property.
*/
public Unit getHeightUnits();
/**
* Sets the height of the component using String presentation.
*
* String presentation is similar to what is used in Cascading Style Sheets.
* Size can be length or percentage of available size.
*
* The empty string ("") or null will unset the height and set the units to
* pixels.
*
* See <a
* href="http://www.w3.org/TR/REC-CSS2/syndata.html#value-def-length">CSS
* specification</a> for more details.
*
* @param height
* in CSS style string representation
*/
public void setHeight(String height);
/**
* Sets the width of the object. Negative number implies unspecified size
* (terminal is free to set the size).
*
* @param width
* the width of the object.
* @param unit
* the unit used for the width.
*/
public void setWidth(float width, Unit unit);
/**
* Sets the height of the object. Negative number implies unspecified size
* (terminal is free to set the size).
*
* @param height
* the height of the object.
* @param unit
* the unit used for the width.
*/
public void setHeight(float height, Unit unit);
/**
* Sets the width of the component using String presentation.
*
* String presentation is similar to what is used in Cascading Style Sheets.
* Size can be length or percentage of available size.
*
* The empty string ("") or null will unset the width and set the units to
* pixels.
*
* See <a
* href="http://www.w3.org/TR/REC-CSS2/syndata.html#value-def-length">CSS
* specification</a> for more details.
*
* @param width
* in CSS style string representation, null or empty string to
* reset
*/
public void setWidth(String width);
/**
* Sets the size to 100% x 100%.
*/
public void setSizeFull();
/**
* Clears any size settings.
*/
public void setSizeUndefined();
}
|