2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2011-2022 Transmission authors and contributors.
|
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2011-02-10 00:51:25 +00:00
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@class Controller;
|
|
|
|
|
|
|
|
@interface URLSheetWindowController : NSWindowController
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
IBOutlet NSTextField* fLabelField;
|
|
|
|
IBOutlet NSTextField* fTextField;
|
|
|
|
IBOutlet NSButton* fOpenButton;
|
|
|
|
IBOutlet NSButton* fCancelButton;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
Controller* fController;
|
2011-02-10 00:51:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithController:(Controller*)controller;
|
2011-02-10 00:51:25 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)openURLEndSheet:(id)sender;
|
|
|
|
- (void)openURLCancelEndSheet:(id)sender;
|
2011-02-10 00:51:25 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSString* urlString;
|
2012-03-13 03:39:56 +00:00
|
|
|
|
2011-02-10 00:51:25 +00:00
|
|
|
@end
|