Lines Matching +refs:label +refs:position

29     private $position = array(); // current bar position  variable in ProgressBar
59 public $label = array(); // ProgressBar Labels variable in ProgressBar
130 $position['left'] = $this->pedding;
131 $position['top'] = $this->pedding;
132 $position['width'] = $pixel;
133 $position['height'] = $this->height - ($this->pedding * 2);
136 $position['left'] = $this->width - $this->pedding - $pixel;
137 $position['top'] = $this->pedding;
138 $position['width'] = $pixel;
139 $position['height'] = $this->height - ($this->pedding * 2);
142 $position['left'] = $this->pedding;
143 $position['top'] = $this->pedding;
144 $position['width'] = $this->width - ($this->pedding * 2);
145 $position['height'] = $pixel;
148 $position['left'] = $this->pedding;
149 $position['top'] = $this->height - $this->pedding - $pixel;
150 $position['width'] = $this->width - ($this->pedding * 2);
151 $position['height'] = $pixel;
154 return $position;
194 $this->label[$name] = array(
210 $this->label[$name] = array(
228 $this->label[$name] = array(
244 $this->label[$name] = array(
260 $this->label[$name] = array(
285 $this->label[$name]['action'] = $action;
286 $this->label[$name]['target'] = $target;
291 $this->label[$name]['top'] = intval($top);
292 $this->label[$name]['left'] = intval($left);
293 $this->label[$name]['width'] = intval($width);
294 $this->label[$name]['height'] = intval($height);
295 if ($align != '') {$this->label[$name]['align'] = $align; }
300 … document.getElementById("plbl'.$name.$this->code.'").style.top="'.$this->label[$name]['top'].'px";
301 …document.getElementById("plbl'.$name.$this->code.'").style.left="'.$this->label[$name]['left'].'px…
302 …document.getElementById("plbl'.$name.$this->code.'").style.width="'.$this->label[$name]['width'].'…
303 …document.getElementById("plbl'.$name.$this->code.'").style.height="'.$this->label[$name]['height']…
304 …document.getElementById("plbl'.$name.$this->code.'").style.align="'.$this->label[$name]['align'].'…
313 $this->label[$name]['color'] = $color;
326 $this->label[$name]['bgr_color'] = $color;
339 $this->label[$name]['font-size'] = intval($size);
340 if ($family != '') {$this->label[$name]['font-family'] = $family; }
341 if ($weight != '') {$this->label[$name]['font-weight'] = $weight; }
346 …document.getElementById("plbl'.$name.$this->code.'").style.font-size="'.$this->label[$name]['font-…
347 …document.getElementById("plbl'.$name.$this->code.'").style.font-family="'.$this->label[$name]['fon…
348 …document.getElementById("plbl'.$name.$this->code.'").style.font-weight="'.$this->label[$name]['fon…
360 $this->label[$name]['value'] = $value;
364 PBlabelText'.$this->code.'("'.$name.'","'.$this->label[$name]['value'].'");
402 $this->position = $this->_calculatePosition($this->step);
406 echo 'PBposition'.$this->code.'("left",'.$this->position['left'].');';
407 echo 'PBposition'.$this->code.'("top",'.$this->position['top'].');';
408 echo 'PBposition'.$this->code.'("width",'.$this->position['width'].');';
409 echo 'PBposition'.$this->code.'("height",'.$this->position['height'].');';
422 $this->position = $this->_calculatePosition($this->step);
427 …ute;top:'.$this->position['top'].'px;left:'.$this->position['left'].'px;'.'width:'.$this->position
447 foreach ($this->label as $name => $data) {
489 if (count($this->label) > 0) {
528 …if ($new_position['width'] != $this->position['width'] && ($this->direction == 'right' || $this->d…
534 …if ($new_position['height'] != $this->position['height'] && ($this->direction == 'up' || $this->di…
540 $this->position = $new_position;
542 foreach ($this->label as $name => $data) {
591 foreach ($this->label as $name => $data) {
608 foreach ($this->label as $name => $data) {