From 355cd186ec3fe7a1fb4fd150e8e6fd956f06f11b Mon Sep 17 00:00:00 2001 From: Michel Courtine Date: Sat, 24 May 2014 18:58:03 +0200 Subject: [PATCH] Added support for contentImage property of NSUserNotification to add an extra image to the right of the notification text (OSX Mavericks 10.9 only) --- src/foundation-desktop.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/foundation-desktop.cs b/src/foundation-desktop.cs index 40301f808..50838cebb 100644 --- a/src/foundation-desktop.cs +++ b/src/foundation-desktop.cs @@ -555,6 +555,9 @@ public interface NSUserNotification [Export ("actionButtonTitle", ArgumentSemantic.Copy)] string ActionButtonTitle { get; set; } + [Export ("contentImage", ArgumentSemantic.Copy)] + NSImage ContentImage { get; set; } + [Export ("userInfo", ArgumentSemantic.Copy)] NSDictionary UserInfo { get; set; }