Spaces:
Sleeping
Sleeping
File size: 11,973 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | <?php
// $Header: /cvsroot/html2ps/box.generic.php,v 1.72 2007/01/24 18:55:44 Konstantin Exp $
require_once(HTML2PS_DIR.'globals.php');
class GenericBox {
var $_cache;
var $_css;
var $_left;
var $_top;
var $_parent;
var $baseline;
var $default_baseline;
var $_cached_base_font_size;
function GenericBox() {
$this->_cache = array();
$this->_css = array();
$this->_cached_base_font_size = null;
$this->_left = 0;
$this->_top = 0;
$this->_parent = null;
$this->baseline = 0;
$this->default_baseline = 0;
/**
* Assign an unique box identifier
*/
$GLOBALS['g_box_uid']++;
$this->uid = $GLOBALS['g_box_uid'];
}
function destroy() {
unset($this->_cache);
unset($this->_css);
unset($this->_left);
unset($this->_top);
unset($this->_parent);
unset($this->baseline);
unset($this->default_baseline);
}
/**
* see getProperty for optimization description
*/
function setCSSProperty($code, $value) {
static $cache = array();
if (!isset($cache[$code])) {
$cache[$code] =& CSS::get_handler($code);
};
$cache[$code]->replace_array($value, $this->_css);
}
/**
* Optimization: this function is called very often,
* so even a slight overhead for CSS::get_handler call
* accumulates in a significiant processing delay.
*/
function &getCSSProperty($code) {
static $cache = array();
if (!isset($cache[$code])) {
$cache[$code] =& CSS::get_handler($code);
};
$value =& $cache[$code]->get($this->_css);
return $value;
}
function show_postponed(&$driver) {
$this->show($driver);
}
function copy_style(&$box) {
// TODO: object references
$this->_css = $box->_css;
}
/**
* Optimization: _readCSSLength is usually called several times
* while initializing box object. $base_font_size cound be calculated
* only once and stored in a static variable.
*/
function _readCSSLengths($state, $property_list) {
if (is_null($this->_cached_base_font_size)) {
$font =& $this->getCSSProperty(CSS_FONT);
$this->_cached_base_font_size = $font->size->getPoints();
};
foreach ($property_list as $property) {
$value =& $state->getProperty($property);
if ($value === CSS_PROPERTY_INHERIT) {
$value =& $state->getInheritedProperty($property);
};
if (is_object($value)) {
$value =& $value->copy();
$value->doInherit($state);
$value->units2pt($this->_cached_base_font_size);
};
$this->setCSSProperty($property, $value);
}
}
function _readCSS($state, $property_list) {
foreach ($property_list as $property) {
$value = $state->getProperty($property);
// Note that order is important; composite object-value could be inherited and
// object itself could contain subvalues with 'inherit' value
if ($value === CSS_PROPERTY_INHERIT) {
$value = $state->getInheritedProperty($property);
};
if (is_object($value)) {
$value = $value->copy();
$value->doInherit($state);
};
$this->setCSSProperty($property, $value);
}
}
function readCSS(&$state) {
/**
* Determine font size to be used in this box (required for em/ex units)
*/
$value = $state->getProperty(CSS_FONT);
if ($value === CSS_PROPERTY_INHERIT) {
$value = $state->getInheritedProperty(CSS_FONT);
};
$base_font_size = $state->getBaseFontSize();
if (is_object($value)) {
$value = $value->copy();
$value->doInherit($state);
$value->units2pt($base_font_size);
};
$this->setCSSProperty(CSS_FONT, $value);
/**
* Continue working with other properties
*/
$this->_readCSS($state,
array(CSS_COLOR,
CSS_DISPLAY,
CSS_VISIBILITY));
$this->_readCSSLengths($state,
array(CSS_VERTICAL_ALIGN));
// '-html2ps-link-destination'
global $g_config;
if ($g_config["renderlinks"]) {
$this->_readCSS($state,
array(CSS_HTML2PS_LINK_DESTINATION));
};
// Save ID attribute value
$id = $state->getProperty(CSS_HTML2PS_LINK_DESTINATION);
if (!empty($id)) {
if (!isset($GLOBALS['__html_box_id_map'][$id])) {
$GLOBALS['__html_box_id_map'][$id] =& $this;
};
};
}
function show(&$driver) {
// If debugging mode is on, draw the box outline
global $g_config;
if ($g_config['debugbox']) {
// Copy the border object of current box
$driver->setlinewidth(0.1);
$driver->setrgbcolor(0,0,0);
$driver->rect($this->get_left(), $this->get_top(), $this->get_width(), -$this->get_height());
$driver->stroke();
}
// Set current text color
// Note that text color is used not only for text drawing (for example, list item markers
// are drawn with text color)
$color = $this->getCSSProperty(CSS_COLOR);
$color->apply($driver);
}
/**
* Render box having position: fixed or contained in such box
* (Default behaviour)
*/
function show_fixed(&$driver) {
return $this->show($driver);
}
function pre_reflow_images() {}
function offset($dx, $dy) {
$this->_left += $dx;
$this->_top += $dy;
}
// Calculate the content upper-left corner position in curent flow
function guess_corner(&$parent) {
$this->put_left($parent->_current_x + $this->get_extra_left());
$this->put_top($parent->_current_y - $this->get_extra_top());
}
function put_left($value) {
$this->_left = $value;
}
function put_top($value) {
$this->_top = $value + $this->getBaselineOffset();
}
/**
* Get Y coordinate of the top content area edge
*/
function get_top() {
return
$this->_top -
$this->getBaselineOffset();
}
function get_right() {
return $this->get_left() + $this->get_width();
}
function get_left() {
return $this->_left;
}
function get_bottom() {
return $this->get_top() - $this->get_height();
}
function getBaselineOffset() {
return $this->baseline - $this->default_baseline;
}
function reflow_anchors(&$driver, &$anchors) {
if ($this->is_null()) {
return;
};
$link_destination = $this->getCSSProperty(CSS_HTML2PS_LINK_DESTINATION);
if ($link_destination !== "") {
/**
* Y=0 designates the bottom edge of the first page (without margins)
* Y axis is oriented to the bottom.
*
* Here we calculate the offset from the bottom edge of first page PRINTABLE AREA
* to the bottom edge of the current box
*/
$y2 = $this->get_bottom() - mm2pt($driver->media->margins['bottom']);
/**
* Now let's calculate the number of the page corresponding to this offset.
* Note that $y2>0 for the first page and $y2<0 on all subsequent pages
*/
$page_fraction = $y2 / mm2pt($driver->media->real_height());
/**
* After the last operation we've got the "page fraction" between
* bottom of the first page and box bottom edge;
*
* it will be equal to:
* 1 for the top of the first page,
* 0 for the bottom of the first page
* -Epsilon for the top of the first page
* -1 for the bottom of the second page
* -n+1 for the bottom of the N-th page.
*/
$page_fraction2 = -$page_fraction+1;
/**
* Here:
* 0 for the top of the first page,
* 1 for the bottom of the first page
* 1+Epsilon for the top of the first page
* 2 for the bottom of the second page
* n for the bottom of the N-th page.
*
* Keeping in mind said above, we may calculate the real page number,
* rounding it UP after calculation. The reason of rounding UP is simple:
* pages are numbered starting at 1.
*/
$page = ceil($page_fraction2);
/**
* Now let's calculate the coordinates on this particular page
*
* X coordinate calculation is pretty straight forward (and, actually, unused, as it would be
* a bad idea to scroll PDF horiaontally).
*/
$x = $this->get_left();
/**
* Y coordinate should be calculated relatively to the bottom page edge
*/
$y = mm2pt($driver->media->real_height()) * ($page - $page_fraction2) + mm2pt($driver->media->margins['bottom']);
$anchors[$link_destination] = new Anchor($link_destination,
$page,
$x,
$y);
};
}
function reflow(&$parent, &$context) {}
function reflow_inline() { }
function out_of_flow() {
return false;
}
function get_bottom_margin() { return $this->get_bottom(); }
function get_top_margin() {
return $this->get_top();
}
function get_full_height() { return $this->get_height(); }
function get_width() { return $this->width; }
function get_full_width() {
return $this->width;
}
function get_height() {
return $this->height;
}
function get_baseline() {
return $this->baseline;
}
function is_container() { return false; }
function isVisibleInFlow() { return true; }
function reflow_text() { return true; }
/**
* Note that linebox is started by any non-whitespace inline element; all whitespace elements before
* that moment should be ignored.
*
* @param boolean $linebox_started Flag indicating that a new line box have just started and it already contains
* some inline elements
* @param boolean $previous_whitespace Flag indicating that a previous inline element was an whitespace element.
*/
function reflow_whitespace(&$linebox_started, &$previous_whitespace) {
return;
}
function is_null() {
return false;
}
function isCell() {
return false;
}
function isTableRow() {
return false;
}
function isTableSection() {
return false;
}
// CSS 2.1:
// 9.2.1 Block-level elements and block boxes
// Block-level elements are those elements of the source document that are formatted visually as blocks
// (e.g., paragraphs). Several values of the 'display' property make an element block-level:
// 'block', 'list-item', 'compact' and 'run-in' (part of the time; see compact and run-in boxes), and 'table'.
//
function isBlockLevel() {
return false;
}
function hasAbsolutePositionedParent() {
if (is_null($this->parent)) {
return false;
};
return
$this->parent->getCSSProperty(CSS_POSITION) == POSITION_ABSOLUTE ||
$this->parent->hasAbsolutePositionedParent();
}
function hasFixedPositionedParent() {
if (is_null($this->parent)) {
return false;
};
return
$this->parent->getCSSProperty(CSS_POSITION) == POSITION_FIXED ||
$this->parent->hasFixedPositionedParent();
}
/**
* Box can be expanded if it has no width constrains and
* all it parents has no width constraints
*/
function mayBeExpanded() {
$wc = $this->getCSSProperty(CSS_WIDTH);
if (!$wc->isNull()) { return false; };
if ($this->getCSSProperty(CSS_FLOAT) <> FLOAT_NONE) {
return true;
};
if ($this->getCSSProperty(CSS_POSITION) <> POSITION_STATIC &&
$this->getCSSProperty(CSS_POSITION) <> POSITION_RELATIVE) {
return true;
};
if (is_null($this->parent)) {
return true;
};
return $this->parent->mayBeExpanded();
}
function isLineBreak() {
return false;
}
function get_min_width_natural($context) {
return $this->get_min_width($context);
}
function is_note_call() {
return isset($this->note_call);
}
/* DOM compatibility */
function &get_parent_node() {
return $this->parent;
}
}
?> |