2021-07-03 01:40:44 -03:00
|
|
|
#include <LibGfx/ShareableBitmap.h>
|
|
|
|
|
|
2021-04-25 08:19:53 -03:00
|
|
|
endpoint NotificationServer
|
2020-02-16 15:28:08 -03:00
|
|
|
{
|
2021-05-03 10:52:56 -03:00
|
|
|
show_notification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => ()
|
2021-03-11 17:21:06 -03:00
|
|
|
|
2021-05-03 10:52:56 -03:00
|
|
|
update_notification_text([UTF8] String text, [UTF8] String title) => (bool still_showing)
|
2021-03-11 18:43:01 -03:00
|
|
|
|
2021-05-03 10:52:56 -03:00
|
|
|
update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing)
|
2021-03-11 18:43:01 -03:00
|
|
|
|
2021-05-03 10:52:56 -03:00
|
|
|
is_showing() => (bool still_showing)
|
2021-03-11 18:43:01 -03:00
|
|
|
|
2021-05-03 10:52:56 -03:00
|
|
|
close_notification() => ()
|
2020-02-16 15:28:08 -03:00
|
|
|
}
|