transmission/macosx/DragOverlayWindow.h

19 lines
443 B
C
Raw Permalink Normal View History

// This file Copyright © Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
2007-09-16 01:02:06 +00:00
#import <AppKit/AppKit.h>
2007-09-16 01:02:06 +00:00
@interface DragOverlayWindow : NSWindow
2022-12-21 20:21:16 +00:00
- (instancetype)initForWindow:(NSWindow*)window;
2007-09-16 01:02:06 +00:00
- (void)setTorrents:(NSArray<NSString*>*)files;
- (void)setFile:(NSString*)file;
- (void)setURL:(NSString*)url;
2007-09-16 01:02:06 +00:00
- (void)fadeIn;
- (void)fadeOut;
2007-09-16 01:02:06 +00:00
@end