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
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.itmill.toolkit.ui;
import java.util.Iterator;
import java.util.Map;
import com.itmill.toolkit.terminal.PaintException;
import com.itmill.toolkit.terminal.PaintTarget;
import com.itmill.toolkit.terminal.gwt.client.RenderInformation.Size;
/**
* SplitPanel.
*
* <code>SplitPanel</code> is a component container, that can contain two
* components (possibly containers) which are split by divider element.
*
* @author IT Mill Ltd.
* @version
* @VERSION@
* @since 5.0
*/
public class SplitPanel extends AbstractLayout {
/* Predefined orientations */
/**
* Components are to be layed out vertically.
*/
public static final int ORIENTATION_VERTICAL = 0;
/**
* Components are to be layed out horizontally.
*/
public static final int ORIENTATION_HORIZONTAL = 1;
private Component firstComponent;
private Component secondComponent;
/**
* Orientation of the layout.
*/
private int orientation;
private int pos = 50;
private int posUnit = UNITS_PERCENTAGE;
private boolean locked = false;
/**
* Creates a new split panel. The orientation of the panels is
* <code>ORIENTATION_VERTICAL</code>.
*/
public SplitPanel() {
orientation = ORIENTATION_VERTICAL;
setSizeFull();
}
/**
* Create a new split panels. The orientation of the panel is given as
* parameters.
*
* @param orientation
* the Orientation of the layout.
*/
public SplitPanel(int orientation) {
this();
setOrientation(orientation);
}
/**
* Gets the component UIDL tag.
*
* @return the Component UIDL tag as string.
*/
@Override
public String getTag() {
if (orientation == ORIENTATION_HORIZONTAL) {
return "hsplitpanel";
} else {
return "vsplitpanel";
}
}
/**
* Add a component into this container. The component is added to the right
* or under the previous component.
*
* @param c
* the component to be added.
*/
@Override
public void addComponent(Component c) {
if (firstComponent == null) {
firstComponent = c;
} else if (secondComponent == null) {
secondComponent = c;
} else {
throw new UnsupportedOperationException(
"Split panel can contain only two components");
}
super.addComponent(c);
requestRepaint();
}
public void setFirstComponent(Component c) {
if (firstComponent != null) {
// detach old
removeComponent(firstComponent);
}
firstComponent = c;
super.addComponent(c);
}
public void setSecondComponent(Component c) {
if (secondComponent != null) {
// detach old
removeComponent(secondComponent);
}
secondComponent = c;
super.addComponent(c);
}
/**
* Removes the component from this container.
*
* @param c
* the component to be removed.
*/
@Override
public void removeComponent(Component c) {
super.removeComponent(c);
if (c == firstComponent) {
firstComponent = null;
} else {
secondComponent = null;
}
requestRepaint();
}
/**
* Gets the component container iterator for going trough all the components
* in the container.
*
* @return the Iterator of the components inside the container.
*/
public Iterator getComponentIterator() {
return new Iterator() {
int i = 0;
public boolean hasNext() {
if (i < (firstComponent == null ? 0 : 1)
+ (secondComponent == null ? 0 : 1)) {
return true;
}
return false;
}
public Object next() {
if (!hasNext()) {
return null;
}
i++;
if (i == 1) {
return firstComponent == null ? secondComponent
: firstComponent;
} else if (i == 2) {
return secondComponent;
}
return null;
}
public void remove() {
if (i == 1) {
if (firstComponent != null) {
setFirstComponent(null);
i = 0;
} else {
setSecondComponent(null);
}
} else if (i == 2) {
setSecondComponent(null);
}
}
};
}
/**
* Paints the content of this component.
*
* @param target
* the Paint Event.
* @throws PaintException
* if the paint operation failed.
*/
@Override
public void paintContent(PaintTarget target) throws PaintException {
super.paintContent(target);
final String position = pos + UNIT_SYMBOLS[posUnit];
target.addAttribute("position", position);
if (isLocked()) {
target.addAttribute("locked", true);
}
if (firstComponent != null) {
firstComponent.paint(target);
} else {
VerticalLayout temporaryComponent = new VerticalLayout();
temporaryComponent.setParent(this);
temporaryComponent.paint(target);
}
if (secondComponent != null) {
secondComponent.paint(target);
} else {
VerticalLayout temporaryComponent = new VerticalLayout();
temporaryComponent.setParent(this);
temporaryComponent.paint(target);
}
}
/**
* Gets the orientation of the container.
*
* @return the Value of property orientation.
*/
public int getOrientation() {
return orientation;
}
/**
* Set the orientation of the container.
*
* @param orientation
* the New value of property orientation.
*/
public void setOrientation(int orientation) {
// Checks the validity of the argument
if (orientation < ORIENTATION_VERTICAL
|| orientation > ORIENTATION_HORIZONTAL) {
throw new IllegalArgumentException();
}
this.orientation = orientation;
requestRepaint();
}
/* Documented in superclass */
public void replaceComponent(Component oldComponent, Component newComponent) {
if (oldComponent == firstComponent) {
setFirstComponent(newComponent);
} else if (oldComponent == secondComponent) {
setSecondComponent(newComponent);
}
requestRepaint();
}
/**
* Moves the position of the splitter.
*
* @param pos
* the new size of the first region in persentage
*/
public void setSplitPosition(int pos) {
setSplitPosition(pos, UNITS_PERCENTAGE);
}
/**
* Moves the position of the splitter with given position and unit.
*
* @param pos
* size of the first region
* @param unit
* the unit (from {@link Size}) in which the size is given.
*/
public void setSplitPosition(int pos, int unit) {
this.pos = pos;
posUnit = unit;
requestRepaint();
}
/**
* Lock the SplitPanels position, disabling the user from dragging the split
* handle.
*
* @param locked
* Set <code>true</code> if locked, <code>false</code> otherwise.
*/
public void setLocked(boolean locked) {
this.locked = locked;
requestRepaint();
}
/**
* Is the SplitPanel handle locked (user not allowed to change split
* position by dragging).
*
* @return <code>true</code> if locked, <code>false</code> otherwise.
*/
public boolean isLocked() {
return locked;
}
/*
* Invoked when a variable of the component changes. Don't add a JavaDoc
* comment here, we use the default documentation from implemented
* interface.
*/
@Override
public void changeVariables(Object source, Map variables) {
super.changeVariables(source, variables);
if (variables.containsKey("position") && !isLocked()) {
Integer newPos = (Integer) variables.get("position");
// Client always sends pixel values
setSplitPosition(newPos, UNITS_PIXELS);
}
}
}
|