40 lines
720 B
Plaintext
40 lines
720 B
Plaintext
// This file Copyright © Transmission authors and contributors.
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#import "StatusBarView.h"
|
|
|
|
@implementation StatusBarView
|
|
|
|
- (BOOL)mouseDownCanMoveWindow
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (BOOL)isOpaque
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (void)drawRect:(NSRect)rect
|
|
{
|
|
[NSColor.windowBackgroundColor setFill];
|
|
NSRectFill(rect);
|
|
|
|
NSRect const lineBorderRect = NSMakeRect(NSMinX(rect), 0.0, NSWidth(rect), 1.0);
|
|
if (NSIntersectsRect(lineBorderRect, rect))
|
|
{
|
|
[NSColor.gridColor setFill];
|
|
NSRectFill(lineBorderRect);
|
|
}
|
|
}
|
|
|
|
#pragma mark - Private
|
|
|
|
- (void)reload
|
|
{
|
|
self.needsDisplay = YES;
|
|
}
|
|
|
|
@end
|