Lines Matching refs:handler

182   $handler =& CSS::get_handler(CSS_HTML2PS_LINK_DESTINATION);
183 $handler->css($root->get_attribute('name'), $pipeline);
190 $handler =& CSS::get_handler(CSS_HTML2PS_LINK_DESTINATION);
191 $handler->css($root->get_attribute('id'), $pipeline);
199 $handler =& CSS::get_handler(CSS_HTML2PS_LINK_TARGET);
200 $handler->css($root->get_attribute('href'), $pipeline);
208 $handler =& CSS::get_handler(CSS_BORDER);
212 $handler->css('inset black 1px', $pipeline);
215 $handler->css('none', $pipeline);
223 $handler =& CSS::get_handler(CSS_PADDING_TOP);
224 $handler->css((int)$root->get_attribute('marginheight').'px',$pipeline);
225 $handler =& CSS::get_handler(CSS_PADDING_BOTTOM);
226 $handler->css((int)$root->get_attribute('marginheight').'px',$pipeline);
232 $handler =& CSS::get_handler(CSS_PADDING_RIGHT);
233 $handler->css((int)$root->get_attribute('marginwidth').'px',$pipeline);
234 $handler =& CSS::get_handler(CSS_PADDING_LEFT);
235 $handler->css((int)$root->get_attribute('marginwidth').'px',$pipeline);
243 $handler =& CSS::get_handler(CSS_COLOR);
244 $handler->css($root->get_attribute('text'),$pipeline);
270 $handler =& CSS::get_handler(CSS_MARGIN_TOP);
271 $handler->css((int)$root->get_attribute('topmargin').'px',$pipeline);
277 $handler =& CSS::get_handler(CSS_MARGIN_LEFT);
278 $handler->css((int)$root->get_attribute('leftmargin').'px',$pipeline);
321 $handler =& CSS::get_handler(CSS_PADDING_LEFT);
322 $handler->css((int)$root->get_attribute('hspace').'px',$pipeline);
323 $handler =& CSS::get_handler(CSS_PADDING_RIGHT);
324 $handler->css((int)$root->get_attribute('hspace').'px',$pipeline);
334 $handler =& CSS::get_handler(CSS_PADDING_TOP);
335 $handler->css((int)$root->get_attribute('vspace').'px',$pipeline);
336 $handler =& CSS::get_handler(CSS_PADDING_BOTTOM);
337 $handler->css((int)$root->get_attribute('vspace').'px',$pipeline);
346 $handler =& CSS::get_handler(CSS_BACKGROUND_IMAGE);
347 $handler->css('url('.$root->get_attribute('background').')',$pipeline);
378 $handler =& CSS::get_handler(CSS_VERTICAL_ALIGN);
380 $handler->replace($handler->parse($root->get_attribute('align')),
388 $handler =& CSS::get_handler(CSS_HTML2PS_LOCALALIGN);
393 $handler->replace(LA_LEFT,
397 $handler->replace(LA_CENTER,
401 $handler->replace(LA_RIGHT,
405 $handler->replace(LA_LEFT,
544 $handler =& CSS::get_handler(CSS_TEXT_ALIGN);
547 $handler->css('left',$pipeline);
550 $handler->css('right',$pipeline);
560 $handler =& CSS::get_handler(CSS_TEXT_ALIGN);
561 $handler->css($root->get_attribute('align'),$pipeline);
563 $handler =& CSS::get_handler(CSS_HTML2PS_ALIGN);
564 $handler->css($root->get_attribute('align'),$pipeline);
574 $handler =& CSS::get_handler(CSS_VERTICAL_ALIGN);
575 $handler->css($root->get_attribute('valign'),$pipeline);
582 $handler =& CSS::get_handler(CSS_VERTICAL_ALIGN);
583 $handler->css($root->get_attribute('valign'),
593 $handler =& CSS::get_handler(CSS_BACKGROUND_COLOR);
594 $handler->css($root->get_attribute('bgcolor'), $pipeline);
622 $handler =& CSS::get_handler(CSS_HEIGHT);
626 $handler->css($value,$pipeline);
634 $handler =& CSS::get_handler(CSS_MIN_HEIGHT);
638 $handler->css($value,$pipeline);
697 $handler =& CSS::get_handler(CSS_FONT_SIZE);
698 $handler->css($newsize, $pipeline);
704 $handler =& CSS::get_handler(CSS_COLOR);
705 $handler->css($root->get_attribute('color'),$pipeline);
711 $handler =& CSS::get_handler(CSS_FONT_FAMILY);
712 $handler->css($root->get_attribute('face'), $pipeline);
718 $handler =& CSS::get_handler(CSS_HTML2PS_FORM_ACTION);
720 $handler->css($pipeline->guess_url($root->get_attribute('action')),$pipeline);
722 $handler->css(null,$pipeline);
729 $handler =& CSS::get_handler(CSS_HTML2PS_FORM_RADIOGROUP);
731 $handler->css($root->get_attribute('name'),$pipeline);
754 $handler =& CSS::get_handler(CSS_WIDTH);
756 $handler->css($width, $pipeline);
768 $handler =& CSS::get_handler(CSS_HTML2PS_CELLSPACING);
769 $handler->replace(Value::fromData((int)$root->get_attribute('cellspacing'), UNIT_PX),
777 $handler =& CSS::get_handler(CSS_HTML2PS_CELLPADDING);
778 $handler->replace(Value::fromData((int)$root->get_attribute('cellpadding'), UNIT_PX),
786 $handler =& CSS::get_handler(CSS_HTML2PS_LIST_COUNTER);
788 $handler->replace((int)$root->get_attribute('start'),
807 $handler =& CSS::get_handler(CSS_LIST_STYLE_TYPE);
812 $handler->replace(LST_DISC, $css_state);
815 $handler->replace(LST_CIRCLE, $css_state);
818 $handler->replace(LST_SQUARE, $css_state);
837 $handler =& CSS::get_handler(CSS_LIST_STYLE_TYPE);
842 $handler->replace(LST_DECIMAL, $css_state);
845 $handler->replace(LST_LOWER_LATIN, $css_state);
848 $handler->replace(LST_UPPER_LATIN, $css_state);
851 $handler->replace(LST_LOWER_ROMAN, $css_state);
854 $handler->replace(LST_UPPER_ROMAN, $css_state);
864 $handler =& CSS::get_handler(CSS_HEIGHT);
865 $handler->css(sprintf('%dem', (int)$root->get_attribute('rows')*1.40),$pipeline);
871 $handler =& CSS::get_handler(CSS_WIDTH);
872 $handler->css(sprintf('%dem', (int)$root->get_attribute('cols')*0.675),$pipeline);
881 $handler =& CSS::get_handler(CSS_BORDER_COLOR);
882 $handler->css($root->get_attribute('color'), $pipeline);