2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
2010-10-01 13:33:39 +00:00
|
|
|
* $Id$
|
2007-09-16 01:02:06 +00:00
|
|
|
*
|
2012-01-14 17:12:04 +00:00
|
|
|
* Copyright (c) 2005-2012 Transmission authors and contributors
|
2007-09-16 01:02:06 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface NSString (NSStringAdditions)
|
|
|
|
|
|
|
|
+ (NSString *) ellipsis;
|
|
|
|
- (NSString *) stringByAppendingEllipsis;
|
|
|
|
|
2010-11-14 20:26:58 +00:00
|
|
|
+ (NSString *) formattedUInteger: (NSUInteger) value;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
+ (NSString *) stringForFileSize: (uint64_t) size;
|
2011-01-08 05:11:28 +00:00
|
|
|
+ (NSString *) stringForFilePartialSize: (uint64_t) partialSize fullSize: (uint64_t) fullSize;
|
2007-11-19 18:13:41 +00:00
|
|
|
|
2008-10-25 21:49:06 +00:00
|
|
|
+ (NSString *) stringForSpeed: (CGFloat) speed;
|
|
|
|
+ (NSString *) stringForSpeedAbbrev: (CGFloat) speed;
|
|
|
|
+ (NSString *) stringForRatio: (CGFloat) ratio;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2010-06-24 00:00:43 +00:00
|
|
|
+ (NSString *) percentString: (CGFloat) progress longDecimals: (BOOL) longDecimals;
|
|
|
|
|
2008-02-22 15:29:20 +00:00
|
|
|
+ (NSString *) timeString: (uint64_t) seconds showSeconds: (BOOL) showSeconds;
|
2008-11-04 01:31:24 +00:00
|
|
|
+ (NSString *) timeString: (uint64_t) seconds showSeconds: (BOOL) showSeconds maxFields: (NSUInteger) max;
|
2008-02-22 15:29:20 +00:00
|
|
|
|
2008-06-27 05:40:22 +00:00
|
|
|
- (NSComparisonResult) compareNumeric: (NSString *) string; //simple compare method for strings with numbers (works for IP addresses)
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2013-03-07 23:55:31 +00:00
|
|
|
- (NSArray *) betterComponentsSeparatedByCharactersInSet: (NSCharacterSet *) separators; //like componentsSeparatedByCharactersInSet:, but excludes blank values
|
2011-09-19 00:48:30 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|