page_frame_decorator.cls.php
来自「国外很不错的一个开源OA系统Group-Office」· PHP 代码 · 共 537 行 · 第 1/2 页
PHP
537 行
<?php/** * DOMPDF - PHP5 HTML to PDF renderer * * File: $RCSfile: page_frame_decorator.cls.php,v $ * Created on: 2004-06-15 * * Copyright (c) 2004 - Benj Carson <benjcarson@digitaljunkies.ca> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library in the file LICENSE.LGPL; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA * * Alternatively, you may distribute this software under the terms of the * PHP License, version 3.0 or later. A copy of this license should have * been distributed with this file in the file LICENSE.PHP . If this is not * the case, you can obtain a copy at http://www.php.net/license/3_0.txt. * * The latest version of DOMPDF might be available at: * http://www.digitaljunkies.ca/dompdf * * @link http://www.digitaljunkies.ca/dompdf * @copyright 2004 Benj Carson * @author Benj Carson <benjcarson@digitaljunkies.ca> * @package dompdf * @version 0.5.1 *//* $Id: page_frame_decorator.cls.php,v 1.2 2006/07/21 10:46:19 mschering Exp $ *//** * Decorates frames for page layout * * @access private * @package dompdf */class Page_Frame_Decorator extends Frame_Decorator { /** * y value of bottom page margin * * @var float */ protected $_bottom_page_margin; /** * Flag indicating page is full. * * @var bool */ protected $_page_full; /** * Number of tables currently being reflowed * * @var int */ protected $_in_table; /** * The pdf renderer * * @var Renderer */ protected $_renderer; //........................................................................ /** * Class constructor * * @param Frame $frame the frame to decorate */ function __construct(Frame $frame, DOMPDF $dompdf) { parent::__construct($frame, $dompdf); $this->_page_full = false; $this->_in_table = 0; $this->_bottom_page_margin = null; } /** * Set the renderer used for this pdf * * @param Renderer $renderer the renderer to use */ function set_renderer($renderer) { $this->_renderer = $renderer; } /** * Return the renderer used for this pdf * * @return Renderer */ function get_renderer() { return $this->_renderer; } /** * Set the frame's containing block. Overridden to set $this->_bottom_page_margin. * * @param float $x * @param float $y * @param float $w * @param float $h */ function set_containing_block($x = null, $y = null, $w = null, $h = null) { parent::set_containing_block($x,$y,$w,$h); $w = $this->get_containing_block("w"); if ( isset($h) ) $this->_bottom_page_margin = $h; // - $this->_frame->get_style()->length_in_pt($this->_frame->get_style()->margin_bottom, $w); } /** * Returns true if the page is full and is no longer accepting frames. * * @return bool */ function is_full() { return $this->_page_full; } /** * Start a new page by resetting the full flag. */ function next_page() { $this->_renderer->new_page(); $this->_page_full = false; } /** * Indicate to the page that a table is currently being reflowed. */ function table_reflow_start() { $this->_in_table++; } /** * Indicate to the page that table reflow is finished. */ function table_reflow_end() { $this->_in_table--; } /** * Check if a forced page break is required before $frame. This uses the * frame's page_break_before property as well as the preceeding frame's * page_break_after property. * * @link http://www.w3.org/TR/CSS21/page.html#forced * * @param Frame $frame the frame to check * @return bool true if a page break occured */ function check_forced_page_break(Frame $frame) { // Skip check if page is already split if ( $this->_page_full ) return; $block_types = array("block", "list-item", "table"); $page_breaks = array("always", "left", "right"); $style = $frame->get_style(); if ( !in_array($style->display, $block_types) ) return false; // Find the previous block-level sibling $prev = $frame->get_prev_sibling(); while ( $prev && !in_array($prev->get_style()->display, $block_types) ) $prev = $prev->get_prev_sibling(); if ( in_array($style->page_break_before, $page_breaks) ) { // Prevent cascading splits $frame->split(); // We have to grab the style again here because split() resets // $frame->style to the frame's orignal style. $frame->get_style()->page_break_before = "auto"; $this->_page_full = true; return true; } if ( ($prev && in_array($prev->get_style()->page_break_after, $page_breaks)) ) { // Prevent cascading splits $frame->split(); $prev->get_style()->page_break_after = "auto"; $this->_page_full = true; return true; } return false; } /** * Determine if a page break is allowed before $frame * * @param Frame $frame the frame to check * @return bool true if a break is allowed, false otherwise */ protected function _page_break_allowed(Frame $frame) { /** * * http://www.w3.org/TR/CSS21/page.html#allowed-page-breaks * /* * In the normal flow, page breaks can occur at the following places: * * 1. In the vertical margin between block boxes. When a page * break occurs here, the used values of the relevant * 'margin-top' and 'margin-bottom' properties are set to '0'. * 2. Between line boxes inside a block box. * * These breaks are subject to the following rules: * * * Rule A: Breaking at (1) is allowed only if the * 'page-break-after' and 'page-break-before' properties of * all the elements generating boxes that meet at this margin * allow it, which is when at least one of them has the value * 'always', 'left', or 'right', or when all of them are * 'auto'. * * * Rule B: However, if all of them are 'auto' and the * nearest common ancestor of all the elements has a * 'page-break-inside' value of 'avoid', then breaking here is * not allowed. * * * Rule C: Breaking at (2) is allowed only if the number of * line boxes between the break and the start of the enclosing * block box is the value of 'orphans' or more, and the number * of line boxes between the break and the end of the box is * the value of 'widows' or more. * * * Rule D: In addition, breaking at (2) is allowed only if * the 'page-break-inside' property is 'auto'. * * If the above doesn't provide enough break points to keep * content from overflowing the page boxes, then rules B and D are * dropped in order to find additional breakpoints. * * If that still does not lead to sufficient break points, rules A * and C are dropped as well, to find still more break points. * * [endquote] * * We will also allow breaks between table rows. However, when * splitting a table, the table headers should carry over to the * next page (but they don't yet). */ $block_types = array("block", "list-item", "table");// echo "\nbreak_allowed: " . $frame->get_node()->nodeName ."\n"; $display = $frame->get_style()->display; // Block Frames (1): if ( in_array($display, $block_types) ) {
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?