. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Report; use function str_contains; /** * Class ReportBaseText */ class ReportBaseText extends ReportBaseElement { // Text color in HTML code public string $color; // Style name public string $styleName; // Remaining width of a cell (points) public float $wrapWidthRemaining; // Original width of a cell (points) public float $wrapWidthCell; /** * Create a Text class - Base * * @param string $style The name of the text style * @param string $color HTML color code */ public function __construct(string $style, string $color) { $this->text = ''; $this->color = $color; $this->wrapWidthRemaining = 0.0; $this->styleName = $style; } /** * Set the width for word-wrapping. * * @param float $wrapwidth * @param float $cellwidth * * @return float */ public function setWrapWidth(float $wrapwidth, float $cellwidth): float { $this->wrapWidthCell = $cellwidth; if (str_contains($this->text, "\n")) { $this->wrapWidthRemaining = $cellwidth; } else { $this->wrapWidthRemaining = $wrapwidth; } return $this->wrapWidthRemaining; } /** * Get the style name. * * @return string */ public function getStyleName(): string { return $this->styleName; } }