-
-
Notifications
You must be signed in to change notification settings - Fork 685
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
130 changed files
with
1,224 additions
and
9,304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#import <Cocoa/Cocoa.h> | ||
|
||
// A button that fades in a circular background when hovered. | ||
|
||
@interface MMHoverButton : NSButton | ||
|
||
@property (nonatomic, retain) NSColor *fgColor; | ||
|
||
+ (NSImage *)imageNamed:(NSString *)name; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
#import "MMHoverButton.h" | ||
|
||
@implementation MMHoverButton | ||
{ | ||
NSTrackingArea *_trackingArea; | ||
NSBox *_circle; | ||
} | ||
|
||
+ (NSImage *)imageNamed:(NSString *)name | ||
{ | ||
CGFloat size = [name isEqualToString:@"CloseTabButton"] ? 15 : 17; | ||
return [NSImage imageWithSize:NSMakeSize(size, size) flipped:NO drawingHandler:^BOOL(NSRect dstRect) { | ||
NSBezierPath *p = [NSBezierPath new]; | ||
if ([name isEqualToString:@"AddTabButton"]) { | ||
[p moveToPoint:NSMakePoint( 8.5, 4.5)]; | ||
[p lineToPoint:NSMakePoint( 8.5, 12.5)]; | ||
[p moveToPoint:NSMakePoint( 4.5, 8.5)]; | ||
[p lineToPoint:NSMakePoint(12.5, 8.5)]; | ||
[p setLineWidth:1.2]; | ||
[p stroke]; | ||
} | ||
else if ([name isEqualToString:@"CloseTabButton"]) { | ||
[p moveToPoint:NSMakePoint( 4.5, 4.5)]; | ||
[p lineToPoint:NSMakePoint(10.5, 10.5)]; | ||
[p moveToPoint:NSMakePoint( 4.5, 10.5)]; | ||
[p lineToPoint:NSMakePoint(10.5, 4.5)]; | ||
[p setLineWidth:1.2]; | ||
[p stroke]; | ||
} | ||
else if ([name isEqualToString:@"ScrollLeftButton"]) { | ||
[p moveToPoint:NSMakePoint( 5.0, 8.5)]; | ||
[p lineToPoint:NSMakePoint(10.0, 4.5)]; | ||
[p lineToPoint:NSMakePoint(10.0, 12.5)]; | ||
[p fill]; | ||
} | ||
else if ([name isEqualToString:@"ScrollRightButton"]) { | ||
[p moveToPoint:NSMakePoint(12.0, 8.5)]; | ||
[p lineToPoint:NSMakePoint( 7.0, 4.5)]; | ||
[p lineToPoint:NSMakePoint( 7.0, 12.5)]; | ||
[p fill]; | ||
} | ||
return YES; | ||
}]; | ||
} | ||
|
||
- (instancetype)initWithFrame:(NSRect)frameRect | ||
{ | ||
self = [super initWithFrame:frameRect]; | ||
if (self) { | ||
self.buttonType = NSButtonTypeMomentaryChange; | ||
self.bordered = NO; | ||
self.imagePosition = NSImageOnly; | ||
|
||
// This view will fade in/out when hovered. | ||
_circle = [NSBox new]; | ||
_circle.boxType = NSBoxCustom; | ||
_circle.borderWidth = 0; | ||
_circle.alphaValue = 0.16; | ||
_circle.fillColor = NSColor.clearColor; | ||
_circle.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable; | ||
_circle.frame = self.bounds; | ||
[self addSubview:_circle positioned:NSWindowBelow relativeTo:nil]; | ||
} | ||
return self; | ||
} | ||
|
||
- (void)setFgColor:(NSColor *)color | ||
{ | ||
_fgColor = color; | ||
self.image = super.image; | ||
} | ||
|
||
- (void)setImage:(NSImage *)image | ||
{ | ||
_circle.cornerRadius = image.size.width / 2.0; | ||
NSColor *fillColor = self.fgColor ?: NSColor.controlTextColor; | ||
super.image = [NSImage imageWithSize:image.size flipped:NO drawingHandler:^BOOL(NSRect dstRect) { | ||
[image drawInRect:dstRect]; | ||
[fillColor set]; | ||
NSRectFillUsingOperation(dstRect, NSCompositingOperationSourceAtop); | ||
return YES; | ||
}]; | ||
self.alternateImage = [NSImage imageWithSize:image.size flipped:NO drawingHandler:^BOOL(NSRect dstRect) { | ||
[[fillColor colorWithAlphaComponent:0.2] set]; | ||
[[NSBezierPath bezierPathWithOvalInRect:dstRect] fill]; | ||
[super.image drawInRect:dstRect]; | ||
return YES; | ||
}]; | ||
} | ||
|
||
- (void)setEnabled:(BOOL)enabled | ||
{ | ||
[super setEnabled:enabled]; | ||
[self evaluateHover]; | ||
} | ||
|
||
- (void)updateTrackingAreas | ||
{ | ||
[self removeTrackingArea:_trackingArea]; | ||
_trackingArea = [[NSTrackingArea alloc] initWithRect:self.bounds options:(NSTrackingMouseEnteredAndExited | NSTrackingActiveInKeyWindow) owner:self userInfo:nil]; | ||
[self addTrackingArea:_trackingArea]; | ||
[self evaluateHover]; | ||
[super updateTrackingAreas]; | ||
} | ||
|
||
- (void)backgroundCircleShouldHighlight:(BOOL)shouldHighlight | ||
{ | ||
NSColor *fillColor = NSColor.clearColor; | ||
if (shouldHighlight) { | ||
fillColor = self.fgColor ?: NSColor.controlTextColor; | ||
} | ||
[NSAnimationContext beginGrouping]; | ||
[[NSAnimationContext currentContext] setDuration:0.1]; | ||
_circle.animator.fillColor = fillColor; | ||
[NSAnimationContext endGrouping]; | ||
} | ||
|
||
- (void)evaluateHover | ||
{ | ||
NSPoint mouseLocation = [self.window mouseLocationOutsideOfEventStream]; | ||
mouseLocation = [self convertPoint:mouseLocation fromView:nil]; | ||
if (NSPointInRect(mouseLocation, self.bounds)) { | ||
if (self.enabled) [self backgroundCircleShouldHighlight:YES]; | ||
else [self backgroundCircleShouldHighlight:NO]; | ||
} else { | ||
[self backgroundCircleShouldHighlight:NO]; | ||
} | ||
} | ||
|
||
- (void)mouseEntered:(NSEvent *)event | ||
{ | ||
if (self.enabled) [self backgroundCircleShouldHighlight:YES]; | ||
} | ||
|
||
- (void)mouseExited:(NSEvent *)event | ||
{ | ||
[self backgroundCircleShouldHighlight:NO]; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#import <Cocoa/Cocoa.h> | ||
|
||
// A tab with a close button and title. | ||
|
||
#define MMTabShadowBlurRadius (2) | ||
|
||
typedef enum : NSUInteger { | ||
MMTabStateSelected, | ||
MMTabStateUnselected, | ||
MMTabStateUnselectedHover, | ||
} MMTabState; | ||
|
||
@class MMTabline; | ||
|
||
@interface MMTab : NSView | ||
|
||
@property (nonatomic, copy) NSString *title; | ||
@property (nonatomic, getter=isCloseButtonHidden) BOOL closeButtonHidden; | ||
@property (nonatomic) MMTabState state; | ||
|
||
- (instancetype)initWithFrame:(NSRect)frameRect tabline:(MMTabline *)tabline; | ||
|
||
@end |
Oops, something went wrong.