mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
allow to open multiple files
This commit is contained in:
parent
3b113ff9cb
commit
35cc6cdd06
1 changed files with 14 additions and 6 deletions
|
|
@ -13,6 +13,7 @@ class Open
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
private string $_label = 'Open';
|
private string $_label = 'Open';
|
||||||
|
private bool $_multiple = true;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
\Yggverse\Yoda\Entity\Browser\Menu\File $file
|
\Yggverse\Yoda\Entity\Browser\Menu\File $file
|
||||||
|
|
@ -48,14 +49,21 @@ class Open
|
||||||
/* @TODO keep last path
|
/* @TODO keep last path
|
||||||
$dialog->set_current_folder();*/
|
$dialog->set_current_folder();*/
|
||||||
|
|
||||||
|
$dialog->set_select_multiple(
|
||||||
|
$this->_multiple
|
||||||
|
);
|
||||||
|
|
||||||
if (\GtkResponseType::OK == $dialog->run())
|
if (\GtkResponseType::OK == $dialog->run())
|
||||||
{
|
{
|
||||||
$this->file->menu->browser->container->tab->append(
|
foreach ($dialog->get_filenames() as $filename)
|
||||||
sprintf(
|
{
|
||||||
'file://%s',
|
$this->file->menu->browser->container->tab->append(
|
||||||
$dialog->get_filename()
|
sprintf(
|
||||||
)
|
'file://%s',
|
||||||
);
|
$filename
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$dialog->destroy();
|
$dialog->destroy();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue