2016-02-26 09:50:16 +01:00
|
|
|
/* HBAttributedStringAdditions.h $
|
|
|
|
|
|
|
|
This file is part of the HandBrake source code.
|
|
|
|
Homepage: <http://handbrake.fr/>.
|
|
|
|
It may be used under the terms of the GNU General Public License. */
|
2015-01-19 08:48:18 +00:00
|
|
|
|
2019-07-20 10:14:44 +02:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2019-07-29 07:34:38 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2019-07-20 10:14:44 +02:00
|
|
|
@interface NSString (HBAttributedStringAdditions)
|
|
|
|
|
|
|
|
- (NSAttributedString *)HB_monospacedString;
|
|
|
|
- (NSAttributedString *)HB_smallMonospacedString;
|
|
|
|
|
|
|
|
@end
|
2015-01-19 08:48:18 +00:00
|
|
|
|
|
|
|
@interface NSMutableAttributedString (HBAttributedStringAdditions)
|
|
|
|
|
|
|
|
- (void)appendString:(NSString *)aString withAttributes:(NSDictionary *)aDictionary;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2019-07-29 07:34:38 +02:00
|
|
|
NS_ASSUME_NONNULL_END
|