gwt.material.design.client.base.HasIcon 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;
import com.google.gwt.dom.client.Style;
import gwt.material.design.client.constants.Color;
import gwt.material.design.client.constants.IconPosition;
import gwt.material.design.client.constants.IconSize;
import gwt.material.design.client.constants.IconType;
import gwt.material.design.client.ui.MaterialIcon;
public interface HasIcon {
/**
* Get the icon widget.
*/
MaterialIcon getIcon();
/**
* Set Material Design icon.
* @see Material Design Icons
*/
void setIconType(IconType iconType);
/**
* Set the position of the icon.
*/
void setIconPosition(IconPosition position);
/**
* Size of icon.
*/
void setIconSize(IconSize size);
/**
* Set the font size of the icon.
*/
void setIconFontSize(double size, Style.Unit unit);
/**
* Sets the color of the icon.
*/
void setIconColor(Color iconColor);
/**
* Get the color of the icon
*/
Color getIconColor();
/**
* Make the icon prefix in its container.
*/
void setIconPrefix(boolean prefix);
/**
* Is the icon prefix in the container.
*/
boolean isIconPrefix();
/**
* Will set the custom Icon type provided by the css classes.
* This way we can easily support FontAwesome icons.
*/
void setCustomIconType(String iconType);
/**
* Will get the css class for custom icons.
*/
String getCustomIconType();
}