mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
25 lines
537 B
Objective-C
25 lines
537 B
Objective-C
//
|
|
// SingleLineRenderer.h
|
|
// RSTextDrawing
|
|
//
|
|
// Created by Brent Simmons on 3/3/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Cocoa;
|
|
#import <RSTextDrawing/RSTextRendererProtocol.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RSSingleLineRenderer : NSObject <RSTextRenderer>
|
|
|
|
+ (instancetype)rendererWithAttributedTitle:(NSAttributedString *)title;
|
|
|
|
@property (nonatomic, readonly) NSSize size;
|
|
|
|
@property (nonatomic, strong) NSColor *backgroundColor; // Default is white.
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|