xref: /webtrees/app/Report/ReportHtmlTextbox.php (revision c7ff415313b94d2d6d06ec673249f39fae9865e9)
1a25f0a04SGreg Roach<?php
2a25f0a04SGreg Roach/**
3a25f0a04SGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 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 ReportHtmlTextbox
20a25f0a04SGreg Roach */
21c1010edaSGreg Roachclass ReportHtmlTextbox extends ReportBaseTextbox
22c1010edaSGreg Roach{
23a25f0a04SGreg Roach    /**
2476692c8bSGreg Roach     * Render the elements.
2576692c8bSGreg Roach     *
26a25f0a04SGreg Roach     * @param ReportHtml $renderer
27*c7ff4153SGreg Roach     *
28*c7ff4153SGreg Roach     * @return void
29a25f0a04SGreg Roach     */
30c1010edaSGreg Roach    public function render($renderer)
31c1010edaSGreg Roach    {
32a25f0a04SGreg Roach        // checkFootnote
3313abd6f3SGreg Roach        $newelements      = [];
3413abd6f3SGreg Roach        $lastelement      = [];
3513abd6f3SGreg Roach        $footnote_element = [];
36a25f0a04SGreg Roach        // Element counter
37a25f0a04SGreg Roach        $cE = count($this->elements);
38a25f0a04SGreg Roach        //-- collapse duplicate elements
39a25f0a04SGreg Roach        for ($i = 0; $i < $cE; $i++) {
40a25f0a04SGreg Roach            $element = $this->elements[$i];
41a25f0a04SGreg Roach            if (is_object($element)) {
42a25f0a04SGreg Roach                if ($element instanceof ReportBaseText) {
43a25f0a04SGreg Roach                    if (!empty($footnote_element)) {
44a25f0a04SGreg Roach                        ksort($footnote_element);
45a25f0a04SGreg Roach                        foreach ($footnote_element as $links) {
46a25f0a04SGreg Roach                            $newelements[] = $links;
47a25f0a04SGreg Roach                        }
4813abd6f3SGreg Roach                        $footnote_element = [];
49a25f0a04SGreg Roach                    }
50a25f0a04SGreg Roach                    if (empty($lastelement)) {
51a25f0a04SGreg Roach                        $lastelement = $element;
52a25f0a04SGreg Roach                    } else {
53a25f0a04SGreg Roach                        // Checking if the Text has the same style
54a25f0a04SGreg Roach                        if ($element->getStyleName() == $lastelement->getStyleName()) {
557a6ee1acSGreg Roach                            $lastelement->addText(str_replace("\n", '<br>', $element->getValue()));
56a25f0a04SGreg Roach                        } elseif (!empty($lastelement)) {
57a25f0a04SGreg Roach                            $newelements[] = $lastelement;
58a25f0a04SGreg Roach                            $lastelement   = $element;
59a25f0a04SGreg Roach                        }
60a25f0a04SGreg Roach                    }
61ce15a17aSGreg Roach                } elseif ($element instanceof ReportBaseFootnote) {
62a25f0a04SGreg Roach                    // Check if the Footnote has been set with it’s link number
63a25f0a04SGreg Roach                    $renderer->checkFootnote($element);
64a25f0a04SGreg Roach                    // Save first the last element if any
65a25f0a04SGreg Roach                    if (!empty($lastelement)) {
66a25f0a04SGreg Roach                        $newelements[] = $lastelement;
6713abd6f3SGreg Roach                        $lastelement   = [];
68a25f0a04SGreg Roach                    }
69a25f0a04SGreg Roach                    // Save the Footnote with it’s link number as key for sorting later
70a25f0a04SGreg Roach                    $footnote_element[$element->num] = $element;
71ce15a17aSGreg Roach                } elseif (!($element instanceof ReportBaseFootnote) || trim($element->getValue()) != '') {
72ce15a17aSGreg Roach                    // Do not keep empty footnotes
73a25f0a04SGreg Roach                    if (!empty($footnote_element)) {
74a25f0a04SGreg Roach                        ksort($footnote_element);
75a25f0a04SGreg Roach                        foreach ($footnote_element as $links) {
76a25f0a04SGreg Roach                            $newelements[] = $links;
77a25f0a04SGreg Roach                        }
7813abd6f3SGreg Roach                        $footnote_element = [];
79a25f0a04SGreg Roach                    }
80a25f0a04SGreg Roach                    if (!empty($lastelement)) {
81a25f0a04SGreg Roach                        $newelements[] = $lastelement;
8213abd6f3SGreg Roach                        $lastelement   = [];
83a25f0a04SGreg Roach                    }
84a25f0a04SGreg Roach                    $newelements[] = $element;
85a25f0a04SGreg Roach                }
86a25f0a04SGreg Roach            } else {
87a25f0a04SGreg Roach                if (!empty($lastelement)) {
88a25f0a04SGreg Roach                    $newelements[] = $lastelement;
8913abd6f3SGreg Roach                    $lastelement   = [];
90a25f0a04SGreg Roach                }
91a25f0a04SGreg Roach                if (!empty($footnote_element)) {
92a25f0a04SGreg Roach                    ksort($footnote_element);
93a25f0a04SGreg Roach                    foreach ($footnote_element as $links) {
94a25f0a04SGreg Roach                        $newelements[] = $links;
95a25f0a04SGreg Roach                    }
9613abd6f3SGreg Roach                    $footnote_element = [];
97a25f0a04SGreg Roach                }
98a25f0a04SGreg Roach                $newelements[] = $element;
99a25f0a04SGreg Roach            }
100a25f0a04SGreg Roach        }
101a25f0a04SGreg Roach        if (!empty($lastelement)) {
102a25f0a04SGreg Roach            $newelements[] = $lastelement;
103a25f0a04SGreg Roach        }
104a25f0a04SGreg Roach        if (!empty($footnote_element)) {
105a25f0a04SGreg Roach            ksort($footnote_element);
106a25f0a04SGreg Roach            foreach ($footnote_element as $links) {
107a25f0a04SGreg Roach                $newelements[] = $links;
108a25f0a04SGreg Roach            }
109a25f0a04SGreg Roach        }
110a25f0a04SGreg Roach        $this->elements = $newelements;
111a25f0a04SGreg Roach        unset($footnote_element, $lastelement, $links, $newelements);
112a25f0a04SGreg Roach
113a25f0a04SGreg Roach        $cP = 0; // Class Padding
114a25f0a04SGreg Roach
115a25f0a04SGreg Roach        // Used with line breaks and cell height calculation within this box only
116a25f0a04SGreg Roach        $renderer->largestFontHeight = 0;
117a25f0a04SGreg Roach
118a25f0a04SGreg Roach        // Current position
1197a6ee1acSGreg Roach        if ($this->left == '.') {
1207820e4d7SGreg Roach            $cX = $renderer->getX();
121a25f0a04SGreg Roach        } else {
122a25f0a04SGreg Roach            $cX = $this->left;
1237820e4d7SGreg Roach            $renderer->setX($cX);
124a25f0a04SGreg Roach        }
125a25f0a04SGreg Roach        // Current position (top)
1267a6ee1acSGreg Roach        if ($this->top == '.') {
1273844edd4SGreg Roach            $this->top = $renderer->getY();
128a25f0a04SGreg Roach        } else {
1297820e4d7SGreg Roach            $renderer->setY($this->top);
130a25f0a04SGreg Roach        }
131a25f0a04SGreg Roach
132a25f0a04SGreg Roach        // Check the width if set to page wide OR set by xml to larger then page wide
133a25f0a04SGreg Roach        if ($this->width == 0 || $this->width > $renderer->getRemainingWidth()) {
134a25f0a04SGreg Roach            $this->width = $renderer->getRemainingWidth();
135a25f0a04SGreg Roach        }
136a25f0a04SGreg Roach        // Setup the CellPadding
137a25f0a04SGreg Roach        if ($this->padding) {
138a25f0a04SGreg Roach            $cP = $renderer->cPadding;
139a25f0a04SGreg Roach        }
140a25f0a04SGreg Roach
141a25f0a04SGreg Roach        // For padding, we have to use less wrap width
142a25f0a04SGreg Roach        $cW = $this->width - ($cP * 2);
143a25f0a04SGreg Roach
144a25f0a04SGreg Roach        //-- calculate the text box height
145a25f0a04SGreg Roach        // Number of lines, will be converted to height
146a25f0a04SGreg Roach        $cHT = 0;
147a25f0a04SGreg Roach        // Element height (exept text)
148a25f0a04SGreg Roach        $eH = 0;
149a25f0a04SGreg Roach        // Footnote height (in points)
150a25f0a04SGreg Roach        $fH = 0;
151a25f0a04SGreg Roach        $w  = 0;
152a25f0a04SGreg Roach        //-- $lw is an array
153a25f0a04SGreg Roach        // 0 => last line width
154a25f0a04SGreg Roach        // 1 => 1 if text was wrapped, 0 if text did not wrap
155a25f0a04SGreg Roach        // 2 => number of LF
15613abd6f3SGreg Roach        $lw = [];
157a25f0a04SGreg Roach        // Element counter
158a25f0a04SGreg Roach        $cE = count($this->elements);
159a25f0a04SGreg Roach        for ($i = 0; $i < $cE; $i++) {
160a25f0a04SGreg Roach            if (is_object($this->elements[$i])) {
161a25f0a04SGreg Roach                $ew = $this->elements[$i]->setWrapWidth($cW - $w - 2, $cW);
162a25f0a04SGreg Roach                if ($ew == $cW) {
163a25f0a04SGreg Roach                    $w = 0;
164a25f0a04SGreg Roach                }
165a25f0a04SGreg Roach                $lw = $this->elements[$i]->getWidth($renderer);
166a25f0a04SGreg Roach                // Text is already gets the # LF
167a25f0a04SGreg Roach                $cHT += $lw[2];
168a25f0a04SGreg Roach                if ($lw[1] == 1) {
169a25f0a04SGreg Roach                    $w = $lw[0];
170a25f0a04SGreg Roach                } elseif ($lw[1] == 2) {
171a25f0a04SGreg Roach                    $w = 0;
172a25f0a04SGreg Roach                } else {
173a25f0a04SGreg Roach                    $w += $lw[0];
174a25f0a04SGreg Roach                }
175a25f0a04SGreg Roach                if ($w > $cW) {
176a25f0a04SGreg Roach                    $w = $lw[0];
177a25f0a04SGreg Roach                }
178a25f0a04SGreg Roach                // For anything else but text (images), get the height
179a25f0a04SGreg Roach                $eH += $this->elements[$i]->getHeight($renderer);
180a25f0a04SGreg Roach            } else {
181a25f0a04SGreg Roach                $fH += abs($renderer->getFootnotesHeight($cW));
182a25f0a04SGreg Roach            }
183a25f0a04SGreg Roach        }
184a25f0a04SGreg Roach        // Add up what’s the final height
185a25f0a04SGreg Roach        $cH = $this->height;
186a25f0a04SGreg Roach        // If any element exist
187a25f0a04SGreg Roach        if ($cE > 0) {
188a25f0a04SGreg Roach            // Check if this is text or some other element, like images
189a25f0a04SGreg Roach            if ($eH == 0) {
190a25f0a04SGreg Roach                // Number of LF but at least one line
191a25f0a04SGreg Roach                $cHT = ($cHT + 1) * $renderer->cellHeightRatio;
192a25f0a04SGreg Roach                // Calculate the cell hight with the largest font size used
193a25f0a04SGreg Roach                $cHT = $cHT * $renderer->largestFontHeight;
194a25f0a04SGreg Roach                if ($cH < $cHT) {
195a25f0a04SGreg Roach                    $cH = $cHT;
196a25f0a04SGreg Roach                }
197ce15a17aSGreg Roach            } else {
198ce15a17aSGreg Roach                // This is any other element
199a25f0a04SGreg Roach                if ($cH < $eH) {
200a25f0a04SGreg Roach                    $cH = $eH;
201a25f0a04SGreg Roach                }
202a25f0a04SGreg Roach                // Add Footnote height to the rest of the height
203a25f0a04SGreg Roach                $cH += $fH;
204a25f0a04SGreg Roach            }
205a25f0a04SGreg Roach        }
206a25f0a04SGreg Roach
207a25f0a04SGreg Roach        unset($lw, $cHT, $fH, $w);
208a25f0a04SGreg Roach
209a25f0a04SGreg Roach        // Finaly, check the last cells height
210a25f0a04SGreg Roach        if ($cH < $renderer->lastCellHeight) {
211a25f0a04SGreg Roach            $cH = $renderer->lastCellHeight;
212a25f0a04SGreg Roach        }
213a25f0a04SGreg Roach        // Update max Y incase of a pagebreak
214a25f0a04SGreg Roach        // We don't want to over write any images or other stuff
215a25f0a04SGreg Roach        $renderer->addMaxY($this->top + $cH);
216a25f0a04SGreg Roach
217a25f0a04SGreg Roach        // Start to print HTML
2187a6ee1acSGreg Roach        echo '<div style="position:absolute;top:', $this->top, 'pt;';
219a25f0a04SGreg Roach        // LTR (left) or RTL (right)
2207a6ee1acSGreg Roach        echo $renderer->alignRTL, ':', $cX, 'pt;';
221a25f0a04SGreg Roach        // Background color
222a25f0a04SGreg Roach        if ($this->fill) {
223a25f0a04SGreg Roach            if (!empty($this->bgcolor)) {
2247a6ee1acSGreg Roach                echo ' background-color:', $this->bgcolor, ';';
225a25f0a04SGreg Roach            }
226a25f0a04SGreg Roach        }
227a25f0a04SGreg Roach        // Print padding only when it’s set
228a25f0a04SGreg Roach        if ($this->padding) {
229a25f0a04SGreg Roach            // Use Cell around padding to support RTL also
2307a6ee1acSGreg Roach            echo 'padding:', $cP, 'pt;';
231a25f0a04SGreg Roach        }
232a25f0a04SGreg Roach        // Border setup
233a25f0a04SGreg Roach        if ($this->border) {
2347a6ee1acSGreg Roach            echo ' border:solid black 1pt;';
2357a6ee1acSGreg Roach            echo 'width:', ($this->width - 1 - ($cP * 2)), 'pt;height:', $cH - 1, 'pt;';
236a25f0a04SGreg Roach        } else {
2377a6ee1acSGreg Roach            echo 'width:', ($this->width - ($cP * 2)), 'pt;height:', $cH, 'pt;';
238a25f0a04SGreg Roach        }
2397a6ee1acSGreg Roach        echo '">';
240a25f0a04SGreg Roach
241a25f0a04SGreg Roach        // Do a little "margin" trick before print
242a25f0a04SGreg Roach        // to get the correct current position => "."
2437820e4d7SGreg Roach        $cXT = $renderer->getX();
2447820e4d7SGreg Roach        $cYT = $renderer->getY();
2457820e4d7SGreg Roach        $renderer->setXy(0, 0);
246a25f0a04SGreg Roach
247a25f0a04SGreg Roach        // Print the text elements
248a25f0a04SGreg Roach        foreach ($this->elements as $element) {
249a25f0a04SGreg Roach            if (is_object($element)) {
250a25f0a04SGreg Roach                $element->render($renderer, $cX, false);
2517a6ee1acSGreg Roach            } elseif (is_string($element) && $element == 'footnotetexts') {
2527820e4d7SGreg Roach                $renderer->footnotes();
2537a6ee1acSGreg Roach            } elseif (is_string($element) && $element == 'addpage') {
2547820e4d7SGreg Roach                $renderer->addPage();
255a25f0a04SGreg Roach            }
256a25f0a04SGreg Roach        }
257a25f0a04SGreg Roach        echo "</div>\n";
258a25f0a04SGreg Roach
259a25f0a04SGreg Roach        // Reset "margins"
2607820e4d7SGreg Roach        $renderer->setXy($cXT, $cYT);
261a25f0a04SGreg Roach        // This will be mostly used to trick the multiple images last height
262a25f0a04SGreg Roach        if ($this->reseth) {
263a25f0a04SGreg Roach            $cH = 0;
264a25f0a04SGreg Roach        }
265a25f0a04SGreg Roach        // New line and some clean up
266a25f0a04SGreg Roach        if (!$this->newline) {
2677820e4d7SGreg Roach            $renderer->setXy($cX + $this->width, $this->top);
268a25f0a04SGreg Roach            $renderer->lastCellHeight = $cH;
269a25f0a04SGreg Roach        } else {
2707820e4d7SGreg Roach            $renderer->setXy(0, $this->top + $cH + ($cP * 2));
271a25f0a04SGreg Roach            $renderer->lastCellHeight = 0;
272a25f0a04SGreg Roach        }
273a25f0a04SGreg Roach    }
274a25f0a04SGreg Roach}
275