Lines Matching refs:this

23 		$this->colspan = $colspan;
24 $this->rowspan = $rowspan;
28 $this->colspan = $colspan;
29 $this->rowspan = $rowspan;
33 return $this->colspan;
37 return $this->rowspan;
42 if ($this->rowspan > 0) {
43 return new CellSize($this->colspan, $this->rowspan - 1);
50 return "<c=$this->colspan,r=$this->rowspan>";
72 if ($this->inTable) {
75 $this->decorator->p_open();
83 if ($this->inTable) {
84 $this->decorator->linebreak();
86 $this->decorator->p_close();
98 if ($this->inTable) {
99 $this->decorator->cdata($text);
101 $this->decorator->unformatted($text);
113 $this->row = CellSize::makeRow($maxcols);
114 $this->decorator->table_open($maxcols, $numrows, $pos);
115 $this->inTable = true;
119 $this->decorator->table_close($pos);
120 $this->inTable = false;
127 $this->column = 0;
128 $this->decorator->tablerow_open();
135 $this->decorator->tablerow_close();
136 $this->computeCline();
137 $this->computeNextLine();
149 $numberOfPlaceholders = $this->computePlaceholders($colspan, $rowspan);
151 $this->decorator->tableheader_open(1, null, 1);
152 $this->decorator->tableheader_close(1, null, 1);
154 $this->decorator->tableheader_open($colspan, $align, $rowspan);
165 $numberOfPlaceholders = $this->computePlaceholders($colspan, $rowspan);
167 $this->decorator->tablecell_open(1, null, 1);
168 $this->decorator->tablecell_close(1, null, 1);
170 $this->decorator->tablecell_open($colspan, $align, $rowspan);
176 $cell = $this->row[$this->column];
182 $this->column += $numberOfPlaceholders;
185 $this->row[$this->column]->setSize($colspan, $rowspan);
186 $this->column += $colspan;
195 $cell = $this->row[$column];
203 $this->decorator->table_cline($starts, $column);
208 } while($column < sizeof($this->row));
211 $this->decorator->table_cline($starts, $column);
218 foreach($this->row as $cell) {
223 $this->row = $row;
224 $this->column = 0;