mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
draft progressbar
This commit is contained in:
parent
0e64ab08ff
commit
5d62bd89f7
@ -90,6 +90,10 @@
|
||||
"timeout":null
|
||||
}
|
||||
},
|
||||
"progressbar":
|
||||
{
|
||||
"visible":true
|
||||
},
|
||||
"header":
|
||||
{
|
||||
"margin":8,
|
||||
|
@ -28,6 +28,8 @@ class Page
|
||||
|
||||
public \GtkScrolledWindow $container;
|
||||
|
||||
public \GtkProgressBar $progressbar;
|
||||
|
||||
public object $config;
|
||||
|
||||
public function __construct(
|
||||
@ -303,6 +305,13 @@ class Page
|
||||
}
|
||||
);
|
||||
|
||||
// Init progressbar
|
||||
$this->progressbar = new \GtkProgressBar();
|
||||
|
||||
$this->progressbar->set_opacity(
|
||||
0
|
||||
);
|
||||
|
||||
// Compose footer
|
||||
$this->footer = new \GtkBox(
|
||||
\GtkOrientation::HORIZONTAL
|
||||
@ -350,6 +359,10 @@ class Page
|
||||
0
|
||||
);
|
||||
|
||||
$this->box->add(
|
||||
$this->progressbar
|
||||
);
|
||||
|
||||
$this->box->add(
|
||||
$this->footer
|
||||
);
|
||||
@ -429,6 +442,12 @@ class Page
|
||||
bool $history = true
|
||||
): void
|
||||
{
|
||||
// Init progressbar
|
||||
if ($this->config->progressbar->visible)
|
||||
{
|
||||
$this->setProgress(0);
|
||||
}
|
||||
|
||||
// Init base URL
|
||||
$origin = new \Yggverse\Net\Address(
|
||||
$url
|
||||
@ -686,4 +705,43 @@ class Page
|
||||
$title
|
||||
);
|
||||
}
|
||||
|
||||
public function setProgress(
|
||||
float $value
|
||||
): void
|
||||
{
|
||||
$this->progressbar->set_fraction(
|
||||
$value
|
||||
);
|
||||
|
||||
\Gtk::timeout_add(
|
||||
10,
|
||||
function()
|
||||
{
|
||||
$progress = $this->progressbar->get_fraction();
|
||||
|
||||
$progress = $progress + 0.02;
|
||||
|
||||
$this->progressbar->set_fraction(
|
||||
$progress
|
||||
);
|
||||
|
||||
if ($progress < 1)
|
||||
{
|
||||
$this->progressbar->set_opacity(
|
||||
1
|
||||
);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
$this->progressbar->set_opacity(
|
||||
0
|
||||
);
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user