1a25f0a04SGreg Roach<?php 2a25f0a04SGreg Roach/** 3a25f0a04SGreg Roach * webtrees: online genealogy 4369c0ce6SGreg Roach * Copyright (C) 2016 webtrees development team 5a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify 6a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by 7a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or 8a25f0a04SGreg Roach * (at your option) any later version. 9a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful, 10a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12a25f0a04SGreg Roach * GNU General Public License for more details. 13a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License 14a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15a25f0a04SGreg Roach */ 1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Report; 17a25f0a04SGreg Roach 18a25f0a04SGreg Roach/** 19a25f0a04SGreg Roach * Class ReportHtmlText 20a25f0a04SGreg Roach */ 21a25f0a04SGreg Roachclass ReportHtmlText extends ReportBaseText { 22a25f0a04SGreg Roach /** 2376692c8bSGreg Roach * Render the elements. 2476692c8bSGreg Roach * 25a25f0a04SGreg Roach * @param ReportHtml $renderer 26cbc1590aSGreg Roach * @param int $curx 27cbc1590aSGreg Roach * @param bool $attrib Is is called from a different element? 28a25f0a04SGreg Roach */ 29ffd703eaSGreg Roach public function render($renderer, $curx = 0, $attrib = true) { 30a25f0a04SGreg Roach 31a25f0a04SGreg Roach // Setup the style name 32a25f0a04SGreg Roach if ($renderer->getCurrentStyle() != $this->styleName) { 33a25f0a04SGreg Roach $renderer->setCurrentStyle($this->styleName); 34a25f0a04SGreg Roach } 35a25f0a04SGreg Roach $temptext = str_replace("#PAGENUM#", $renderer->pageNo(), $this->text); 36a25f0a04SGreg Roach // underline «title» part of Source item 37*13abd6f3SGreg Roach $temptext = str_replace(['«', '»'], ['<u>', '</u>'], $temptext); 38a25f0a04SGreg Roach 39a25f0a04SGreg Roach // If any text at all 40a25f0a04SGreg Roach if (!empty($temptext)) { 41a25f0a04SGreg Roach // If called by an other element 42a25f0a04SGreg Roach if (!$attrib) { 43a25f0a04SGreg Roach $renderer->write($temptext, $this->color); 44a25f0a04SGreg Roach } else { 45a25f0a04SGreg Roach // Save the start positions 46a25f0a04SGreg Roach $startX = $renderer->getX(); 47a25f0a04SGreg Roach $startY = $renderer->getY(); 48a25f0a04SGreg Roach $width = $renderer->getRemainingWidth(); 49a25f0a04SGreg Roach // If text is wider then page width then wrap it 507820e4d7SGreg Roach if ($renderer->getStringWidth($temptext) > $width) { 51a25f0a04SGreg Roach $lines = explode("\n", $temptext); 52a25f0a04SGreg Roach foreach ($lines as $line) { 53a25f0a04SGreg Roach echo "<div style=\"position:absolute;top:", $startY, "pt;", $renderer->alignRTL, ":", $startX, "pt;width:", $width, "pt;\">"; 54a25f0a04SGreg Roach $line = $renderer->textWrap($line, $width); 55a25f0a04SGreg Roach $startY += $renderer->getTextCellHeight($line); 56a25f0a04SGreg Roach $renderer->setY($startY); 57a25f0a04SGreg Roach $renderer->write($line, $this->color); 58a25f0a04SGreg Roach echo "</div>\n"; 59a25f0a04SGreg Roach } 60a25f0a04SGreg Roach } else { 61a25f0a04SGreg Roach echo "<div style=\"position:absolute;top:", $startY, "pt;", $renderer->alignRTL, ":", $startX, "pt;width:", $width, "pt;\">"; 62a25f0a04SGreg Roach $renderer->write($temptext, $this->color); 63a25f0a04SGreg Roach echo "</div>\n"; 647820e4d7SGreg Roach $renderer->setX($startX + $renderer->getStringWidth($temptext)); 65a25f0a04SGreg Roach if ($renderer->countLines($temptext) != 1) { 66a25f0a04SGreg Roach $renderer->setXy(0, ($startY + $renderer->getTextCellHeight($temptext))); 67a25f0a04SGreg Roach } 68a25f0a04SGreg Roach } 69a25f0a04SGreg Roach } 70a25f0a04SGreg Roach } 71a25f0a04SGreg Roach } 72a25f0a04SGreg Roach 73a25f0a04SGreg Roach /** 74a25f0a04SGreg Roach * Returns the height in points of the text element 75a25f0a04SGreg Roach * The height is already calculated in getWidth() 76a25f0a04SGreg Roach * 77a25f0a04SGreg Roach * @param ReportHtml $html 78a25f0a04SGreg Roach * 79a25f0a04SGreg Roach * @return float 80a25f0a04SGreg Roach */ 81ffd703eaSGreg Roach public function getHeight($html) { 82a25f0a04SGreg Roach $ct = substr_count($this->text, "\n"); 83a25f0a04SGreg Roach if ($ct > 0) { 84a25f0a04SGreg Roach $ct += 1; 85a25f0a04SGreg Roach } 86a25f0a04SGreg Roach $style = $html->getStyle($this->styleName); 87cbc1590aSGreg Roach 88a25f0a04SGreg Roach return ($style["size"] * $ct) * $html->cellHeightRatio; 89a25f0a04SGreg Roach } 90a25f0a04SGreg Roach 91a25f0a04SGreg Roach /** 92a25f0a04SGreg Roach * Get the width of text and wrap it too 93a25f0a04SGreg Roach * 94a25f0a04SGreg Roach * @param ReportHtml $html 95a25f0a04SGreg Roach * 96a25f0a04SGreg Roach * @return array 97a25f0a04SGreg Roach */ 98ffd703eaSGreg Roach public function getWidth($html) { 99a25f0a04SGreg Roach // Setup the style name 100a25f0a04SGreg Roach if ($html->getCurrentStyle() != $this->styleName) { 101a25f0a04SGreg Roach $html->setCurrentStyle($this->styleName); 102a25f0a04SGreg Roach } 103a25f0a04SGreg Roach 104a25f0a04SGreg Roach // Check for the largest font size in the box 105a25f0a04SGreg Roach $fsize = $html->getCurrentStyleHeight(); 106a25f0a04SGreg Roach if ($fsize > $html->largestFontHeight) { 107a25f0a04SGreg Roach $html->largestFontHeight = $fsize; 108a25f0a04SGreg Roach } 109a25f0a04SGreg Roach 110a25f0a04SGreg Roach // Get the line width for the text in points 1117820e4d7SGreg Roach $lw = $html->getStringWidth($this->text); 112a25f0a04SGreg Roach // Line Feed counter - Number of lines in the text 113a25f0a04SGreg Roach $lfct = $html->countLines($this->text); 114a25f0a04SGreg Roach // If there is still remaining wrap width... 115a25f0a04SGreg Roach if ($this->wrapWidthRemaining > 0) { 116a25f0a04SGreg Roach // Check with line counter too! 117102a585eSGreg Roach if ($lw >= $this->wrapWidthRemaining || $lfct > 1) { 118a25f0a04SGreg Roach $newtext = ""; 119a25f0a04SGreg Roach $wrapWidthRemaining = $this->wrapWidthRemaining; 120a25f0a04SGreg Roach $lines = explode("\n", $this->text); 121a25f0a04SGreg Roach // Go throught the text line by line 122a25f0a04SGreg Roach foreach ($lines as $line) { 123a25f0a04SGreg Roach // Line width in points + a little margin 1247820e4d7SGreg Roach $lw = $html->getStringWidth($line); 125a25f0a04SGreg Roach // If the line has to be wraped 126a25f0a04SGreg Roach if ($lw > $wrapWidthRemaining) { 127a25f0a04SGreg Roach $words = explode(" ", $line); 128a25f0a04SGreg Roach $addspace = count($words); 129a25f0a04SGreg Roach $lw = 0; 130a25f0a04SGreg Roach foreach ($words as $word) { 131a25f0a04SGreg Roach $addspace--; 1327820e4d7SGreg Roach $lw += $html->getStringWidth($word . " "); 133a25f0a04SGreg Roach if ($lw <= $wrapWidthRemaining) { 134a25f0a04SGreg Roach $newtext .= $word; 135a25f0a04SGreg Roach if ($addspace != 0) { 136a25f0a04SGreg Roach $newtext .= " "; 137a25f0a04SGreg Roach } 138a25f0a04SGreg Roach } else { 1397820e4d7SGreg Roach $lw = $html->getStringWidth($word . " "); 140a25f0a04SGreg Roach $newtext .= "\n$word"; 141a25f0a04SGreg Roach if ($addspace != 0) { 142a25f0a04SGreg Roach $newtext .= " "; 143a25f0a04SGreg Roach } 144a25f0a04SGreg Roach // Reset the wrap width to the cell width 145a25f0a04SGreg Roach $wrapWidthRemaining = $this->wrapWidthCell; 146a25f0a04SGreg Roach } 147a25f0a04SGreg Roach } 148a25f0a04SGreg Roach } else { 149a25f0a04SGreg Roach $newtext .= $line; 150a25f0a04SGreg Roach } 151a25f0a04SGreg Roach // Check the Line Feed counter 152a25f0a04SGreg Roach if ($lfct > 1) { 153a25f0a04SGreg Roach // Add a new line feed as long as it’s not the last line 154a25f0a04SGreg Roach $newtext .= "\n"; 155a25f0a04SGreg Roach // Reset the line width 156a25f0a04SGreg Roach $lw = 0; 157a25f0a04SGreg Roach // Reset the wrap width to the cell width 158a25f0a04SGreg Roach $wrapWidthRemaining = $this->wrapWidthCell; 159a25f0a04SGreg Roach } 160a25f0a04SGreg Roach $lfct--; 161a25f0a04SGreg Roach } 162a25f0a04SGreg Roach $this->text = $newtext; 163a25f0a04SGreg Roach $lfct = substr_count($this->text, "\n"); 164cbc1590aSGreg Roach 165*13abd6f3SGreg Roach return [$lw, 1, $lfct]; 166a25f0a04SGreg Roach } 167a25f0a04SGreg Roach } 168a25f0a04SGreg Roach $l = 0; 169a25f0a04SGreg Roach $lfct = substr_count($this->text, "\n"); 170a25f0a04SGreg Roach if ($lfct > 0) { 171a25f0a04SGreg Roach $l = 2; 172a25f0a04SGreg Roach } 173cbc1590aSGreg Roach 174*13abd6f3SGreg Roach return [$lw, $l, $lfct]; 175a25f0a04SGreg Roach } 176a25f0a04SGreg Roach} 177