Serenity Operating System
at master 14 lines 455 B view raw
1#include <LibGfx/ShareableBitmap.h> 2 3endpoint NotificationServer 4{ 5 show_notification([UTF8] DeprecatedString text, [UTF8] DeprecatedString title, Gfx::ShareableBitmap icon) => () 6 7 update_notification_text([UTF8] DeprecatedString text, [UTF8] DeprecatedString title) => (bool still_showing) 8 9 update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing) 10 11 is_showing() => (bool still_showing) 12 13 close_notification() => () 14}