mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
25 lines
No EOL
540 B
PHP
25 lines
No EOL
540 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yggverse\Yoda\Entity\Browser\Container\Tab\Page\Navbar;
|
|
|
|
class Request extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Tab\Page\Navbar\Entry
|
|
{
|
|
protected string $_placeholder = 'URL or search term...';
|
|
|
|
protected function _onActivate(
|
|
\GtkEntry $entry
|
|
): void
|
|
{
|
|
$this->navbar->page->content->update();
|
|
}
|
|
|
|
protected function _onKeyRelease(
|
|
\GtkEntry $entry,
|
|
\GdkEvent $event
|
|
): void
|
|
{
|
|
$this->navbar->refresh();
|
|
}
|
|
} |