CocoaSplit/StreamServicePlugins/CSTwitchStreamServicePlugin/TwitchStreamServiceViewController.h
2016-07-25 08:56:52 -04:00

24 lines
602 B
Objective-C

//
// TwitchStreamServiceViewController.h
// CSTwitchStreamServicePlugin
//
// Created by Zakk on 8/29/14.
// Copyright (c) 2014 Zakk. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "TwitchStreamService.h"
#import <WebKit/WebKit.h>
@interface TwitchStreamServiceViewController : NSViewController <WebPolicyDelegate>
@property (weak) TwitchStreamService *serviceObj;
@property (strong) NSWindow *authWindow;
@property (strong) WebView *authWebView;
@property (strong) NSArray *serverSortDescriptors;
- (IBAction)doTwitchAuth:(id)sender;
- (IBAction)doTwitchstreamkey:(id)sender;
@end