mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 17:45:28 +00:00
add markup support in statusbar value
This commit is contained in:
parent
a48e4d87ed
commit
19dab748ae
2 changed files with 25 additions and 13 deletions
|
|
@ -93,7 +93,7 @@ class Address
|
||||||
$this->navbar->address->tab->refresh();
|
$this->navbar->address->tab->refresh();
|
||||||
|
|
||||||
// Update statusbar indicator
|
// Update statusbar indicator
|
||||||
$this->statusbar->setText(
|
$this->statusbar->setValue(
|
||||||
'Loading...'
|
'Loading...'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -130,7 +130,7 @@ class Address
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->statusbar->setText(
|
$this->statusbar->setValue(
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -146,7 +146,7 @@ class Address
|
||||||
'File extension not supported'
|
'File extension not supported'
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->statusbar->setText(
|
$this->statusbar->setValue(
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -162,7 +162,7 @@ class Address
|
||||||
'Could not open file'
|
'Could not open file'
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->statusbar->setText(
|
$this->statusbar->setValue(
|
||||||
'Resource not found or not readable'
|
'Resource not found or not readable'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -214,7 +214,7 @@ class Address
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->statusbar->setText(
|
$this->statusbar->setValue(
|
||||||
$response->getMeta()
|
$response->getMeta()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -234,7 +234,7 @@ class Address
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->statusbar->setText(
|
$this->statusbar->setValue(
|
||||||
'Request failed'
|
'Request failed'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -295,7 +295,7 @@ class Address
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->statusbar->setText(
|
$this->statusbar->setValue(
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ class Statusbar
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
private int $_margin = 8;
|
private int $_margin = 8;
|
||||||
private string $_text = '';
|
private string $_value = '';
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
\Yggverse\Yoda\Entity\Window\Tab\Address $address
|
\Yggverse\Yoda\Entity\Window\Tab\Address $address
|
||||||
|
|
@ -21,6 +21,14 @@ class Statusbar
|
||||||
|
|
||||||
$this->gtk = new \GtkLabel;
|
$this->gtk = new \GtkLabel;
|
||||||
|
|
||||||
|
$this->gtk->set_use_markup(
|
||||||
|
true
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->gtk->set_selectable(
|
||||||
|
true
|
||||||
|
);
|
||||||
|
|
||||||
$this->gtk->set_line_wrap(
|
$this->gtk->set_line_wrap(
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
@ -48,15 +56,19 @@ class Statusbar
|
||||||
$this->gtk->set_margin_end(
|
$this->gtk->set_margin_end(
|
||||||
$this->_margin
|
$this->_margin
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$this->gtk->set_markup(
|
||||||
|
$this->_value
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setText(
|
public function setValue(
|
||||||
?string $text = null
|
?string $value = null
|
||||||
): void
|
): void
|
||||||
{
|
{
|
||||||
$this->gtk->set_text(
|
$this->gtk->set_markup(
|
||||||
is_null($text) ? $this->_text : trim(
|
is_null($value) ? $this->_value : trim(
|
||||||
$text
|
$value
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue