1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-20 10:45:43 +00:00
transmission/macosx/NSStringAdditions.h
Antoine Cœur 60254710b8
Rename sortTorrentsAndIncludeQueueOrder and nonEmptyComponentsSeparatedByCharactersInSet (#3051)
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2022-05-14 14:00:55 -05:00

29 lines
1 KiB
Objective-C

// This file Copyright © 2005-2022 Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
#import <Foundation/Foundation.h>
@interface NSString (NSStringAdditions)
@property(nonatomic, class, readonly) NSString* ellipsis;
- (NSString*)stringByAppendingEllipsis;
+ (NSString*)formattedUInteger:(NSUInteger)value;
+ (NSString*)stringForFileSize:(uint64_t)size;
+ (NSString*)stringForFilePartialSize:(uint64_t)partialSize fullSize:(uint64_t)fullSize;
+ (NSString*)stringForSpeed:(CGFloat)speed;
+ (NSString*)stringForSpeedAbbrev:(CGFloat)speed;
+ (NSString*)stringForRatio:(CGFloat)ratio;
+ (NSString*)percentString:(CGFloat)progress longDecimals:(BOOL)longDecimals;
// simple compare method for strings with numbers (works for IP addresses)
- (NSComparisonResult)compareNumeric:(NSString*)string;
// like componentsSeparatedByCharactersInSet:, but excludes blank values
- (NSArray<NSString*>*)nonEmptyComponentsSeparatedByCharactersInSet:(NSCharacterSet*)separators;
@end