delegate status info to widget implementation

This commit is contained in:
yggverse 2024-12-12 12:24:16 +02:00
parent d752fe18fb
commit 549c3fd946
4 changed files with 14 additions and 24 deletions

View file

@ -1,13 +1,11 @@
use adw::StatusPage;
const DEFAULT_TITLE: &str = "Oops";
const DEFAULT_ICON_NAME: &str = "dialog-question-symbolic";
/// Create new default `GObject` preset for mime issue
/// [StatusPage](https://gnome.pages.gitlab.gnome.org/libadwaita/doc/main/class.StatusPage.html)
pub fn new_gobject() -> StatusPage {
pub fn new_gobject(mime: &str) -> StatusPage {
StatusPage::builder()
.title(DEFAULT_TITLE)
.icon_name(DEFAULT_ICON_NAME)
.title("Oops")
.description(format!("Content type `{mime}` not supported!"))
.icon_name("dialog-question-symbolic")
.build()
}