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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client.ui;
import java.util.Set;
import com.google.gwt.dom.client.NativeEvent;
import com.google.gwt.dom.client.Node;
import com.google.gwt.event.dom.client.DomEvent.Type;
import com.google.gwt.event.dom.client.TouchCancelEvent;
import com.google.gwt.event.dom.client.TouchCancelHandler;
import com.google.gwt.event.dom.client.TouchEndEvent;
import com.google.gwt.event.dom.client.TouchEndHandler;
import com.google.gwt.event.dom.client.TouchMoveEvent;
import com.google.gwt.event.dom.client.TouchMoveHandler;
import com.google.gwt.event.dom.client.TouchStartEvent;
import com.google.gwt.event.dom.client.TouchStartHandler;
import com.google.gwt.event.shared.EventHandler;
import com.google.gwt.event.shared.HandlerRegistration;
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.ComplexPanel;
import com.google.gwt.user.client.ui.Widget;
import com.vaadin.terminal.gwt.client.ApplicationConnection;
import com.vaadin.terminal.gwt.client.BrowserInfo;
import com.vaadin.terminal.gwt.client.Container;
import com.vaadin.terminal.gwt.client.ContainerResizedListener;
import com.vaadin.terminal.gwt.client.Paintable;
import com.vaadin.terminal.gwt.client.RenderInformation;
import com.vaadin.terminal.gwt.client.RenderSpace;
import com.vaadin.terminal.gwt.client.UIDL;
import com.vaadin.terminal.gwt.client.Util;
import com.vaadin.terminal.gwt.client.VConsole;
public class VSplitPanel extends ComplexPanel implements Container,
ContainerResizedListener {
private boolean enabled = false;
public static final String CLASSNAME = "v-splitpanel";
public static final String SPLITTER_CLICK_EVENT_IDENTIFIER = "sp_click";
private ClickEventHandler clickEventHandler = new ClickEventHandler(this,
SPLITTER_CLICK_EVENT_IDENTIFIER) {
@Override
protected <H extends EventHandler> HandlerRegistration registerHandler(
H handler, Type<H> type) {
if ((Event.getEventsSunk(splitter) & Event.getTypeInt(type
.getName())) != 0) {
// If we are already sinking the event for the splitter we do
// not want to additionally sink it for the root element
return addHandler(handler, type);
} else {
return addDomHandler(handler, type);
}
}
@Override
public void onContextMenu(
com.google.gwt.event.dom.client.ContextMenuEvent event) {
Element target = event.getNativeEvent().getEventTarget().cast();
if (splitter.isOrHasChild(target)) {
super.onContextMenu(event);
}
};
@Override
protected void fireClick(NativeEvent event) {
Element target = event.getEventTarget().cast();
if (splitter.isOrHasChild(target)) {
super.fireClick(event);
}
}
@Override
protected Element getRelativeToElement() {
return null;
}
};
public static final int ORIENTATION_HORIZONTAL = 0;
public static final int ORIENTATION_VERTICAL = 1;
private static final int MIN_SIZE = 30;
private int orientation = ORIENTATION_HORIZONTAL;
private Widget firstChild;
private Widget secondChild;
private final Element wrapper = DOM.createDiv();
private final Element firstContainer = DOM.createDiv();
private final Element secondContainer = DOM.createDiv();
private final Element splitter = DOM.createDiv();
private boolean resizing;
private boolean resized = false;
private int origX;
private int origY;
private int origMouseX;
private int origMouseY;
private boolean locked = false;
private boolean positionReversed = false;
private String[] componentStyleNames;
private Element draggingCurtain;
private ApplicationConnection client;
private String width = "";
private String height = "";
private RenderSpace firstRenderSpace = new RenderSpace(0, 0, true);
private RenderSpace secondRenderSpace = new RenderSpace(0, 0, true);
RenderInformation renderInformation = new RenderInformation();
private String id;
private boolean immediate;
private boolean rendering = false;
/* The current position of the split handle in either percentages or pixels */
private String position;
protected Element scrolledContainer;
protected int origScrollTop;
private TouchScrollDelegate touchScrollDelegate;
public VSplitPanel() {
this(ORIENTATION_HORIZONTAL);
}
public VSplitPanel(int orientation) {
setElement(DOM.createDiv());
switch (orientation) {
case ORIENTATION_HORIZONTAL:
setStyleName(CLASSNAME + "-horizontal");
break;
case ORIENTATION_VERTICAL:
default:
setStyleName(CLASSNAME + "-vertical");
break;
}
// size below will be overridden in update from uidl, initial size
// needed to keep IE alive
setWidth(MIN_SIZE + "px");
setHeight(MIN_SIZE + "px");
constructDom();
setOrientation(orientation);
sinkEvents(Event.MOUSEEVENTS);
addDomHandler(new TouchCancelHandler() {
public void onTouchCancel(TouchCancelEvent event) {
// TODO When does this actually happen??
VConsole.log("TOUCH CANCEL");
}
}, TouchCancelEvent.getType());
addDomHandler(new TouchStartHandler() {
public void onTouchStart(TouchStartEvent event) {
Node target = event.getTouches().get(0).getTarget().cast();
if (splitter.isOrHasChild(target)) {
onMouseDown(Event.as(event.getNativeEvent()));
} else {
getTouchScrollDelegate().onTouchStart(event);
}
}
}, TouchStartEvent.getType());
addDomHandler(new TouchMoveHandler() {
public void onTouchMove(TouchMoveEvent event) {
if (resizing) {
onMouseMove(Event.as(event.getNativeEvent()));
}
}
}, TouchMoveEvent.getType());
addDomHandler(new TouchEndHandler() {
public void onTouchEnd(TouchEndEvent event) {
if (resizing) {
onMouseUp(Event.as(event.getNativeEvent()));
}
}
}, TouchEndEvent.getType());
}
private TouchScrollDelegate getTouchScrollDelegate() {
if (touchScrollDelegate == null) {
touchScrollDelegate = new TouchScrollDelegate(firstContainer,
secondContainer);
}
return touchScrollDelegate;
}
protected void constructDom() {
DOM.appendChild(splitter, DOM.createDiv()); // for styling
DOM.appendChild(getElement(), wrapper);
DOM.setStyleAttribute(wrapper, "position", "relative");
DOM.setStyleAttribute(wrapper, "width", "100%");
DOM.setStyleAttribute(wrapper, "height", "100%");
DOM.appendChild(wrapper, secondContainer);
DOM.appendChild(wrapper, firstContainer);
DOM.appendChild(wrapper, splitter);
DOM.setStyleAttribute(splitter, "position", "absolute");
DOM.setStyleAttribute(secondContainer, "position", "absolute");
DOM.setStyleAttribute(firstContainer, "overflow", "auto");
DOM.setStyleAttribute(secondContainer, "overflow", "auto");
}
private void setOrientation(int orientation) {
this.orientation = orientation;
if (orientation == ORIENTATION_HORIZONTAL) {
DOM.setStyleAttribute(splitter, "height", "100%");
DOM.setStyleAttribute(splitter, "top", "0");
DOM.setStyleAttribute(firstContainer, "height", "100%");
DOM.setStyleAttribute(secondContainer, "height", "100%");
} else {
DOM.setStyleAttribute(splitter, "width", "100%");
DOM.setStyleAttribute(splitter, "left", "0");
DOM.setStyleAttribute(firstContainer, "width", "100%");
DOM.setStyleAttribute(secondContainer, "width", "100%");
}
DOM.setElementProperty(firstContainer, "className", CLASSNAME
+ "-first-container");
DOM.setElementProperty(secondContainer, "className", CLASSNAME
+ "-second-container");
}
public void updateFromUIDL(UIDL uidl, ApplicationConnection client) {
this.client = client;
id = uidl.getId();
rendering = true;
immediate = uidl.hasAttribute("immediate");
if (client.updateComponent(this, uidl, true)) {
rendering = false;
return;
}
setEnabled(!uidl.getBooleanAttribute("disabled"));
clickEventHandler.handleEventHandlerRegistration(client);
if (uidl.hasAttribute("style")) {
componentStyleNames = uidl.getStringAttribute("style").split(" ");
} else {
componentStyleNames = new String[0];
}
setLocked(uidl.getBooleanAttribute("locked"));
setPositionReversed(uidl.getBooleanAttribute("reversed"));
setStylenames();
position = uidl.getStringAttribute("position");
setSplitPosition(position);
final Paintable newFirstChild = client.getPaintable(uidl
.getChildUIDL(0));
final Paintable newSecondChild = client.getPaintable(uidl
.getChildUIDL(1));
if (firstChild != newFirstChild) {
if (firstChild != null) {
client.unregisterPaintable((Paintable) firstChild);
}
setFirstWidget((Widget) newFirstChild);
}
if (secondChild != newSecondChild) {
if (secondChild != null) {
client.unregisterPaintable((Paintable) secondChild);
}
setSecondWidget((Widget) newSecondChild);
}
newFirstChild.updateFromUIDL(uidl.getChildUIDL(0), client);
newSecondChild.updateFromUIDL(uidl.getChildUIDL(1), client);
renderInformation.updateSize(getElement());
// This is needed at least for cases like #3458 to take
// appearing/disappearing scrollbars into account.
client.runDescendentsLayout(this);
rendering = false;
}
@Override
public boolean remove(Widget w) {
boolean removed = super.remove(w);
if (removed) {
if (firstChild == w) {
firstChild = null;
} else {
secondChild = null;
}
}
return removed;
}
private void setLocked(boolean newValue) {
if (locked != newValue) {
locked = newValue;
splitterSize = -1;
setStylenames();
}
}
private void setPositionReversed(boolean reversed) {
if (positionReversed != reversed) {
if (orientation == ORIENTATION_HORIZONTAL) {
DOM.setStyleAttribute(splitter, "right", "");
DOM.setStyleAttribute(splitter, "left", "");
} else if (orientation == ORIENTATION_VERTICAL) {
DOM.setStyleAttribute(splitter, "top", "");
DOM.setStyleAttribute(splitter, "bottom", "");
}
positionReversed = reversed;
}
}
private void setSplitPosition(String pos) {
if (pos == null) {
return;
}
// Convert percentage values to pixels
if (pos.indexOf("%") > 0) {
pos = Float.parseFloat(pos.substring(0, pos.length() - 1))
/ 100
* (orientation == ORIENTATION_HORIZONTAL ? getOffsetWidth()
: getOffsetHeight()) + "px";
}
if (orientation == ORIENTATION_HORIZONTAL) {
if (positionReversed) {
DOM.setStyleAttribute(splitter, "right", pos);
} else {
DOM.setStyleAttribute(splitter, "left", pos);
}
} else {
if (positionReversed) {
DOM.setStyleAttribute(splitter, "bottom", pos);
} else {
DOM.setStyleAttribute(splitter, "top", pos);
}
}
iLayout();
client.runDescendentsLayout(this);
}
/*
* Calculates absolutely positioned container places/sizes (non-Javadoc)
*
* @see com.vaadin.terminal.gwt.client.NeedsLayout#layout()
*/
public void iLayout() {
if (!isAttached()) {
return;
}
renderInformation.updateSize(getElement());
int wholeSize;
int pixelPosition;
switch (orientation) {
case ORIENTATION_HORIZONTAL:
wholeSize = DOM.getElementPropertyInt(wrapper, "clientWidth");
pixelPosition = DOM.getElementPropertyInt(splitter, "offsetLeft");
// reposition splitter in case it is out of box
if ((pixelPosition > 0 && pixelPosition + getSplitterSize() > wholeSize)
|| (positionReversed && pixelPosition < 0)) {
pixelPosition = wholeSize - getSplitterSize();
if (pixelPosition < 0) {
pixelPosition = 0;
}
setSplitPosition(pixelPosition + "px");
return;
}
DOM.setStyleAttribute(firstContainer, "width", pixelPosition + "px");
int secondContainerWidth = (wholeSize - pixelPosition - getSplitterSize());
if (secondContainerWidth < 0) {
secondContainerWidth = 0;
}
DOM.setStyleAttribute(secondContainer, "width",
secondContainerWidth + "px");
DOM.setStyleAttribute(secondContainer, "left",
(pixelPosition + getSplitterSize()) + "px");
int contentHeight = renderInformation.getRenderedSize().getHeight();
firstRenderSpace.setHeight(contentHeight);
firstRenderSpace.setWidth(pixelPosition);
secondRenderSpace.setHeight(contentHeight);
secondRenderSpace.setWidth(secondContainerWidth);
break;
case ORIENTATION_VERTICAL:
wholeSize = DOM.getElementPropertyInt(wrapper, "clientHeight");
pixelPosition = DOM.getElementPropertyInt(splitter, "offsetTop");
// reposition splitter in case it is out of box
if ((pixelPosition > 0 && pixelPosition + getSplitterSize() > wholeSize)
|| (positionReversed && pixelPosition < 0)) {
pixelPosition = wholeSize - getSplitterSize();
if (pixelPosition < 0) {
pixelPosition = 0;
}
setSplitPosition(pixelPosition + "px");
return;
}
DOM.setStyleAttribute(firstContainer, "height", pixelPosition
+ "px");
int secondContainerHeight = (wholeSize - pixelPosition - getSplitterSize());
if (secondContainerHeight < 0) {
secondContainerHeight = 0;
}
DOM.setStyleAttribute(secondContainer, "height",
secondContainerHeight + "px");
DOM.setStyleAttribute(secondContainer, "top",
(pixelPosition + getSplitterSize()) + "px");
int contentWidth = renderInformation.getRenderedSize().getWidth();
firstRenderSpace.setHeight(pixelPosition);
firstRenderSpace.setWidth(contentWidth);
secondRenderSpace.setHeight(secondContainerHeight);
secondRenderSpace.setWidth(contentWidth);
break;
}
// fixes scrollbars issues on webkit based browsers
Util.runWebkitOverflowAutoFix(secondContainer);
Util.runWebkitOverflowAutoFix(firstContainer);
}
private void setFirstWidget(Widget w) {
if (firstChild != null) {
firstChild.removeFromParent();
}
super.add(w, firstContainer);
firstChild = w;
}
private void setSecondWidget(Widget w) {
if (secondChild != null) {
secondChild.removeFromParent();
}
super.add(w, secondContainer);
secondChild = w;
}
@Override
public void onBrowserEvent(Event event) {
switch (DOM.eventGetType(event)) {
case Event.ONMOUSEMOVE:
// case Event.ONTOUCHMOVE:
if (resizing) {
onMouseMove(event);
}
break;
case Event.ONMOUSEDOWN:
// case Event.ONTOUCHSTART:
onMouseDown(event);
break;
case Event.ONMOUSEOUT:
// Dragging curtain interferes with click events if added in
// mousedown so we add it only when needed i.e., if the mouse moves
// outside the splitter.
if (resizing) {
showDraggingCurtain();
}
break;
case Event.ONMOUSEUP:
// case Event.ONTOUCHEND:
if (resizing) {
onMouseUp(event);
}
break;
case Event.ONCLICK:
resizing = false;
break;
}
// Only fire click event listeners if the splitter isn't moved
if (Util.isTouchEvent(event) || !resized) {
super.onBrowserEvent(event);
} else if (DOM.eventGetType(event) == Event.ONMOUSEUP) {
// Reset the resized flag after a mouseup has occured so the next
// mousedown/mouseup can be interpreted as a click.
resized = false;
}
}
public void onMouseDown(Event event) {
if (locked || !isEnabled()) {
return;
}
final Element trg = event.getEventTarget().cast();
if (trg == splitter || trg == DOM.getChild(splitter, 0)) {
resizing = true;
DOM.setCapture(getElement());
origX = DOM.getElementPropertyInt(splitter, "offsetLeft");
origY = DOM.getElementPropertyInt(splitter, "offsetTop");
origMouseX = Util.getTouchOrMouseClientX(event);
origMouseY = Util.getTouchOrMouseClientY(event);
event.stopPropagation();
event.preventDefault();
}
}
public void onMouseMove(Event event) {
switch (orientation) {
case ORIENTATION_HORIZONTAL:
final int x = Util.getTouchOrMouseClientX(event);
onHorizontalMouseMove(x);
break;
case ORIENTATION_VERTICAL:
default:
final int y = Util.getTouchOrMouseClientY(event);
onVerticalMouseMove(y);
break;
}
}
private void onHorizontalMouseMove(int x) {
int newX = origX + x - origMouseX;
if (newX < 0) {
newX = 0;
}
if (newX + getSplitterSize() > getOffsetWidth()) {
newX = getOffsetWidth() - getSplitterSize();
}
if (position.indexOf("%") > 0) {
float pos = newX;
// 100% needs special handling
if (newX + getSplitterSize() >= getOffsetWidth()) {
pos = getOffsetWidth();
}
// Reversed position
if (positionReversed) {
pos = getOffsetWidth() - pos;
}
position = (pos / getOffsetWidth() * 100) + "%";
} else {
// Reversed position
if (positionReversed) {
position = (getOffsetWidth() - newX - getSplitterSize()) + "px";
} else {
position = newX + "px";
}
}
if (origX != newX) {
resized = true;
}
// Reversed position
if (positionReversed) {
newX = getOffsetWidth() - newX - getSplitterSize();
}
setSplitPosition(newX + "px");
}
private void onVerticalMouseMove(int y) {
int newY = origY + y - origMouseY;
if (newY < 0) {
newY = 0;
}
if (newY + getSplitterSize() > getOffsetHeight()) {
newY = getOffsetHeight() - getSplitterSize();
}
if (position.indexOf("%") > 0) {
float pos = newY;
// 100% needs special handling
if (newY + getSplitterSize() >= getOffsetHeight()) {
pos = getOffsetHeight();
}
// Reversed position
if (positionReversed) {
pos = getOffsetHeight() - pos - getSplitterSize();
}
position = pos / getOffsetHeight() * 100 + "%";
} else {
// Reversed position
if (positionReversed) {
position = (getOffsetHeight() - newY - getSplitterSize())
+ "px";
} else {
position = newY + "px";
}
}
if (origY != newY) {
resized = true;
}
// Reversed position
if (positionReversed) {
newY = getOffsetHeight() - newY - getSplitterSize();
}
setSplitPosition(newY + "px");
}
public void onMouseUp(Event event) {
DOM.releaseCapture(getElement());
hideDraggingCurtain();
resizing = false;
if (!Util.isTouchEvent(event)) {
onMouseMove(event);
}
updateSplitPositionToServer();
}
/**
* Used in FF to avoid losing mouse capture when pointer is moved on an
* iframe.
*/
private void showDraggingCurtain() {
if (!isDraggingCurtainRequired()) {
return;
}
if (draggingCurtain == null) {
draggingCurtain = DOM.createDiv();
DOM.setStyleAttribute(draggingCurtain, "position", "absolute");
DOM.setStyleAttribute(draggingCurtain, "top", "0px");
DOM.setStyleAttribute(draggingCurtain, "left", "0px");
DOM.setStyleAttribute(draggingCurtain, "width", "100%");
DOM.setStyleAttribute(draggingCurtain, "height", "100%");
DOM.setStyleAttribute(draggingCurtain, "zIndex", ""
+ VOverlay.Z_INDEX);
DOM.appendChild(wrapper, draggingCurtain);
}
}
/**
* A dragging curtain is required in Gecko and Webkit.
*
* @return true if the browser requires a dragging curtain
*/
private boolean isDraggingCurtainRequired() {
return (BrowserInfo.get().isGecko() || BrowserInfo.get().isWebkit());
}
/**
* Hides dragging curtain
*/
private void hideDraggingCurtain() {
if (draggingCurtain != null) {
DOM.removeChild(wrapper, draggingCurtain);
draggingCurtain = null;
}
}
private int splitterSize = -1;
private int getSplitterSize() {
if (splitterSize < 0) {
if (isAttached()) {
switch (orientation) {
case ORIENTATION_HORIZONTAL:
splitterSize = DOM.getElementPropertyInt(splitter,
"offsetWidth");
break;
default:
splitterSize = DOM.getElementPropertyInt(splitter,
"offsetHeight");
break;
}
}
}
return splitterSize;
}
@Override
public void setHeight(String height) {
if (this.height.equals(height)) {
return;
}
this.height = height;
super.setHeight(height);
if (!rendering && client != null) {
setSplitPosition(position);
}
}
@Override
public void setWidth(String width) {
if (this.width.equals(width)) {
return;
}
this.width = width;
super.setWidth(width);
if (!rendering && client != null) {
setSplitPosition(position);
}
}
public RenderSpace getAllocatedSpace(Widget child) {
if (child == firstChild) {
return firstRenderSpace;
} else if (child == secondChild) {
return secondRenderSpace;
}
return null;
}
public boolean hasChildComponent(Widget component) {
return (component != null && (component == firstChild || component == secondChild));
}
public void replaceChildComponent(Widget oldComponent, Widget newComponent) {
if (oldComponent == firstChild) {
setFirstWidget(newComponent);
} else if (oldComponent == secondChild) {
setSecondWidget(newComponent);
}
}
public boolean requestLayout(Set<Paintable> child) {
// content size change might cause change to its available space
// (scrollbars)
for (Paintable paintable : child) {
client.handleComponentRelativeSize((Widget) paintable);
}
if (height != null && width != null) {
/*
* If the height and width has been specified the child components
* cannot make the size of the layout change
*/
return true;
}
if (renderInformation.updateSize(getElement())) {
return false;
} else {
return true;
}
}
public void updateCaption(Paintable component, UIDL uidl) {
// TODO Implement caption handling
}
/**
* Updates the new split position back to server.
*/
private void updateSplitPositionToServer() {
int pos = 0;
if (position.indexOf("%") > 0) {
pos = Math.round(Float.valueOf(position.substring(0,
position.length() - 1)));
} else {
pos = Integer
.parseInt(position.substring(0, position.length() - 2));
}
client.updateVariable(id, "position", pos, immediate);
}
private void setStylenames() {
final String splitterSuffix = (orientation == ORIENTATION_HORIZONTAL ? "-hsplitter"
: "-vsplitter");
final String firstContainerSuffix = "-first-container";
final String secondContainerSuffix = "-second-container";
String lockedSuffix = "";
String splitterStyle = CLASSNAME + splitterSuffix;
String firstStyle = CLASSNAME + firstContainerSuffix;
String secondStyle = CLASSNAME + secondContainerSuffix;
if (locked) {
splitterStyle = CLASSNAME + splitterSuffix + "-locked";
lockedSuffix = "-locked";
}
for (int i = 0; i < componentStyleNames.length; i++) {
splitterStyle += " " + CLASSNAME + splitterSuffix + "-"
+ componentStyleNames[i] + lockedSuffix;
firstStyle += " " + CLASSNAME + firstContainerSuffix + "-"
+ componentStyleNames[i];
secondStyle += " " + CLASSNAME + secondContainerSuffix + "-"
+ componentStyleNames[i];
}
DOM.setElementProperty(splitter, "className", splitterStyle);
DOM.setElementProperty(firstContainer, "className", firstStyle);
DOM.setElementProperty(secondContainer, "className", secondStyle);
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public boolean isEnabled() {
return enabled;
}
}
|