com.google.gwt.query.client.css.MarginProperty Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2011, The gwtquery team.
*
* 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.
*/
package com.google.gwt.query.client.css;
import com.google.gwt.dom.client.Style;
/**
* The margin property sets the margins of an element.
*/
public class MarginProperty extends CssProperty {
/**
* ShorthandMarginProperty.
*/
public static class ShorthandMarginProperty implements HasCssValue {
private ShorthandMarginProperty() {
}
public String getCssName() {
return MARGIN_PROPERTY;
}
public String getCssValue(Style s) {
return s.getMargin();
}
/**
* Apply the same margin to all sides.
*/
public CssSetter with(Length margin) {
return new MultipleValueCssSetter(getCssName(), margin);
}
/**
* The top and bottom margins are set to the first value and the right and
* left margins are set to the second.
*/
public CssSetter with(Length topAndBottom, Length leftAndRight) {
return new MultipleValueCssSetter(getCssName(), topAndBottom, leftAndRight);
}
/**
* The top margin is set to the first value, the left and right margins are
* set to the second, and the bottom margin is set to the third.
*/
public CssSetter with(Length top, Length leftAndRight, Length bottom) {
return new MultipleValueCssSetter(getCssName(), top, leftAndRight, bottom);
}
/**
* Apply the margin to all sides.
*/
public CssSetter with(Length margin1, Length margin2, Length margin3,
Length margin4) {
return new MultipleValueCssSetter(getCssName(), margin1, margin2,
margin3, margin4);
}
}
private static String MARGIN_BOTTOM_PROPERTY = "marginBottom";
private static String MARGIN_LEFT_PROPERTY = "marginLeft";
private static String MARGIN_PROPERTY = "margin";
private static String MARGIN_RIGHT_PROPERTY = "marginRight";
private static String MARGIN_TOP_PROPERTY = "marginTop";
public static void init() {
CSS.MARGIN = new ShorthandMarginProperty();
CSS.MARGIN_LEFT = new MarginProperty(MARGIN_LEFT_PROPERTY);
CSS.MARGIN_RIGHT = new MarginProperty(MARGIN_RIGHT_PROPERTY);
CSS.MARGIN_TOP = new MarginProperty(MARGIN_TOP_PROPERTY);
CSS.MARGIN_BOTTOM = new MarginProperty(MARGIN_BOTTOM_PROPERTY);
}
private MarginProperty(String cssName) {
super(cssName);
}
}