2023-11-01 22:11:11 +01:00
|
|
|
// This file Copyright © Transmission authors and contributors.
|
2022-01-20 12:27:56 -06:00
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2022-06-29 01:15:52 +01:00
|
|
|
#import <AppKit/AppKit.h>
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2023-06-12 18:03:22 +02:00
|
|
|
typedef NS_ENUM(NSInteger, AttributesStyle) {
|
|
|
|
AttributesStyleNormal,
|
|
|
|
AttributesStyleEmphasized,
|
|
|
|
AttributesStyleDisabled,
|
|
|
|
};
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@interface FileNameCell : NSActionCell
|
|
|
|
|
2021-08-15 12:41:48 +03:00
|
|
|
- (NSRect)imageRectForBounds:(NSRect)bounds;
|
2009-12-12 03:11:48 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|