39 lines
1.3 KiB
Objective-C
39 lines
1.3 KiB
Objective-C
// This file Copyright © 2005-2023 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;
|
|
@property(nonatomic, readonly, copy) NSString* stringByAppendingEllipsis;
|
|
|
|
+ (NSString*)stringForFileSize:(uint64_t)size;
|
|
+ (NSString*)stringForFilePartialSize:(uint64_t)partialSize fullSize:(uint64_t)fullSize;
|
|
|
|
// 4 significant digits
|
|
+ (NSString*)stringForSpeed:(CGFloat)speed;
|
|
// 4 significant digits
|
|
+ (NSString*)stringForSpeedAbbrev:(CGFloat)speed;
|
|
// 3 significant digits
|
|
+ (NSString*)stringForSpeedAbbrevCompact:(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;
|
|
|
|
+ (NSString*)convertedStringFromCString:(char const*)bytes;
|
|
|
|
@end
|
|
|
|
__attribute__((annotate("returns_localized_nsstring"))) static inline NSString* LocalizationNotNeeded(NSString* s)
|
|
{
|
|
return s;
|
|
}
|