update libcosmic: adds tooltip support

This commit is contained in:
Ashley Wulber 2025-02-26 14:23:53 -05:00 committed by Ashley Wulber
parent 38982176f0
commit 0de336d0d7
16 changed files with 352 additions and 70 deletions

View file

@ -17,6 +17,7 @@ use cosmic::{
window, Alignment, Length, Limits, Subscription,
},
iced_widget::{scrollable, Column},
surface_message::{SurfaceMessage, MessageWrapper},
theme,
widget::{button, container, divider, icon, text},
Element, Task,
@ -94,6 +95,22 @@ enum Message {
CardsToggled(String, bool),
Token(TokenUpdate),
OpenSettings,
Surface(SurfaceMessage),
}
impl From<Message> for MessageWrapper<Message> {
fn from(value: Message) -> Self {
match value {
Message::Surface(s) => MessageWrapper::Surface(s),
m => MessageWrapper::Message(m),
}
}
}
impl From<SurfaceMessage> for Message {
fn from(value: SurfaceMessage) -> Self {
Message::Surface(value)
}
}
impl cosmic::Application for Notifications {
@ -399,6 +416,7 @@ impl cosmic::Application for Notifications {
});
}
}
Message::Surface(surface_message) => unreachable!(),
};
self.update_icon();
Task::none()