initial commit

This commit is contained in:
yggverse 2024-04-09 09:20:34 +03:00
parent ad638650ac
commit 8c2cf42ca7
16 changed files with 541 additions and 0 deletions

33
src/Label/Content.php Normal file
View file

@ -0,0 +1,33 @@
<?php
declare(strict_types=1);
namespace Yggverse\Yoda\Label;
class Content
{
public \GtkLabel $label;
public function __construct(string $value = '')
{
$this->label = new \GtkLabel(
$value
);
$this->label->set_use_markup(
true
);
$this->label->set_selectable(
true
);
$this->label->set_xalign(
0
);
$this->label->set_yalign(
0
);
}
}