blob: f1ea569781522dcb61a0ddbd58d1a85417a39687 [file] [log] [blame]
Alexandre Lision4e280d62015-09-09 15:56:30 -04001/*
2 File: HoverTableRowView.m
3 Abstract: Custom NSTableRowView class for custom drawing and mouse tracking feedback via NSTrackingArea
4 Version: 1.1
5
6 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple
7 Inc. ("Apple") in consideration of your agreement to the following
8 terms, and your use, installation, modification or redistribution of
9 this Apple software constitutes acceptance of these terms. If you do
10 not agree with these terms, please do not use, install, modify or
11 redistribute this Apple software.
12
13 In consideration of your agreement to abide by the following terms, and
14 subject to these terms, Apple grants you a personal, non-exclusive
15 license, under Apple's copyrights in this original Apple software (the
16 "Apple Software"), to use, reproduce, modify and redistribute the Apple
17 Software, with or without modifications, in source and/or binary forms;
18 provided that if you redistribute the Apple Software in its entirety and
19 without modifications, you must retain this notice and the following
20 text and disclaimers in all such redistributions of the Apple Software.
21 Neither the name, trademarks, service marks or logos of Apple Inc. may
22 be used to endorse or promote products derived from the Apple Software
23 without specific prior written permission from Apple. Except as
24 expressly stated in this notice, no other rights or licenses, express or
25 implied, are granted by Apple herein, including but not limited to any
26 patent rights that may be infringed by your derivative works or by other
27 works in which the Apple Software may be incorporated.
28
29 The Apple Software is provided by Apple on an "AS IS" basis. APPLE
30 MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
31 THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
32 FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
33 OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
34
35 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
36 OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
38 INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
39 MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
40 AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
41 STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
42 POSSIBILITY OF SUCH DAMAGE.
43
44 Copyright (C) 2012 Apple Inc. All Rights Reserved.
45
46 */
47
48#import "HoverTableRowView.h"
49
50#import "NSColor+RingTheme.h"
51
52@interface HoverTableRowView ()
53@property BOOL mouseInside;
54@end
55
56@implementation HoverTableRowView
57
58@dynamic mouseInside;
59
60- (instancetype)init
61{
62 self.highlightable = YES;
63}
64
65- (id)initWithFrame:(CGRect)aRect
66{
67 self = [super initWithFrame:aRect];
68
69 if (self) {
70 self.highlightable = YES;
71 }
72
73 return self;
74}
75
76- (id)initWithCoder:(NSCoder*)aDecoder
77{
78 self = [super initWithCoder:aDecoder];
79 if (self) {
80 self.highlightable = YES;
81 }
82
83 return self;
84}
85
86- (void)dealloc {
87
88}
89
90- (void)setMouseInside:(BOOL)value {
91 if (mouseInside != value) {
92 mouseInside = value;
93 [self setNeedsDisplay:YES];
94 }
95}
96
97- (BOOL)mouseInside {
98 return mouseInside;
99}
100
101- (void)ensureTrackingArea {
102 if (trackingArea == nil) {
103 trackingArea = [[NSTrackingArea alloc] initWithRect:NSZeroRect
104 options:NSTrackingInVisibleRect
105 | NSTrackingActiveAlways
106 | NSTrackingMouseEnteredAndExited owner:self userInfo:nil];
107 }
108}
109
110- (void)updateTrackingAreas {
111 [super updateTrackingAreas];
112 [self ensureTrackingArea];
113 if (![[self trackingAreas] containsObject:trackingArea]) {
114 [self addTrackingArea:trackingArea];
115 }
116}
117
118- (void)mouseEntered:(NSEvent *)theEvent {
119 self.mouseInside = YES;
120}
121
122- (void)mouseExited:(NSEvent *)theEvent {
123 self.mouseInside = NO;
124}
125
Alexandre Lision4e280d62015-09-09 15:56:30 -0400126- (void)drawBackgroundInRect:(NSRect)dirtyRect {
127 // Custom background drawing. We don't call super at all.
128 [self.backgroundColor set];
129 // Fill with the background color first
130 NSRectFill(self.bounds);
131
132 // Draw a gradient
133 if (self.mouseInside && self.highlightable) {
134 NSRect selectionRect = NSRect(self.bounds);
135 [[NSColor ringGreyHighlight] setFill];
136 NSBezierPath *selectionPath = [NSBezierPath bezierPathWithRoundedRect:selectionRect xRadius:2 yRadius:2];
137 [selectionPath fill];
138 }
139}
140
141- (NSRect)separatorRect {
142 NSRect separatorRect = self.bounds;
143 separatorRect.origin.y = NSMaxY(separatorRect) - 1;
144 separatorRect.size.height = 1;
145 return separatorRect;
146}
147
148// Only called if the table is set with a horizontal grid
149- (void)drawSeparatorInRect:(NSRect)dirtyRect {
150 // Use a common shared method of drawing the separator
151 DrawSeparatorInRect([self separatorRect]);
152}
153
154// Only called if the 'selected' property is yes.
155- (void)drawSelectionInRect:(NSRect)dirtyRect {
156 // Check the selectionHighlightStyle, in case it was set to None
157 if (self.selectionHighlightStyle != NSTableViewSelectionHighlightStyleNone) {
158 // We want a hard-crisp stroke, and stroking 1 pixel will border half on one side and half on another, so we offset by the 0.5 to handle this
159 NSRect selectionRect = NSRect(self.bounds);
160 [[NSColor ringGreyHighlight] setFill];
161 NSBezierPath *selectionPath = [NSBezierPath bezierPathWithRoundedRect:selectionRect xRadius:2 yRadius:2];
162 [selectionPath fill];
163 }
164}
165
166// interiorBackgroundStyle is normaly "dark" when the selection is drawn (self.selected == YES) and we are in a key window (self.emphasized == YES). However, we always draw a light selection, so we override this method to always return a light color.
167- (NSBackgroundStyle)interiorBackgroundStyle {
168 return NSBackgroundStyleLight;
169}
170
171- (void)setFrame:(NSRect)frameRect {
172 [super setFrame:frameRect];
173 // We need to invalidate more things when live-resizing since we fill with a gradient and stroke
174 if ([self inLiveResize]) {
175 // Redraw everything if we are using a gradient
176 if (self.selected || self.mouseInside) {
177 [self setNeedsDisplay:YES];
178 } else {
179 // Redraw our horizontal grid line, which is a gradient
180 [self setNeedsDisplayInRect:[self separatorRect]];
181 }
182 }
183}
184
185@end
186
187void DrawSeparatorInRect(NSRect rect) {
Anthony LĂ©onard22f71272017-08-04 10:26:12 -0400188 static NSColor *color = [NSColor colorWithSRGBRed:.90 green:.90 blue:.90 alpha:1];
189 [color drawSwatchInRect:rect];
190
Alexandre Lision4e280d62015-09-09 15:56:30 -0400191}