implemented a mentions view
This commit is contained in:
parent
1e92b50515
commit
da7cc71f4e
9 changed files with 215 additions and 89 deletions
16
Controller.h
16
Controller.h
|
@ -8,23 +8,23 @@
|
|||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import <Webkit/Webkit.h>
|
||||
#import "StatusView.h"
|
||||
#import "ViewDelegate.h"
|
||||
#import <Carbon/Carbon.h>
|
||||
|
||||
@interface Controller : NSObject {
|
||||
IBOutlet WebView *webView;
|
||||
id<StatusView> viewDelegate;
|
||||
NSString *username;
|
||||
NSString *password;
|
||||
IBOutlet WebView *timelineView;
|
||||
IBOutlet WebView *mentionsView;
|
||||
ViewDelegate *viewDelegate;
|
||||
}
|
||||
|
||||
@property (retain, nonatomic) IBOutlet WebView *webView;
|
||||
@property (retain, nonatomic) IBOutlet id<StatusView> viewDelegate;
|
||||
@property (retain, nonatomic) IBOutlet WebView *timelineView;
|
||||
@property (retain, nonatomic) IBOutlet WebView *mentionsView;
|
||||
@property (retain, nonatomic) IBOutlet ViewDelegate *viewDelegate;
|
||||
|
||||
- (void)initWebView;
|
||||
- (void)initWebViews;
|
||||
- (void)openNewTweetWindowInReplyTo:(NSString *)userName statusId:(NSString *)statusId;
|
||||
- (NSString *)pluginURL;
|
||||
|
||||
OSStatus handler(EventHandlerCallRef nextHandler, EventRef theEvent, void* userData);
|
||||
|
||||
@end
|
||||
|
|
Reference in a new issue