Home
last modified time | relevance | path

Searched refs:context (Results 626 – 650 of 1053) sorted by path

1...<<21222324252627282930>>...43

/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.inline.php342 function reflow_static(&$parent, &$context) { argument
343 GenericFormattedBox::reflow($parent, $context);
371 $child->reflow($parent, $context);
391 $context->pop_collapsed_margin();
392 $context->push_collapsed_margin( 0 );
448 function get_min_width(&$context) { argument
462 $minw = $this->content[0]->get_min_width($context);
467 $minw = max($minw, $item->get_min_width($context));
480 function get_max_width_natural(&$context, $limit=10E6) { argument
481 return $this->get_max_width($context, $limit);
H A Dbox.input.textarea.php31 function get_min_width(&$context) { argument
32 return $this->get_max_width($context);
35 function get_max_width(&$context) { argument
H A Dbox.legend.php22 function reflow(&$parent, &$context) { argument
23 GenericFormattedBox::reflow($parent, $context);
30 $this->put_full_width($this->get_max_width($context));
33 $this->reflow_content($context);
H A Dbox.list-item.php69 function reflow(&$parent, &$context) { argument
80 BlockBox::reflow($parent, $context);
H A Dbox.note-call.class.php81 function reflow(&$parent, &$context) { argument
97 $this->_note_content->reflow($this, $context);
101 $this->_note_marker_box->reflow($this, $context);
105 $this->_note_call_box->reflow($this, $context);
H A Dbox.null.php5 function get_min_width(&$context) { return 0; } argument
6 function get_max_width(&$context) { return 0; } argument
27 function reflow_static(&$parent, &$context) { argument
H A Dbox.page.margin.class.php121 $context = new FlowContext;
122 $this->_position($media, $boxes, $context);
129 $this->reflow_content($context);
145 $context = new FlowContext;
184 function _position($media, $boxes, $context) { argument
197 function _position($media, $boxes, $context) { argument
210 function _position($media, $boxes, $context) { argument
228 function _position($media, $boxes, $context) { argument
246 function _position($media, $boxes, $context) { argument
264 function _position($media, $boxes, $context) { argument
[all …]
H A Dbox.radiobutton.php61 function get_min_width(&$context) { argument
62 return $this->get_full_width($context);
65 function get_max_width(&$context) { argument
66 return $this->get_full_width($context);
69 function get_max_width_natural(&$context) { argument
70 return $this->get_full_width($context);
73 function reflow(&$parent, &$context) { argument
74 GenericFormattedBox::reflow($parent, $context);
H A Dbox.table.cell.php28 function get_min_width(&$context) { argument
52 $min_width = $this->get_min_nowrap_width($context);
70 $this->content[$start_index]->get_min_width($context);
263 function reflow(&$parent, &$context) { argument
264 GenericFormattedBox::reflow($parent, $context);
300 $context->push();
301 $context->push_container_uid($this->uid);
304 $this->reflow_content($context);
310 $float_bottom = $context->float_bottom();
317 $context->pop_container_uid();
[all …]
H A Dbox.table.php647 function get_min_width(&$context) { argument
683 function get_max_width(&$context) { argument
963 function reflow(&$parent, &$context) { argument
973 function reflow_absolute(&$context) { argument
996 $this->reflow_content($context);
1039 $parent->close_line($context);
1063 $this->reflow_content($context);
1068 $context->pop_collapsed_margin();
1069 $context->pop_collapsed_margin();
1079 $parent->close_line($context);
[all …]
H A Dbox.table.row.php140 function get_table_columns_max_widths(&$context) { argument
148 $widths[] = $this->content[$i]->get_max_width($context);
155 function get_table_columns_min_widths(&$context) { argument
163 $widths[] = $this->content[$i]->get_min_width($context);
H A Dbox.text.php181 function get_min_width_natural(&$context) { argument
185 function get_min_width(&$context) { argument
189 function get_max_width(&$context) { argument
199 function maybe_line_break(&$parent, &$context) { argument
221 $float = $context->point_in_floats($right_x, $parent->_current_y);
261 $parent->close_line($context);
282 $this->save_wrapped($wrappable, $parent, $context);
289 function save_wrapped($wrappable, &$parent, &$context) { argument
295 function reflow(&$parent, &$context) { argument
329 $context->pop_collapsed_margin();
[all …]
H A Dbox.text.string.php46 function get_min_width(&$context) { argument
50 function get_max_width(&$context) { argument
H A Dbox.utils.text-align.inc.php4 function ta_left(&$box, &$context, $lastline) { argument
8 function ta_center(&$box, &$context, $lastline) { argument
9 $delta = $box->_line_length_delta($context) / 2;
22 function ta_right(&$box, &$context, $lastline) { argument
23 $delta = $box->_line_length_delta($context);
36 function ta_justify(&$box, &$context, $lastline) { argument
48 $delta = $box->_line_length_delta($context);
H A Dbox.whitespace.php45 function get_min_width(&$context) { argument
49 function get_max_width(&$context) { argument
62 function reflow(&$parent, &$context) { argument
76 } elseif ($this->maybe_line_break($parent, $context)) {
81 parent::reflow($parent, $context);
H A Dfilter.post.positioned.class.php6 function PostTreeFilterPositioned(&$context) { argument
7 $this->_context =& $context;
H A Dlayout.default.class.php6 function process(&$box, &$media, &$driver, &$context) { argument
49 $context->push_viewport($viewport);
51 $box->reflow($fake_parent, $context);
73 for ($i=0, $num_positioned = count($context->absolute_positioned); $i < $num_positioned; $i++) {
74 $context->push();
75 $context->absolute_positioned[$i]->reflow_absolute($context);
76 $context->pop();
80 for ($i=0, $num_positioned = count($context->fixed_positioned); $i < $num_positioned; $i++) {
81 $context->push();
82 $context->fixed_positioned[$i]->reflow_fixed($context);
[all …]
H A Dlayout.vertical.php10 function apply_clear($box, $y, &$context) { argument
15 $floats =& $context->current_floats();
28 $floats =& $context->current_floats();
H A Dpipeline.class.php796 $this->_show_item($box, $offset, $context, $media, $postponed_filter);
810 $context->sort_absolute_positioned_by_z_index();
877 $this->renderAbsolutePositioned($context);
879 $this->renderFixedPositioned($context);
1080 function renderAbsolutePositioned(&$context) { argument
1082 $current_box =& $context->absolute_positioned[$j];
1095 function renderFixedPositioned(&$context) { argument
1096 for ($j=0, $size = count($context->fixed_positioned); $j<$size; $j++) {
1097 $current_box =& $context->fixed_positioned[$j];
1176 $context = new FlowContext;
[all …]
H A Drender.queue.class.php14 function set_root_context(&$context) { argument
15 $this->_root_context =& $context;
H A Dstrategy.table.layout.auto.php7 function apply($table, &$context) { argument
9 return $this->table_columns_fit($table, $width, $context);
12 function use_colspans(&$table, $widths, &$context, $width_fun, $minwc, $maxwc) { argument
20 $cell_width = $cell->$width_fun($context);
68 function table_columns_fit(&$table, $width, &$context) { argument
69 $minw = $table->get_table_columns_min_widths($context);
70 $maxw = $table->get_table_columns_max_widths($context);
72 $minw = $this->use_colspans($table, $minw, $context, 'get_min_width', $minw, $maxw);
73 $maxw = $this->use_colspans($table, $maxw, $context, 'get_max_width', $minw, $maxw);
100 $minwc = $table->_table_apply_colspans($minwc, $context, 'get_min_width', $minwc, $maxwc);
[all …]
H A Dstrategy.table.layout.fixed.php7 function apply($table, &$context) { argument
H A Dstrategy.width.absolute.positioned.php11 function apply(&$box, &$context) { argument
57 $preferred_minimum_width = $box->get_preferred_minimum_width($context);
62 $preferred_width = $box->get_preferred_width($context);
H A Dstrategy.width.max.natural.php24 function apply(&$box, &$context) { argument
41 $this->add_width($child->get_max_width_natural($context, $this->_limit));
47 $delta = $child->get_max_width($context, $this->_limit);
49 $delta = $child->get_max_width_natural($context, $this->_limit);
55 $this->_cmaxw = $child->get_max_width_natural($context, $this->_limit);
/plugin/html2pdf/html2pdf/html2ps/features/
H A Dtoc.php115 $context =& new FlowContext();
116 …eline->layout_engine->process($toc_box_document, $media, $pipeline->get_output_driver(), $context);

1...<<21222324252627282930>>...43