2 // +----------------------------------------------------------------------+
 
   3 // | Anuko Time Tracker
 
   4 // +----------------------------------------------------------------------+
 
   5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
 
   6 // +----------------------------------------------------------------------+
 
   7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
 
   8 // | by anyone for any purpose, and freely redistributed alone or in
 
   9 // | combination with other software, provided that the license is obeyed.
 
  11 // | There are only two ways to violate the license:
 
  13 // | 1. To redistribute this code in source form, with the copyright
 
  14 // |    notice or license removed or altered. (Distributing in compiled
 
  15 // |    forms without embedded copyright notices is permitted).
 
  17 // | 2. To redistribute modified versions of this code in *any* form
 
  18 // |    that bears insufficient indications that the modifications are
 
  19 // |    not the work of the original author(s).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 // FromElement is the base class for controls on forms.
 
  42         var $mOnKeyPress        = "";
 
  46         var $mRenderable    = true;
 
  48         var $cClassName         = "FormElement";
 
  51         function __construct() {
 
  54         function getClass()     { return $this->cClassName; }
 
  56         function setName($name) { $this->name = $name;  }
 
  57         function getName()      { return $this->name; }
 
  59         function setFormName($name) { $this->form_name = $name; }
 
  60         function getFormName()  { return $this->form_name; }
 
  62         function setValue($value)       { $this->mValue = $value;}
 
  63         function getValue() { return $this->mValue; }
 
  65         function setValueSafe($value)   { $this->mValue = $value;}
 
  66         function getValueSafe() { return $this->mValue; }
 
  68         function setId($id)     { $this->id = $id;      }
 
  69         function getId() { return $this->id; }
 
  71         function setSize($value)        { $this->mSize = $value; }
 
  72         function getSize() { return $this->mSize; }
 
  74         function setLabel($label)       { $this->mLabel = $label; }
 
  75         function getLabel() { return $this->mLabel; }
 
  77         function setMaxLength($value)   { $this->mMaxLength = $value; }
 
  78         function getMaxLength() { return $this->mMaxLength; }
 
  80         function setTabindex($value)    { $this->mTabindex = $value; }
 
  81         function getTabindex() { return $this->mTabindex; }
 
  83         function setAccesskey($value)   { $this->mAccesskey = $value; }
 
  84         function getAccesskey() { return $this->mAccesskey; }
 
  86         function setStyle($value)       { $this->mStyle = $value; }
 
  87         function getStyle() { return $this->mStyle; }
 
  89         function setRenderable($flag)   { $this->mRenderable = $flag;   }
 
  90         function isRenderable() { return $this->mRenderable; }
 
  92         function setEnable($flag)       { $this->mEnabled = $flag;      }
 
  93         function isEnable()     { return $this->mEnabled; }
 
  95         function setOnChange($str)      { $this->mOnChange = $str; }
 
  96         function setOnClick($str)       { $this->mOnClick = $str; }
 
  97         function setOnSelect($str)      { $this->mOnSelect = $str; }
 
  99         function setLocalization($i18n) {
 
 100                 $this->mI18n = $i18n;
 
 103         function toStringControl()      {
 
 107         function toStringLabel() {
 
 108             return "<label for=\"" . $this->id . "\">" . $this->mLabel . "</label>";
 
 113                      "label"=>$this->toStringLabel(),
 
 114                      "control"=>$this->toStringControl()