blob: 0ac872e33c54f62584e8365fb89d658b6b99a205 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 Original NatTable authors and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0.
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Original NatTable authors and others - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ecommons.waltable.style;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.Image;
public interface CellStyleAttributes {
/**
* Attribute for configuring the background color of a cell.
*/
public static final ConfigAttribute<Color> BACKGROUND_COLOR= new ConfigAttribute<>();
/**
* Attribute for configuring the foreground color of a cell.
*/
public static final ConfigAttribute<Color> FOREGROUND_COLOR= new ConfigAttribute<>();
/**
* Attribute for configuring the gradient sweeping background color.
* Is used by the GradientBackgroundPainter.
*/
public static final ConfigAttribute<Color> GRADIENT_BACKGROUND_COLOR= new ConfigAttribute<>();
/**
* Attribute for configuring the gradient sweeping foreground color.
* Is used by the GradientBackgroundPainter.
*/
public static final ConfigAttribute<Color> GRADIENT_FOREGROUND_COLOR= new ConfigAttribute<>();
/**
* Attribute for configuring the horizontal alignment of a cell.
*/
public static final ConfigAttribute<HorizontalAlignment> HORIZONTAL_ALIGNMENT= new ConfigAttribute<>();
/**
* Attribute for configuring the vertical alignment of a cell.
*/
public static final ConfigAttribute<VerticalAlignment> VERTICAL_ALIGNMENT= new ConfigAttribute<>();
/**
* Attribute for configuring the font to be used on rendering text.
* Is used by all specialisations of the AbstractTextPainter.
*/
public static final ConfigAttribute<Font> FONT= new ConfigAttribute<>();
/**
* Attribute for configuring the image to rendered.
* Is used by the ImagePainter to determine the image to render dynamically.
*/
public static final ConfigAttribute<Image> IMAGE= new ConfigAttribute<>();
/**
* Attribute for configuring the border style.
* Is used by the LineBorderDecorator.
*/
public static final ConfigAttribute<BorderStyle> BORDER_STYLE= new ConfigAttribute<>();
/**
* Attribute for configuring the echo character that should be used by PasswordTextPainter and
* PasswordCellEditor.
*/
public static final ConfigAttribute<Character> PASSWORD_ECHO_CHAR= new ConfigAttribute<>();
/**
* Attribute for configuring the text decoration (underline and/or strikethrough).
* Is used by all specialisations of the AbstractTextPainter
*/
public static final ConfigAttribute<TextDecorationEnum> TEXT_DECORATION= new ConfigAttribute<>();
public static final ConfigAttribute<Font> CONTROL_FONT= new ConfigAttribute<>();
}