365366367368369370371372373374375
} te.cancelBubble(); } private void animCollapse() { containerEl.slideOut(Direction.UP, new FxConfig(animDuration, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterCollapse(); } }));
375376377378379380381382383384385
})); item.tree.disableEvents(true); } private void animExpand() { containerEl.slideIn(Direction.DOWN, new FxConfig(animDuration, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterExpand(); } }));
12811282128312841285128612871288128912901291
} } private void scrollTo(int pos, boolean animate) { if (animate) { stripWrap.scrollTo("left", pos, new FxConfig(new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { updateScrollButtons(); } })); } else {
184185186187188189190191192193194
} if (autoHide) { preview.remove(); } if (isAnimate()) { el().fadeOut(new FxConfig(new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterHide(); } })); } else {
470471472473474475476477478479480
if (autoHide) { preview.add(); } if (animate) { el().fadeIn(new FxConfig(new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterShow(); } })); } else {
985986987988989990991992993994995
protected void onCollapse() { if (animCollapse) { animating = true; addStyleName(baseStyle + "-animated"); bwrap.slideOut(Direction.UP, new FxConfig(300, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterCollapse(); } })); } else {
10101011101210131014101510161017101810191020
protected void onExpand() { if (animCollapse) { animating = true; addStyleName(baseStyle + "-animated"); bwrap.slideIn(Direction.DOWN, new FxConfig(300, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterExpand(); } })); } else {
887888889890891892893894895896897
setValue(d); } } private void hideMonthPicker() { monthPicker.slideOut(Direction.UP, new FxConfig(300, new Listener<FxEvent>() { public void handleEvent(FxEvent ce) { monthPicker.setVisible(false); } })); }