mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
13 lines
378 B
Plaintext
13 lines
378 B
Plaintext
endpoint NotificationServer
|
|
{
|
|
show_notification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => ()
|
|
|
|
update_notification_text([UTF8] String text, [UTF8] String title) => (bool still_showing)
|
|
|
|
update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing)
|
|
|
|
is_showing() => (bool still_showing)
|
|
|
|
close_notification() => ()
|
|
}
|