gwt.material.design.client.base.helper.UiHelper Maven / Gradle / Ivy
/*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2017 GwtMaterialDesign
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package gwt.material.design.client.base.helper;
import com.google.gwt.event.dom.client.*;
import com.google.gwt.user.client.Event;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.Widget;
import gwt.material.design.client.events.DefaultHandlerRegistry;
/**
* This static helper class is supposed to collect common methods used for multiple kind of UI classes.
* It is defined as abstract to prohibit
*/
public final class UiHelper {
private static DefaultHandlerRegistry handlerRegistry;
private static String PRESSED_CSS_STYLE_NAME = "pressed";
/**
* Adds a mouse pressed handler to a widget. Adds a CSS style ('pressed',
* {@link #PRESSED_CSS_STYLE_NAME}) to the widget as long as the mouse is
* pressed (or the user touches the widget). See
* {@link #addMousePressedHandlers(Widget, String)}.
*
* @param widget The widget to which the "pressed" style musst be applied
*/
public static void addMousePressedHandlers(final Widget widget) {
addMousePressedHandlers(widget, PRESSED_CSS_STYLE_NAME);
}
/**
* Adds a mouse pressed handler to a widget. Adds a CSS style to the widget
* as long as the mouse is pressed (or the user touches the widget on mobile browser).
*
* @param widget The widget to which the style must be applied for mouse/touch event
* @param cssStyleName CSS style name to be applied
*/
public static void addMousePressedHandlers(final Widget widget, final String cssStyleName) {
widget.sinkEvents(Event.ONMOUSEDOWN);
widget.sinkEvents(Event.ONMOUSEUP);
widget.sinkEvents(Event.ONMOUSEOUT);
widget.sinkEvents(Event.TOUCHEVENTS);
handlerRegistry = new DefaultHandlerRegistry(widget);
handlerRegistry.registerHandler(widget.addHandler(event -> widget.addStyleName(cssStyleName), MouseDownEvent.getType()));
handlerRegistry.registerHandler(widget.addHandler(event -> widget.removeStyleName(cssStyleName), MouseUpEvent.getType()));
handlerRegistry.registerHandler(widget.addHandler(event -> widget.removeStyleName(cssStyleName), MouseOutEvent.getType()));
// Touch Events
handlerRegistry.registerHandler(widget.addHandler(event -> widget.addStyleName(cssStyleName), TouchStartEvent.getType()));
handlerRegistry.registerHandler(widget.addHandler(event -> widget.removeStyleName(cssStyleName), TouchEndEvent.getType()));
handlerRegistry.registerHandler(widget.addHandler(event -> widget.removeStyleName(cssStyleName), TouchCancelEvent.getType()));
}
public static int calculateSpaceToBottom(Widget widget) {
return Window.getClientHeight() - widget.getAbsoluteTop() - widget.getOffsetHeight();
}
//TODO: Convert to JSInterop
public static native boolean isTouchScreenDevice() /*-{
return 'ontouchstart' in document.documentElement;
}-*/;
}