add length/placeholder api methods

This commit is contained in:
yggverse 2024-07-08 00:38:00 +03:00
parent 12a1473d8c
commit e04da6cb19

View File

@ -66,6 +66,28 @@ abstract class Entry
\GdkEvent $event
): void;
public function setLength(
?int $value = null
): void
{
$this->gtk->set_max_length(
is_null($value) ? $this->_length : $value
);
}
public function setPlaceholder(
?string $value = null
): void
{
$this->gtk->set_placeholder_text(
is_null($value) ? $this->_value : trim(
strval(
$value
)
)
);
}
public function setValue(
?string $value = null
): void
@ -79,6 +101,16 @@ abstract class Entry
);
}
public function getLength(): ?int
{
return $this->gtk->get_max_length();
}
public function getPlaceholder(): ?string
{
return $this->gtk->get_placeholder_text();
}
public function getValue(): ?string
{
return $this->gtk->get_text();