Exemple #1
0
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     define("PANE.VERTICAL", 0);
     define("PANE.HORIZONTAL", 1);
 }
 function __construct($name = null, $parent, $addPrefix = true)
 {
     parent::__construct($name, $parent);
     if ($addPrefix) {
         $this->id = "{$parent->id}.{$this->id}";
     }
 }
Exemple #3
0
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     define("LAYOUT.VERTICAL", 0);
     define("LAYOUT.HORIZONTAL", 1);
     define("LAYOUT.EQUALSIZE", 3);
 }
Exemple #4
0
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     define("LAYOUT.VERTICAL", 0);
     define("LAYOUT.HORIZONTAL", 1);
     $this->setWidth(640);
 }
Exemple #5
0
 function __construct($name = null, &$parent)
 {
     global $xajax;
     parent::__construct($name, $parent);
     $this->name = $name;
     $lfr = $xajax->register(XAJAX_FUNCTION, "requestloadFromId");
     $lfr->addParameter(XAJAX_INPUT_VALUE, $this->id);
     $lfr->addParameter(XAJAX_INPUT_VALUE, $this->id);
 }
Exemple #6
0
 function __construct($name = null, &$parent = null, $addPrefix = true)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     if ($addPrefix) {
         $this->id = "{$parent->id}.{$this->id}";
     }
     define("WINDOW.NORMAL", 0);
     define("WINDOW.FIXED", 1);
 }
Exemple #7
0
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
 }
 function __construct($name = null, &$parent, $label)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     $this->value = $label;
 }
Exemple #9
0
 function __construct($name = null, &$parent, $label = "Button")
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     $this->label = $label;
 }