mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
23 lines
552 B
Objective-C
23 lines
552 B
Objective-C
//
|
|
// TwitchStreamServiceViewController.h
|
|
// CSTwitchStreamServicePlugin
|
|
//
|
|
// Created by Zakk on 8/29/14.
|
|
//
|
|
|
|
|
|
#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
|