2009-02-22 22:28:09 +00:00
|
|
|
//
|
|
|
|
// MiniWindow.m
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/22/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "MiniWindow.h"
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
#import <Carbon/Carbon.h>
|
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
@implementation MiniWindow
|
|
|
|
|
2018-06-28 10:59:59 +00:00
|
|
|
- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSWindowStyleMask)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
|
2009-02-22 22:28:09 +00:00
|
|
|
{
|
2021-01-08 09:10:18 +00:00
|
|
|
self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
|
|
|
|
if (self)
|
|
|
|
{
|
|
|
|
[self setShowsResizeIndicator:NO];
|
|
|
|
[self setExcludedFromWindowsMenu:YES];
|
|
|
|
[[self standardWindowButton:NSWindowZoomButton] setEnabled:NO];
|
2021-02-27 12:29:01 +00:00
|
|
|
|
2021-01-08 09:10:18 +00:00
|
|
|
// Disallow height resize.
|
2021-03-03 19:47:31 +00:00
|
|
|
[self setContentMinSize:NSMakeSize(325, 1)];
|
2021-02-27 12:29:01 +00:00
|
|
|
[self setContentMaxSize:NSMakeSize(CGFLOAT_MAX, 1)];
|
2013-10-11 01:14:35 +00:00
|
|
|
[self setCollectionBehavior:NSWindowCollectionBehaviorFullScreenAuxiliary];
|
2021-01-08 09:10:18 +00:00
|
|
|
}
|
2009-02-22 22:28:09 +00:00
|
|
|
|
2021-01-08 09:10:18 +00:00
|
|
|
return self;
|
2009-02-22 22:28:09 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 19:02:05 +00:00
|
|
|
- (void)toggleToolbarShown:(id)sender {
|
|
|
|
// Mini window IS the toolbar, no point in hiding it.
|
|
|
|
// Do nothing!
|
|
|
|
}
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
- (void)keyDown:(NSEvent *)event {
|
|
|
|
BOOL modifiersUsed =([event modifierFlags] & (NSEventModifierFlagShift |
|
|
|
|
NSEventModifierFlagControl |
|
|
|
|
NSEventModifierFlagOption |
|
|
|
|
NSEventModifierFlagCommand)) ? YES : NO;
|
|
|
|
if (modifiersUsed) {
|
|
|
|
[super keyDown:event];
|
2018-09-27 03:30:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
switch ([event keyCode]) {
|
|
|
|
case kVK_Space:
|
2021-01-08 09:10:18 +00:00
|
|
|
[playbackController playPauseResume:self];
|
|
|
|
break;
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
case kVK_Return:
|
2021-01-08 09:10:18 +00:00
|
|
|
[playbackController play:self];
|
|
|
|
break;
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
case kVK_LeftArrow:
|
2021-01-08 09:10:18 +00:00
|
|
|
[playbackController eventSeekBackward:self];
|
|
|
|
break;
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
case kVK_RightArrow:
|
2021-01-08 09:10:18 +00:00
|
|
|
[playbackController eventSeekForward:self];
|
|
|
|
break;
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
case kVK_UpArrow:
|
2021-01-08 09:10:18 +00:00
|
|
|
[playbackController volumeUp:self];
|
|
|
|
break;
|
|
|
|
|
2021-02-19 05:23:13 +00:00
|
|
|
case kVK_DownArrow:
|
2021-01-08 09:10:18 +00:00
|
|
|
[playbackController volumeDown:self];
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2021-02-19 05:23:13 +00:00
|
|
|
[super keyDown:event];
|
2021-01-08 09:10:18 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-09-27 03:30:02 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 19:02:05 +00:00
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
@end
|