diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-21 12:13:21 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-21 12:13:21 -0500 |
| commit | e29238130ca2532fd1b371bca0e049f258a9af4b (patch) | |
| tree | 80d32d3e1360a55d6410226124d0724b12001763 | |
| parent | 4ef10753df86307ce01c40703c36e56585e1249c (diff) | |
add mac files
| -rw-r--r-- | MediaBrowser.Server.Mac/AppController.cs | 29 | ||||
| -rw-r--r-- | MediaBrowser.Server.Mac/AppController.designer.cs | 27 |
2 files changed, 56 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Mac/AppController.cs b/MediaBrowser.Server.Mac/AppController.cs new file mode 100644 index 000000000..7f364ed71 --- /dev/null +++ b/MediaBrowser.Server.Mac/AppController.cs @@ -0,0 +1,29 @@ +using System; +using MonoMac.Foundation; +using MonoMac.AppKit; + +namespace StatusMenu +{ + [Register("AppController")] + public partial class AppController : NSObject + { + public AppController() + { + + } + + public override void AwakeFromNib() + { + var statusItem = NSStatusBar.SystemStatusBar.CreateStatusItem(30); + statusItem.Menu = statusMenu; + statusItem.Image = NSImage.ImageNamed("f3bfd_Untitled-thumb"); + statusItem.HighlightMode = true; + } + + partial void HelloWorld(NSObject sender) + { + Console.WriteLine("hello world"); + } + } +} + diff --git a/MediaBrowser.Server.Mac/AppController.designer.cs b/MediaBrowser.Server.Mac/AppController.designer.cs new file mode 100644 index 000000000..307d0eee3 --- /dev/null +++ b/MediaBrowser.Server.Mac/AppController.designer.cs @@ -0,0 +1,27 @@ +// WARNING +// +// This file has been generated automatically by MonoDevelop to store outlets and +// actions made in the Xcode designer. If it is removed, they will be lost. +// Manual changes to this file may not be handled correctly. +// +using MonoMac.Foundation; + +namespace StatusMenu +{ + partial class AppController + { + [Outlet] + MonoMac.AppKit.NSMenu statusMenu { get; set; } + + [Action ("HelloWorld:")] + partial void HelloWorld (MonoMac.Foundation.NSObject sender); + + void ReleaseDesignerOutlets () + { + if (statusMenu != null) { + statusMenu.Dispose (); + statusMenu = null; + } + } + } +} |
