com.vaadin.v7.client.widget.escalator.PositionFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-client Show documentation
Show all versions of vaadin-compatibility-client Show documentation
Vaadin 7 compatibility package for Vaadin 8
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.client.widget.escalator;
import com.google.gwt.dom.client.Element;
import com.google.gwt.dom.client.Style.Unit;
/**
* A functional interface that can be used for positioning elements in the DOM.
*
* @since 7.4
* @author Vaadin Ltd
*/
public interface PositionFunction {
/**
* A position function using "transform: translate3d(x,y,z)" to position
* elements in the DOM.
*/
public static class Translate3DPosition implements PositionFunction {
@Override
public void set(Element e, double x, double y) {
e.getStyle().setProperty("transform",
"translate3d(" + x + "px, " + y + "px, 0)");
}
@Override
public void reset(Element e) {
e.getStyle().clearProperty("transform");
}
}
/**
* A position function using "transform: translate(x,y)" to position
* elements in the DOM.
*/
public static class TranslatePosition implements PositionFunction {
@Override
public void set(Element e, double x, double y) {
e.getStyle().setProperty("transform",
"translate(" + x + "px," + y + "px)");
}
@Override
public void reset(Element e) {
e.getStyle().clearProperty("transform");
}
}
/**
* A position function using "-webkit-transform: translate3d(x,y,z)" to
* position elements in the DOM.
*/
public static class WebkitTranslate3DPosition implements PositionFunction {
@Override
public void set(Element e, double x, double y) {
e.getStyle().setProperty("webkitTransform",
"translate3d(" + x + "px," + y + "px,0)");
}
@Override
public void reset(Element e) {
e.getStyle().clearProperty("webkitTransform");
}
}
/**
* A position function using "left: x" and "top: y" to position elements in
* the DOM.
*/
public static class AbsolutePosition implements PositionFunction {
@Override
public void set(Element e, double x, double y) {
e.getStyle().setLeft(x, Unit.PX);
e.getStyle().setTop(y, Unit.PX);
}
@Override
public void reset(Element e) {
e.getStyle().clearLeft();
e.getStyle().clearTop();
}
}
/**
* Position an element in an (x,y) coordinate system in the DOM.
*
* @param e
* the element to position. Never null
.
* @param x
* the x coordinate, in pixels
* @param y
* the y coordinate, in pixels
*/
void set(Element e, double x, double y);
/**
* Resets any previously applied positioning, clearing the used style
* attributes.
*
* @param e
* the element for which to reset the positioning
*/
void reset(Element e);
}