org.opentdk.gui.chart.ChartBorder Maven / Gradle / Ivy
/*
* BSD 2-Clause License
*
* Copyright (c) 2022, LK Test Solutions GmbH
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.opentdk.gui.chart;
import java.util.logging.Level;
import org.opentdk.api.logger.MLogger;
import javafx.geometry.Insets;
import javafx.scene.layout.Border;
import javafx.scene.layout.BorderStroke;
import javafx.scene.layout.BorderStrokeStyle;
import javafx.scene.layout.BorderWidths;
import javafx.scene.layout.CornerRadii;
import javafx.scene.paint.Color;
/**
* This class gets used to store border information for the chart creation. The
* ChartBorder.border(..)
methods simply create a new border to use
* it for further operations. Constructor initialization is possible, too, to
* change the full number of properties.
*
* @author FME (LK Test Solutions)
*
*/
public final class ChartBorder {
private Color colorTop = Color.TRANSPARENT;
private Color colorRight = Color.TRANSPARENT;
private Color colorBottom = Color.TRANSPARENT;
private Color colorLeft = Color.TRANSPARENT;
private BorderStrokeStyle styleTop = BorderStrokeStyle.SOLID;
private BorderStrokeStyle styleRight = BorderStrokeStyle.SOLID;
private BorderStrokeStyle styleBottom = BorderStrokeStyle.SOLID;
private BorderStrokeStyle styleLeft = BorderStrokeStyle.SOLID;
private CornerRadii radii = CornerRadii.EMPTY;
private BorderWidths widths = BorderWidths.DEFAULT;
private Insets insets = Insets.EMPTY;
public ChartBorder() {
super();
}
public ChartBorder(Color colorTop, Color colorRight, Color colorBottom, Color colorLeft) {
setColorTop(colorTop);
setColorRight(colorRight);
setColorBottom(colorBottom);
setColorLeft(colorLeft);
}
public static ChartBorder border() {
return new ChartBorder();
}
public static ChartBorder border(Color colorTop, Color colorRight, Color colorBottom, Color colorLeft) {
return new ChartBorder(colorTop, colorRight, colorBottom, colorLeft);
}
public final Border getBorder() {
return new Border(new BorderStroke(colorTop, colorRight, colorBottom, colorLeft, styleTop, styleRight, styleBottom, styleLeft, radii, widths, insets));
}
public void setColorTop(Color color) {
if (color == null) {
MLogger.getInstance().log(Level.SEVERE, "Color is null ==> Use default " + this.colorTop, getClass().getSimpleName(), "setColorTop");
return;
}
this.colorTop = color;
}
public final void setColorRight(Color color) {
if (color == null) {
MLogger.getInstance().log(Level.SEVERE, "Color is null ==> Use default " + this.colorRight, getClass().getSimpleName(), "setColorRight");
return;
}
this.colorRight = color;
}
public final void setColorBottom(Color color) {
if (color == null) {
MLogger.getInstance().log(Level.SEVERE, "Color is null ==> Use default " + this.colorBottom, getClass().getSimpleName(), "setColorBottom");
return;
}
this.colorBottom = color;
}
public final void setColorLeft(Color color) {
if (color == null) {
MLogger.getInstance().log(Level.SEVERE, "Color is null ==> Use default " + this.colorLeft, getClass().getSimpleName(), "setColorLeft");
return;
}
this.colorLeft = color;
}
public final void setStyleTop(BorderStrokeStyle style) {
if (style == null) {
MLogger.getInstance().log(Level.SEVERE, "BorderStrokeStyle is null ==> Use default " + this.styleTop, getClass().getSimpleName(), "setStyleTop");
return;
}
this.styleTop = style;
}
public final void setStyleRight(BorderStrokeStyle style) {
if (style == null) {
MLogger.getInstance().log(Level.SEVERE, "BorderStrokeStyle is null ==> Use default " + this.styleRight, getClass().getSimpleName(), "setStyleRight");
return;
}
this.styleRight = style;
}
public final void setStyleBottom(BorderStrokeStyle style) {
if (style == null) {
MLogger.getInstance().log(Level.SEVERE, "BorderStrokeStyle is null ==> Use default " + this.styleBottom, getClass().getSimpleName(), "setStyleBottom");
return;
}
this.styleBottom = style;
}
public final void setStyleLeft(BorderStrokeStyle style) {
if (style == null) {
MLogger.getInstance().log(Level.SEVERE, "BorderStrokeStyle is null ==> Use default " + this.styleLeft, getClass().getSimpleName(), "setStyleLeft");
return;
}
this.styleLeft = style;
}
public final void setRadii(CornerRadii value) {
if (value == null) {
MLogger.getInstance().log(Level.SEVERE, "CornerRadii is null ==> Use default " + this.radii, getClass().getSimpleName(), "setRadii");
return;
}
this.radii = value;
}
public final void setWidths(BorderWidths value) {
if (value == null) {
MLogger.getInstance().log(Level.SEVERE, "BorderWidths is null ==> Use default " + this.widths, getClass().getSimpleName(), "setWidths");
return;
}
this.widths = value;
}
public final void setInsets(Insets value) {
if (value == null) {
MLogger.getInstance().log(Level.SEVERE, "Insets is null ==> Use default " + this.insets, getClass().getSimpleName(), "setInsets");
return;
}
this.insets = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy