mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-16 06:05:49 -06:00
24 lines
602 B
Objective-C
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
|