transmission/macosx/PrefsController.h

22 lines
569 B
C
Raw 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 "PortChecker.h"
#import <AppKit/AppKit.h>
#include <libtransmission/transmission.h>
2008-11-01 15:22:32 +00:00
@interface PrefsController : NSWindowController<NSToolbarDelegate, PortCheckerDelegate>
2022-04-29 22:51:40 +00:00
@property(nonatomic, readonly) NSArray<NSString*>* sounds;
/// - returns: number of minutes
+ (int)dateToTimeSum:(NSDate*)date;
2007-09-16 01:02:06 +00:00
- (instancetype)initWithHandle:(tr_session*)handle;
2008-06-03 19:11:43 +00:00
- (void)rpcUpdatePrefs;
2007-09-16 01:02:06 +00:00
@end