Lines Matching refs:form_element_spacing

81 	var $form_element_spacing;
136 $this->form_element_spacing['select']['outer']['h'] = 0.5; // Horizontal spacing around SELECT
137 $this->form_element_spacing['select']['outer']['v'] = 0.5; // Vertical spacing around SELECT
138 $this->form_element_spacing['select']['inner']['h'] = 0.7; // Horizontal padding around SELECT
139 $this->form_element_spacing['select']['inner']['v'] = 0.7; // Vertical padding around SELECT
140 $this->form_element_spacing['input']['outer']['h'] = 0.5;
141 $this->form_element_spacing['input']['outer']['v'] = 0.5;
142 $this->form_element_spacing['input']['inner']['h'] = 0.7;
143 $this->form_element_spacing['input']['inner']['v'] = 0.7;
144 $this->form_element_spacing['textarea']['outer']['h'] = 0.5;
145 $this->form_element_spacing['textarea']['outer']['v'] = 0.5;
146 $this->form_element_spacing['textarea']['inner']['h'] = 1;
147 $this->form_element_spacing['textarea']['inner']['v'] = 0.5;
148 $this->form_element_spacing['button']['outer']['h'] = 0.5;
149 $this->form_element_spacing['button']['outer']['v'] = 0.5;
150 $this->form_element_spacing['button']['inner']['h'] = 2;
151 $this->form_element_spacing['button']['inner']['v'] = 1;
226 $w -= $this->form_element_spacing['input']['outer']['h'] * 2 / $k;
227 $h -= $this->form_element_spacing['input']['outer']['v'] * 2 / $k;
228 $this->mpdf->x += $this->form_element_spacing['input']['outer']['h'] / $k;
229 $this->mpdf->y += $this->form_element_spacing['input']['outer']['v'] / $k;
231 while ($this->mpdf->GetStringWidth($texto) > $w - ($this->form_element_spacing['input']['inner']['h'] * 2)) {
258 $this->mpdf->Cell($w, $h, $texto, 1, 0, $rtlalign, 1, '', 0, $this->form_element_spacing['input']['inner']['h'] / $k, $this->form_element_spacing['input']['inner']['h'] / $k, 'M', 0, false, $OTLdata);
315 $w -= $this->form_element_spacing['textarea']['outer']['h'] * 2 / $k;
316 $h -= $this->form_element_spacing['textarea']['outer']['v'] * 2 / $k;
317 $this->mpdf->x += $this->form_element_spacing['textarea']['outer']['h'] / $k;
318 $this->mpdf->y += $this->form_element_spacing['textarea']['outer']['v'] / $k;
334 $w -= $this->form_element_spacing['textarea']['inner']['h'] * 2 / $k;
335 $this->mpdf->x += $this->form_element_spacing['textarea']['inner']['h'] / $k;
336 $this->mpdf->y += $this->form_element_spacing['textarea']['inner']['v'] / $k;
411 $w -= $this->form_element_spacing['select']['outer']['h'] * 2 / $k;
412 $h -= $this->form_element_spacing['select']['outer']['v'] * 2 / $k;
413 $this->mpdf->x += $this->form_element_spacing['select']['outer']['h'] / $k;
414 $this->mpdf->y += $this->form_element_spacing['select']['outer']['v'] / $k;
423 $this->mpdf->Cell($w - ($this->mpdf->FontSize * 1.4), $h, $texto, 1, 0, $rtlalign, 1, '', 0, $this->form_element_spacing['select']['inner']['h'] / $k, $this->form_element_spacing['select']['inner']['h'] / $k, 'M', 0, false, $objattr['OTLdata']);
512 $w -= $this->form_element_spacing['button']['outer']['h'] * 2 / $k;
513 $h -= $this->form_element_spacing['button']['outer']['v'] * 2 / $k;
514 $this->mpdf->x += $this->form_element_spacing['button']['outer']['h'] / $k;
515 $this->mpdf->y += $this->form_element_spacing['button']['outer']['v'] / $k;
517 $w -= $this->form_element_spacing['button']['inner']['h'] * 2 / $k;
518 $h -= $this->form_element_spacing['button']['inner']['v'] * 2 / $k;
519 $this->mpdf->x += $this->form_element_spacing['button']['inner']['h'] / $k;
520 $this->mpdf->y += $this->form_element_spacing['button']['inner']['v'] / $k;