blob: 27b6407fab1a2fbe94a945034fc3dd9df06c5fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
//
// HBVisualEffectBox.m
// HandBrake
//
// Created by Toby on 21/08/14.
//
//
#import "HBHUDView.h"
@interface NSView (HBHUDViewExtension)
- (void)setBlendingMode:(int)mode;
- (void)setMaterial:(int)material;
- (void)setState:(int)state;
@end
@implementation HBHUDView
+ (void)setupNewStyleHUD:(NSView *)view
{
[view setWantsLayer:YES];
[view.layer setCornerRadius:4];
// Hardcode the values so we can
// compile it with the 10.9 sdk.
[view setBlendingMode:1];
[view setMaterial:2];
[view setState:1];
[view setAppearance:[NSClassFromString(@"NSAppearance") appearanceNamed:@"NSAppearanceNameVibrantDark"]];
}
- (void)drawRect:(NSRect)dirtyRect
{
NSGraphicsContext *theContext = [NSGraphicsContext currentContext];
[theContext saveGraphicsState];
NSRect rect = NSMakeRect(0.0, 0.0, [self frame].size.width, [self frame].size.height);
// Draw a standard HUD with black transparent background and white border.
[[NSColor colorWithCalibratedRed:0.0 green:0.0 blue:0.0 alpha:0.6] setFill];
[[NSBezierPath bezierPathWithRoundedRect:NSInsetRect(rect, 1, 1) xRadius:14.0 yRadius:14.0] fill];
[[NSColor whiteColor] setStroke];
[NSBezierPath setDefaultLineWidth:2.0];
[[NSBezierPath bezierPathWithRoundedRect:NSInsetRect(rect, 1, 1) xRadius:14.0 yRadius:14.0] stroke];
[theContext restoreGraphicsState];
}
- (instancetype)initWithFrame:(NSRect)frame
{
if (NSClassFromString(@"NSVisualEffectView"))
{
// If NSVisualEffectView class is loaded
// release ourself and return a NSVisualEffectView instance instead.
[self release];
self = [[NSClassFromString(@"NSVisualEffectView") alloc] initWithFrame:frame];
if (self)
{
[HBHUDView setupNewStyleHUD:self];
}
}
else
{
self = [super initWithFrame:frame];
}
return self;
}
@end
|