mirror of
https://github.com/transmission/transmission
synced 2025-01-02 21:16:04 +00:00
424a9b5e17
* chore: cleanup timespans in remaining headers * fix: reverted change in generated file See https://github.com/transmission/transmission/actions/runs/6744426558/job/18334261137?pr=6199
77 lines
2.1 KiB
Text
77 lines
2.1 KiB
Text
// 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 "SmallTorrentCell.h"
|
|
#import "ProgressBarView.h"
|
|
#import "ProgressGradients.h"
|
|
#import "TorrentTableView.h"
|
|
#import "Torrent.h"
|
|
|
|
@interface SmallTorrentCell ()
|
|
@property(nonatomic) NSTrackingArea* fTrackingArea;
|
|
@end
|
|
|
|
@implementation SmallTorrentCell
|
|
|
|
// show fControlButton and fRevealButton
|
|
- (void)mouseEntered:(NSEvent*)event
|
|
{
|
|
[super mouseEntered:event];
|
|
|
|
NSPoint mouseLocation = [self convertPoint:[event locationInWindow] fromView:nil];
|
|
if (NSPointInRect(mouseLocation, self.fTrackingArea.rect))
|
|
{
|
|
[self.fTorrentTableView hoverEventBeganForView:self];
|
|
}
|
|
}
|
|
|
|
- (void)mouseExited:(NSEvent*)event
|
|
{
|
|
[super mouseExited:event];
|
|
|
|
NSPoint mouseLocation = [self convertPoint:[event locationInWindow] fromView:nil];
|
|
if (!NSPointInRect(mouseLocation, self.fTrackingArea.rect))
|
|
{
|
|
[self.fTorrentTableView hoverEventEndedForView:self];
|
|
}
|
|
}
|
|
|
|
- (void)mouseUp:(NSEvent*)event
|
|
{
|
|
[super mouseUp:event];
|
|
[self updateTrackingAreas];
|
|
}
|
|
|
|
- (void)updateTrackingAreas
|
|
{
|
|
if (self.fTrackingArea != nil)
|
|
{
|
|
[self removeTrackingArea:self.fTrackingArea];
|
|
}
|
|
|
|
//tracking rect should not be entire row, but start at fGroupDownloadView
|
|
NSRect titleRect = self.fTorrentTitleField.frame;
|
|
CGFloat maxX = NSMaxX(titleRect);
|
|
NSRect rect = self.bounds;
|
|
rect.origin.x = maxX;
|
|
|
|
NSTrackingAreaOptions opts = (NSTrackingMouseEnteredAndExited | NSTrackingActiveInKeyWindow);
|
|
self.fTrackingArea = [[NSTrackingArea alloc] initWithRect:rect options:opts owner:self userInfo:nil];
|
|
[self addTrackingArea:self.fTrackingArea];
|
|
|
|
//check to see if mouse is already within rect
|
|
NSPoint mouseLocation = [self.window mouseLocationOutsideOfEventStream];
|
|
mouseLocation = [self.superview convertPoint:mouseLocation fromView:nil];
|
|
|
|
if (NSPointInRect(mouseLocation, rect))
|
|
{
|
|
[self mouseEntered:[[NSEvent alloc] init]];
|
|
}
|
|
else
|
|
{
|
|
[self mouseExited:[[NSEvent alloc] init]];
|
|
}
|
|
}
|
|
|
|
@end
|