added opening conversation view in new window to OS X
This commit is contained in:
parent
11e6da5592
commit
142b4d4dd3
13 changed files with 481 additions and 37 deletions
27
Mac/NewConversationWindowController.h
Normal file
27
Mac/NewConversationWindowController.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
//
|
||||
// NewConversationWindowController.h
|
||||
// Bungloo
|
||||
//
|
||||
// Created by Jeena on 16/04/2013.
|
||||
//
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import <WebKit/WebKit.h>
|
||||
#import "ViewDelegate.h"
|
||||
|
||||
@interface NewConversationWindowController : NSWindowController {
|
||||
NSString *postId;
|
||||
NSString *entity;
|
||||
IBOutlet WebView *timelineView;
|
||||
ViewDelegate *viewDelegate;
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) NSString *postId;
|
||||
@property (nonatomic, retain) NSString *entity;
|
||||
@property (nonatomic, retain) IBOutlet WebView *timelineView;
|
||||
@property (nonatomic, retain) ViewDelegate *viewDelegate;
|
||||
|
||||
- (id)initWithPostId:(NSString *)postId entity:(NSString *)entity andViewDelegate:(ViewDelegate *)viewDelegate;
|
||||
|
||||
@end
|
Reference in a new issue