summaryrefslogtreecommitdiff
path: root/Userland/Services/NotificationServer/NotificationServer.ipc
blob: c51c894c604d443243fcf65165d376d251447d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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() => ()
}