blob: 7a6196dff9ccbcfbde06b76a22a2ee3c35cdcca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <LibGfx/ShareableBitmap.h>
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() => ()
}
|