added opening conversation view in new window to OS X

This commit is contained in:
Jeena Paradies 2013-04-16 23:20:08 +02:00
parent 11e6da5592
commit 142b4d4dd3
13 changed files with 481 additions and 37 deletions

View 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