Package com.explodingpixels.macwidgets

Source Code of com.explodingpixels.macwidgets.ComponentTopBar

package com.explodingpixels.macwidgets;

import com.explodingpixels.painter.GradientWithBorderPainter;

import java.awt.Color;

public class ComponentTopBar extends TriAreaComponent {
   
    private static final Color TOP_BORDER_COLOR =
            new Color(212, 212, 212);

    private static final Color SOFT_TOP_GRADIENT_COLOR =
            new Color(248, 248, 248);

    private static final Color SOFT_BOTTOM_GRADIENT_COLOR =
            new Color(212, 212, 212);

    ComponentTopBar() {
        setBackgroundPainter(new GradientWithBorderPainter(
                TOP_BORDER_COLOR, SOFT_BOTTOM_GRADIENT_COLOR,
                SOFT_TOP_GRADIENT_COLOR, SOFT_BOTTOM_GRADIENT_COLOR));
    }
}
TOP

Related Classes of com.explodingpixels.macwidgets.ComponentTopBar

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.