Example #1
0
 function __construct(TableRowFrameDecorator $frame)
 {
     parent::__construct($frame);
 }
Example #2
0
 function __construct(ImageFrameDecorator $frame)
 {
     parent::__construct($frame);
 }
Example #3
0
 function __construct(BlockFrameDecorator $frame)
 {
     parent::__construct($frame);
 }
Example #4
0
 function __construct(Frame $frame)
 {
     parent::__construct($frame);
 }
Example #5
0
 function __construct(AbstractFrameDecorator $frame)
 {
     parent::__construct($frame);
 }
Example #6
0
 /**
  * @param TextFrameDecorator $frame
  * @param FontMetrics $fontMetrics
  */
 public function __construct(TextFrameDecorator $frame, FontMetrics $fontMetrics)
 {
     parent::__construct($frame);
     $this->setFontMetrics($fontMetrics);
 }
Example #7
0
 function __construct(TableFrameDecorator $frame)
 {
     $this->_state = null;
     parent::__construct($frame);
 }
 final function get_min_max_width()
 {
     return $this->_reflower->get_min_max_width();
 }
 /**
  * Determine current frame width based on contents
  *
  * @return float
  */
 final function calculate_auto_width()
 {
     return $this->_reflower->calculate_auto_width();
 }