1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 04:44:59 +00:00
serenity/Userland/Services/NotificationServer/NotificationServer.ipc
2023-09-01 12:06:08 +02:00

14 lines
387 B
Text

#include <LibGfx/ShareableBitmap.h>
endpoint NotificationServer
{
show_notification(String text, String title, Gfx::ShareableBitmap icon) => ()
update_notification_text(String text, String title) => (bool still_showing)
update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing)
is_showing() => (bool still_showing)
close_notification() => ()
}