mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
27 lines
529 B
Objective-C
27 lines
529 B
Objective-C
//
|
|
// RSMultiLineView.h
|
|
// RSTextDrawing
|
|
//
|
|
// Created by Brent Simmons on 5/27/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import AppKit;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class RSMultiLineRendererMeasurements;
|
|
|
|
@interface RSMultiLineView : NSView
|
|
|
|
@property (nonatomic) NSAttributedString *attributedStringValue;
|
|
|
|
@property (nonatomic, readonly) RSMultiLineRendererMeasurements *measurements;
|
|
|
|
@property (nonatomic) BOOL selected;
|
|
@property (nonatomic) BOOL emphasized;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|