コード例 #1
0
ファイル: wPane.php プロジェクト: BackupTheBerlios/ascore
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     define("PANE.VERTICAL", 0);
     define("PANE.HORIZONTAL", 1);
 }
コード例 #2
0
ファイル: wFileShow.php プロジェクト: BackupTheBerlios/ascore
 function __construct($name = null, $parent, $addPrefix = true)
 {
     parent::__construct($name, $parent);
     if ($addPrefix) {
         $this->id = "{$parent->id}.{$this->id}";
     }
 }
コード例 #3
0
ファイル: wLayout.php プロジェクト: BackupTheBerlios/ascore
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     define("LAYOUT.VERTICAL", 0);
     define("LAYOUT.HORIZONTAL", 1);
     define("LAYOUT.EQUALSIZE", 3);
 }
コード例 #4
0
ファイル: wGrid.php プロジェクト: BackupTheBerlios/ascore
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     define("LAYOUT.VERTICAL", 0);
     define("LAYOUT.HORIZONTAL", 1);
     $this->setWidth(640);
 }
コード例 #5
0
ファイル: wForm.php プロジェクト: BackupTheBerlios/ascore
 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);
 }
コード例 #6
0
ファイル: wWindow.php プロジェクト: BackupTheBerlios/ascore
 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);
 }
コード例 #7
0
ファイル: wFile.php プロジェクト: BackupTheBerlios/ascore
 function __construct($name = null, &$parent)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
 }
コード例 #8
0
 function __construct($name = null, &$parent, $label)
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     $this->value = $label;
 }
コード例 #9
0
ファイル: wButton.php プロジェクト: BackupTheBerlios/ascore
 function __construct($name = null, &$parent, $label = "Button")
 {
     parent::__construct($name, $parent);
     $this->name = $name;
     $this->label = $label;
 }