All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alee.laf.radiobutton.WebRadioButtonStyle Maven / Gradle / Ivy

There is a newer version: 1.2.14
Show newest version
/*
 * This file is part of WebLookAndFeel library.
 *
 * WebLookAndFeel library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * WebLookAndFeel library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with WebLookAndFeel library.  If not, see .
 */

package com.alee.laf.radiobutton;

import com.alee.global.StyleConstants;

import java.awt.*;

/**
 * WebRadioButton style class.
 *
 * @author Mikle Garin
 */

public final class WebRadioButtonStyle
{
    /**
     * Border color.
     */
    public static Color borderColor = StyleConstants.borderColor;

    /**
     * Dark border color.
     */
    public static Color darkBorderColor = StyleConstants.darkBorderColor;

    /**
     * Disabled border color.
     */
    public static Color disabledBorderColor = StyleConstants.disabledBorderColor;

    /**
     * Top background gradient color.
     */
    public static Color topBgColor = StyleConstants.topBgColor;

    /**
     * Bottom background gradient color.
     */
    public static Color bottomBgColor = StyleConstants.bottomBgColor;

    /**
     * Top background gradient color on selection.
     */
    public static Color topSelectedBgColor = StyleConstants.topSelectedBgColor;

    /**
     * Bottom background gradient color on selection.
     */
    public static Color bottomSelectedBgColor = StyleConstants.bottomSelectedBgColor;

    /**
     * Decoration shade width.
     */
    public static int shadeWidth = StyleConstants.shadeWidth;

    /**
     * Default checkbox margin.
     */
    public static Insets margin = StyleConstants.emptyMargin;

    /**
     * Whether should animate selection changes or not.
     */
    public static boolean animated = StyleConstants.animate;

    /**
     * Whether should display dark border only on rollover or not.
     */
    public static boolean rolloverDarkBorderOnly = StyleConstants.rolloverDarkBorderOnly;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy