/**
  * Check to see if the current font is fixed width 
  * @returns boolean true if it is fixed width
  */
 public function isFixedWidth()
 {
     if ($this->direction != -1) {
         return $this->font_metrics[$this->direction]->isFixedWidth();
     } else {
         return parent::isFixedWidth();
     }
 }