Files
baRSS/baRSS/Status Bar Menu/BarStatusItem.h
2025-07-21 00:35:21 +02:00

16 lines
350 B
Objective-C

@import Cocoa;
NS_ASSUME_NONNULL_BEGIN
@interface BarStatusItem : NSObject <NSMenuDelegate>
@property (weak, readonly) NSMenu *mainMenu;
- (void)setUnreadCountAbsolute:(NSUInteger)count;
- (void)setUnreadCountRelative:(NSInteger)count;
- (void)asyncReloadUnreadCount;
- (void)updateBarIcon;
- (void)showWelcomeMessage;
@end
NS_ASSUME_NONNULL_END