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

com.alee.laf.checkbox.CheckIcon Maven / Gradle / Ivy

Go to download

WebLaf is a Java Swing Look and Feel and extended components library for cross-platform applications

There is a newer version: 2.2.1
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.checkbox;

import com.alee.painter.decoration.DecorationState;
import com.alee.painter.decoration.IDecoration;
import com.alee.painter.decoration.content.AbstractContent;
import com.alee.utils.GraphicsUtils;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;

import javax.swing.*;
import java.awt.*;
import java.awt.geom.GeneralPath;

/**
 * Checked state icon content for {@link javax.swing.JCheckBox} component.
 *
 * @param  component type
 * @param  decoration type
 * @param  content type
 * @author Mikle Garin
 */

@XStreamAlias ( "CheckIcon" )
public class CheckIcon, I extends CheckIcon> extends AbstractContent
{
    /**
     * todo 1. Move check shape into some kind of settings presented in XML
     */

    /**
     * Check icon shape stroke.
     */
    @XStreamAsAttribute
    protected Stroke stroke;

    /**
     * Check icon color.
     */
    @XStreamAsAttribute
    protected Color color;

    @Override
    public String getId ()
    {
        return DecorationState.checked;
    }

    @Override
    public void paint ( final Graphics2D g2d, final Rectangle bounds, final E c, final D d )
    {
        final Stroke os = GraphicsUtils.setupStroke ( g2d, stroke, stroke != null );
        final Paint op = GraphicsUtils.setupPaint ( g2d, color );

        final int w = bounds.width;
        final int h = bounds.height;
        final int x = bounds.x;
        final int y = bounds.y;
        final GeneralPath gp = new GeneralPath ();
        gp.moveTo ( x + w * 0.1875, y + h * 0.375 );
        gp.lineTo ( x + w * 0.4575, y + h * 0.6875 );
        gp.lineTo ( x + w * 0.875, y + h * 0.125 );
        g2d.draw ( gp );

        GraphicsUtils.restorePaint ( g2d, op );
        GraphicsUtils.restoreStroke ( g2d, os );
    }

    @Override
    public I merge ( final I icon )
    {
        if ( icon.stroke != null )
        {
            stroke = icon.stroke;
        }
        if ( icon.color != null )
        {
            color = icon.color;
        }
        return ( I ) this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy