moved to growl, changed to notification center opens conversation view
This commit is contained in:
parent
d7a403bce5
commit
35a4d4a16f
22 changed files with 1319 additions and 80 deletions
|
@ -12,9 +12,9 @@
|
|||
#import <Carbon/Carbon.h>
|
||||
#import "Constants.h"
|
||||
#import "AccessToken.h"
|
||||
#import <Growl/Growl.h>
|
||||
|
||||
|
||||
@interface Controller : NSObject <NSUserNotificationCenterDelegate> {
|
||||
@interface Controller : NSObject <GrowlApplicationBridgeDelegate> {
|
||||
IBOutlet WebView *timelineView;
|
||||
IBOutlet NSWindow *timelineViewWindow;
|
||||
IBOutlet WebView *mentionsView;
|
||||
|
@ -22,6 +22,7 @@
|
|||
IBOutlet WebView *conversationView;
|
||||
IBOutlet NSWindow *conversationViewWindow;
|
||||
NSWindow *loginViewWindow;
|
||||
NSTextField *loginEntityTextField;
|
||||
NSProgressIndicator *loginActivityIndicator;
|
||||
IBOutlet NSMenuItem *globalHotkeyMenuItem;
|
||||
IBOutlet NSImageView *logoLayer;
|
||||
|
@ -37,6 +38,7 @@
|
|||
@property (retain, nonatomic) IBOutlet WebView *conversationView;
|
||||
@property (retain, nonatomic) IBOutlet NSWindow *conversationViewWindow;
|
||||
@property (assign) IBOutlet NSWindow *loginViewWindow;
|
||||
@property (assign) IBOutlet NSTextField *loginEntityTextField;
|
||||
@property (assign) IBOutlet NSProgressIndicator *loginActivityIndicator;
|
||||
@property (retain, nonatomic) IBOutlet NSMenuItem *globalHotkeyMenuItem;
|
||||
@property (retain, nonatomic) IBOutlet NSImageView *logoLayer;
|
||||
|
|
Reference in a new issue