blob: 05a7f009a58dbb5d65267c1242c4cbd087b9805c [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
126static NSGradient *gradientWithTargetColor(NSColor *targetColor) {
127 NSArray *colors = [NSArray arrayWithObjects:[targetColor colorWithAlphaComponent:0],
128 targetColor,
129 targetColor,
130 [targetColor colorWithAlphaComponent:0], nil];
131 const CGFloat locations[4] = { 0.0, 0.35, 0.65, 1.0 };
132 return [[NSGradient alloc] initWithColors:colors atLocations:locations colorSpace:[NSColorSpace sRGBColorSpace]];
133}
134
135- (void)drawBackgroundInRect:(NSRect)dirtyRect {
136 // Custom background drawing. We don't call super at all.
137 [self.backgroundColor set];
138 // Fill with the background color first
139 NSRectFill(self.bounds);
140
141 // Draw a gradient
142 if (self.mouseInside && self.highlightable) {
143 NSRect selectionRect = NSRect(self.bounds);
144 [[NSColor ringGreyHighlight] setFill];
145 NSBezierPath *selectionPath = [NSBezierPath bezierPathWithRoundedRect:selectionRect xRadius:2 yRadius:2];
146 [selectionPath fill];
147 }
148}
149
150- (NSRect)separatorRect {
151 NSRect separatorRect = self.bounds;
152 separatorRect.origin.y = NSMaxY(separatorRect) - 1;
153 separatorRect.size.height = 1;
154 return separatorRect;
155}
156
157// Only called if the table is set with a horizontal grid
158- (void)drawSeparatorInRect:(NSRect)dirtyRect {
159 // Use a common shared method of drawing the separator
160 DrawSeparatorInRect([self separatorRect]);
161}
162
163// Only called if the 'selected' property is yes.
164- (void)drawSelectionInRect:(NSRect)dirtyRect {
165 // Check the selectionHighlightStyle, in case it was set to None
166 if (self.selectionHighlightStyle != NSTableViewSelectionHighlightStyleNone) {
167 // 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
168 NSRect selectionRect = NSRect(self.bounds);
169 [[NSColor ringGreyHighlight] setFill];
170 NSBezierPath *selectionPath = [NSBezierPath bezierPathWithRoundedRect:selectionRect xRadius:2 yRadius:2];
171 [selectionPath fill];
172 }
173}
174
175// 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.
176- (NSBackgroundStyle)interiorBackgroundStyle {
177 return NSBackgroundStyleLight;
178}
179
180- (void)setFrame:(NSRect)frameRect {
181 [super setFrame:frameRect];
182 // We need to invalidate more things when live-resizing since we fill with a gradient and stroke
183 if ([self inLiveResize]) {
184 // Redraw everything if we are using a gradient
185 if (self.selected || self.mouseInside) {
186 [self setNeedsDisplay:YES];
187 } else {
188 // Redraw our horizontal grid line, which is a gradient
189 [self setNeedsDisplayInRect:[self separatorRect]];
190 }
191 }
192}
193
194@end
195
196void DrawSeparatorInRect(NSRect rect) {
197 // Cache the gradient for performance
198 static NSGradient *gradient = nil;
199 if (gradient == nil) {
200 gradient = gradientWithTargetColor([NSColor colorWithSRGBRed:.80 green:.80 blue:.80 alpha:1]);
201 }
202 [gradient drawInRect:rect angle:0];
203}