24 lines
556 B
Objective-C
24 lines
556 B
Objective-C
//
|
|
// QRCodeWindowController.h
|
|
// shadowsocks
|
|
//
|
|
// Created by clowwindy on 10/12/14.
|
|
// Copyright (c) 2014 clowwindy. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <WebKit/WebKit.h>
|
|
|
|
@interface SWBQRCodeWindowController : NSWindowController
|
|
|
|
@property (nonatomic, copy) NSString *legacyQRCode;
|
|
@property (nonatomic, copy) NSString *qrCode;
|
|
@property (nonatomic, copy) NSString *title;
|
|
|
|
@property (nonatomic, weak) NSTextField *titleTextField;
|
|
@property (nonatomic, weak) NSImageView *imageView;
|
|
|
|
- (IBAction) copyQRCode: (id) sender;
|
|
|
|
@end
|