aka RedditBar, Mac OS X menu bar reddit client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppDelegate.h 565B

1234567891011121314151617181920212223
  1. //
  2. // AppDelegate.h
  3. // RedditBar
  4. //
  5. // Created by Thomas Buck on 30.11.13.
  6. // Copyright (c) 2013 xythobuz. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #import "PrefController.h"
  10. @interface AppDelegate : NSObject <NSApplicationDelegate>
  11. @property (atomic, retain) IBOutlet NSMenu *statusMenu;
  12. @property (atomic, retain) NSStatusItem *statusItem;
  13. @property (atomic, retain) NSImage *statusImage;
  14. @property (atomic, retain) NSImage *statusHighlightImage;
  15. @property (atomic, retain) PrefController *prefWindow;
  16. -(IBAction)showPreferences:(id)sender;
  17. @end