view flys-artifacts/src/main/java/de/intevation/flys/jfree/StyledDomainMarker.java @ 3650:cbe2febe30cc

Merged revisions 5391-5392 via svnmerge from file:///home/clients/bsh/bsh-generischer-viewer/Material/SVN/flys-artifacts/trunk ........ r5391 | felix | 2012-09-07 15:49:14 +0200 (Fr, 07 Sep 2012) | 1 line Cosmetics, docs. ........ r5392 | felix | 2012-09-07 15:50:07 +0200 (Fr, 07 Sep 2012) | 1 line Added acidentally omitted ChangeLog entry for last commit. ........ flys-artifacts/tags/2.9@5393 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 07 Sep 2012 14:01:50 +0000
parents 0b9b2a0c4e64
children 34da25796c21
line wrap: on
line source
package de.intevation.flys.jfree;

import java.awt.Color;

import org.jfree.chart.plot.IntervalMarker;
import org.w3c.dom.Document;

import de.intevation.flys.utils.ThemeUtil;

/**
 * Marker that represents a highlighted interval.
 * @author <a href="mailto:christian.lins@intevation.de">Christian Lins</a>
 */
public class StyledDomainMarker extends IntervalMarker {

    private static final long serialVersionUID = -4369410661339512342L;

    private final Color fillColor, backgroundColor;

    public StyledDomainMarker(double start, double end, Document theme) {
        super(start, end);

        backgroundColor = ThemeUtil.parseColor(
                ThemeUtil.getBackgroundColorString(theme));
        fillColor = ThemeUtil.parseColor(
                ThemeUtil.getFillColorString(theme));
        useSecondColor(false);

        int alpha = ThemeUtil.parseInteger(ThemeUtil.getTransparencyAlpha(theme), 128);
        setAlpha(alpha / 255.0f);
    }

    /**
     * To properly differentiate several styled domain markers side by side,
     * we can use this switch to toggle between two colors.
     * @param secondColor
     */
    public void useSecondColor(boolean secondColor) {
        if(secondColor) {
            if(backgroundColor != null)
                setPaint(backgroundColor);
        }
        else {
            if(fillColor != null)
                setPaint(fillColor);
        }
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org