2023-11-01 21:11:11 +00:00
|
|
|
// This file Copyright © Transmission authors and contributors.
|
2022-01-20 18:27:56 +00:00
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2011-01-02 17:11:41 +00:00
|
|
|
|
|
|
|
#import "FilterBarView.h"
|
|
|
|
|
2022-12-15 02:44:21 +00:00
|
|
|
@interface FilterBarView ()
|
|
|
|
@property(weak) IBOutlet NSLayoutConstraint* searchFieldVerticalConstraint;
|
|
|
|
@end
|
|
|
|
|
2011-01-02 17:11:41 +00:00
|
|
|
@implementation FilterBarView
|
|
|
|
|
2022-12-15 02:44:21 +00:00
|
|
|
- (void)awakeFromNib
|
|
|
|
{
|
2023-11-05 20:35:22 +00:00
|
|
|
[super awakeFromNib];
|
2022-12-15 02:44:21 +00:00
|
|
|
_searchFieldVerticalConstraint.constant = -.5;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)mouseDownCanMoveWindow
|
2011-01-02 17:11:41 +00:00
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isOpaque
|
2011-06-09 02:15:22 +00:00
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)drawRect:(NSRect)rect
|
2011-01-02 17:11:41 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
[NSColor.windowBackgroundColor setFill];
|
2020-12-23 03:00:06 +00:00
|
|
|
NSRectFill(rect);
|
2021-08-15 09:41:48 +00:00
|
|
|
|
|
|
|
NSRect const lineBorderRect = NSMakeRect(NSMinX(rect), 0.0, NSWidth(rect), 1.0);
|
2020-12-23 03:00:06 +00:00
|
|
|
if (NSIntersectsRect(lineBorderRect, rect))
|
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
[NSColor.gridColor setFill];
|
2020-12-23 03:00:06 +00:00
|
|
|
NSRectFill(lineBorderRect);
|
2011-09-14 03:31:34 +00:00
|
|
|
}
|
2011-01-02 17:11:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|