/* Copyright 2020 Jaakko Keränen Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "macos.h" #include "app.h" #include "ui/command.h" #include "ui/widget.h" #include "ui/color.h" #include "ui/window.h" #include #import static NSTouchBarItemIdentifier goBack_TouchId_ = @"fi.skyjake.Lagrange.back"; static NSTouchBarItemIdentifier goForward_TouchId_ = @"fi.skyjake.Lagrange.forward"; static NSTouchBarItemIdentifier find_TouchId_ = @"fi.skyjake.Lagrange.find"; static NSTouchBarItemIdentifier newTab_TouchId_ = @"fi.skyjake.Lagrange.tabs.new"; static NSTouchBarItemIdentifier sidebarMode_TouchId_ = @"fi.skyjake.Lagrange.sidebar.mode"; enum iTouchBarVariant { default_TouchBarVariant, }; static iInt2 macVer_(void) { if ([[NSProcessInfo processInfo] respondsToSelector:@selector(operatingSystemVersion)]) { const NSOperatingSystemVersion ver = [[NSProcessInfo processInfo] operatingSystemVersion]; return init_I2(ver.majorVersion, ver.minorVersion); } return init_I2(10, 10); } static NSString *currentSystemAppearance_(void) { /* This API does not exist on 10.13. */ if ([NSApp respondsToSelector:@selector(effectiveAppearance)]) { return [[NSApp effectiveAppearance] name]; } return @"NSAppearanceNameAqua"; } iBool shouldDefaultToMetalRenderer_MacOS(void) { const iInt2 ver = macVer_(); return ver.x > 10 || ver.y > 13; } /*----------------------------------------------------------------------------------------------*/ @interface CommandButton : NSCustomTouchBarItem { NSString *command; iWidget *widget; } - (id)initWithIdentifier:(NSTouchBarItemIdentifier)identifier title:(NSString *)title command:(NSString *)cmd; - (id)initWithIdentifier:(NSTouchBarItemIdentifier)identifier title:(NSString *)title widget:(iWidget *)widget command:(NSString *)cmd; - (id)initWithIdentifier:(NSTouchBarItemIdentifier)identifier image:(NSImage *)image widget:(iWidget *)widget command:(NSString *)cmd; - (void)dealloc; @end @implementation CommandButton - (id)initWithIdentifier:(NSTouchBarItemIdentifier)identifier title:(NSString *)title command:(NSString *)cmd { [super initWithIdentifier:identifier]; self.view = [NSButton buttonWithTitle:title target:self action:@selector(buttonPressed)]; command = cmd; return self; } - (id)initWithIdentifier:(NSTouchBarItemIdentifier)identifier image:(NSImage *)image widget:(iWidget *)widget command:(NSString *)cmd { [super initWithIdentifier:identifier]; self.view = [NSButton buttonWithImage:image target:self action:@selector(buttonPressed)]; command = cmd; return self; } - (id)initWithIdentifier:(NSTouchBarItemIdentifier)identifier title:(NSString *)title widget:(iWidget *)aWidget command:(NSString *)cmd { [self initWithIdentifier:identifier title:title command:[cmd retain]]; widget = aWidget; return self; } - (void)dealloc { [command release]; [super dealloc]; } - (void)buttonPressed { const char *cmd = [command cStringUsingEncoding:NSUTF8StringEncoding]; if (widget) { postCommand_Widget(widget, "%s", cmd); } else { postCommand_App(cmd); } } @end /*----------------------------------------------------------------------------------------------*/ @interface MyDelegate : NSResponder { enum iTouchBarVariant touchBarVariant; NSString *currentAppearanceName; NSObject *sdlDelegate; NSMutableDictionary *menuCommands; } - (id)initWithSDLDelegate:(NSObject *)sdl; - (NSTouchBar *)makeTouchBar; - (BOOL)application:(NSApplication *)app openFile:(NSString *)filename; - (void)application:(NSApplication *)app openFiles:(NSArray *)filenames; - (void)application:(NSApplication *)app openURLs:(NSArray *)urls; - (void)applicationDidFinishLaunching:(NSNotification *)notifications; @end @implementation MyDelegate - (id)initWithSDLDelegate:(NSObject *)sdl { [super init]; currentAppearanceName = nil; menuCommands = [[NSMutableDictionary alloc] init]; touchBarVariant = default_TouchBarVariant; sdlDelegate = sdl; return self; } - (void)dealloc { [menuCommands release]; [currentAppearanceName release]; [super dealloc]; } - (void)setTouchBarVariant:(enum iTouchBarVariant)variant { touchBarVariant = variant; self.touchBar = nil; } static void appearanceChanged_MacOS_(NSString *name) { const iBool isDark = [name containsString:@"Dark"]; const iBool isHighContrast = [name containsString:@"HighContrast"]; postCommandf_App("~os.theme.changed dark:%d contrast:%d", isDark ? 1 : 0, isHighContrast ? 1 : 0); } - (void)setAppearance:(NSString *)name { if (!currentAppearanceName || ![name isEqualToString:currentAppearanceName]) { if (currentAppearanceName) { [currentAppearanceName release]; } currentAppearanceName = [name retain]; appearanceChanged_MacOS_(currentAppearanceName); } } - (void)setCommand:(NSString *)command forMenuItem:(NSMenuItem *)menuItem { [menuCommands setObject:command forKey:[menuItem title]]; } - (BOOL)application:(NSApplication *)app openFile:(NSString *)filename { return [sdlDelegate application:app openFile:filename]; } - (void)application:(NSApplication *)app openFiles:(NSArray *)filenames { /* TODO: According to AppKit docs, this method won't be called when openURLs is defined. */ for (NSString *fn in filenames) { NSLog(@"openFiles: %@", fn); [self application:app openFile:fn]; } } - (void)application:(NSApplication *)app openURLs:(NSArray *)urls { for (NSURL *url in urls) { NSLog(@"openURLs: %@", [url absoluteString]); [sdlDelegate application:app openFile:[url absoluteString]]; } } - (void)applicationDidFinishLaunching:(NSNotification *)notification { [sdlDelegate applicationDidFinishLaunching:notification]; } - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { iUnused(object, change); if ([keyPath isEqualToString:@"effectiveAppearance"] && context == self) { [self setAppearance:[[NSApp effectiveAppearance] name]]; } } - (NSTouchBar *)makeTouchBar { NSTouchBar *bar = [[NSTouchBar alloc] init]; bar.delegate = self; switch (touchBarVariant) { case default_TouchBarVariant: bar.defaultItemIdentifiers = @[ goBack_TouchId_, goForward_TouchId_, NSTouchBarItemIdentifierFixedSpaceSmall, find_TouchId_, NSTouchBarItemIdentifierFlexibleSpace, sidebarMode_TouchId_, NSTouchBarItemIdentifierFlexibleSpace, newTab_TouchId_, NSTouchBarItemIdentifierOtherItemsProxy ]; break; } return bar; } - (void)showPreferences { postCommand_App("preferences"); } - (void)closeTab { postCommand_App("tabs.close"); } - (void)postMenuItemCommand:(id)sender { NSString *command = [menuCommands objectForKey:[(NSMenuItem *)sender title]]; if (command) { postCommand_App([command cStringUsingEncoding:NSUTF8StringEncoding]); /* Shouldn't double-activate menu items in case the same key is used in our widgets. SDL ignores menu key equivalents so the keydown events will be posted regardless. This is quite a kludge, but we can achieve this by taking advantage of Window's focus-acquisition threshold for ignoring key events. */ get_Window()->focusGainedAt = SDL_GetTicks(); } } - (void)sidebarModePressed:(id)sender { NSSegmentedControl *seg = sender; postCommandf_App("sidebar.mode arg:%d toggle:1", (int) [seg selectedSegment]); } - (nullable NSTouchBarItem *)touchBar:(NSTouchBar *)touchBar makeItemForIdentifier:(NSTouchBarItemIdentifier)identifier { iUnused(touchBar); if ([identifier isEqualToString:goBack_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier image:[NSImage imageNamed:NSImageNameTouchBarGoBackTemplate] widget:nil command:@"navigate.back"]; } else if ([identifier isEqualToString:goForward_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier image:[NSImage imageNamed:NSImageNameTouchBarGoForwardTemplate] widget:nil command:@"navigate.forward"]; } else if ([identifier isEqualToString:find_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier image:[NSImage imageNamed:NSImageNameTouchBarSearchTemplate] widget:nil command:@"focus.set id:find.input"]; } else if ([identifier isEqualToString:sidebarMode_TouchId_]) { NSCustomTouchBarItem *item = [[NSCustomTouchBarItem alloc] initWithIdentifier:sidebarMode_TouchId_]; NSSegmentedControl *seg = [NSSegmentedControl segmentedControlWithLabels:@[ @"Bookmarks", @"History", @"Identities", @"Outline"] trackingMode:NSSegmentSwitchTrackingMomentary target:[[NSApplication sharedApplication] delegate] action:@selector(sidebarModePressed:)]; item.view = seg; return item; } else if ([identifier isEqualToString:newTab_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier image:[NSImage imageNamed:NSImageNameTouchBarAddTemplate] widget:nil command:@"tabs.new"]; } #if 0 if ([identifier isEqualToString:play_TouchId_]) { return [NSButtonTouchBarItem buttonTouchBarItemWithIdentifier:identifier image:[NSImage imageNamed:NSImageNameTouchBarPlayPauseTemplate] target:self action:@selector(playPressed)]; } else if ([identifier isEqualToString:restart_TouchId_]) { return [NSButtonTouchBarItem buttonTouchBarItemWithIdentifier:identifier image:[NSImage imageNamed:NSImageNameTouchBarSkipToStartTemplate] target:self action:@selector(restartPressed)]; } else if ([identifier isEqualToString:seqMoveUp_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier title:@"Seq\u2b06" widget:findWidget_App("sequence") command:@"sequence.swap arg:-1"]; } else if ([identifier isEqualToString:seqMoveDown_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier title:@"Seq\u2b07" widget:findWidget_App("sequence") command:@"sequence.swap arg:1"]; } else if ([identifier isEqualToString:goto_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier title:@"Go to…" command:@"pattern.goto arg:-1"]; } else if ([identifier isEqualToString:event_TouchId_]) { NSTouchBar *events = [[NSTouchBar alloc] init]; events.delegate = self; events.defaultItemIdentifiers = @[ eventList_TouchId_ ]; NSPopoverTouchBarItem *pop = [[NSPopoverTouchBarItem alloc] initWithIdentifier:identifier]; pop.collapsedRepresentationLabel = @"Event"; pop.popoverTouchBar = events; [events release]; return pop; } else if ([identifier isEqualToString:eventList_TouchId_]) { const struct { NSTouchBarItemIdentifier id; const char *title; const char *command; } buttonDefs_[] = { { voiceEvent_TouchId_, "Voice", "tracker.setevent type:2" }, { panEvent_TouchId_, "Pan", "tracker.setevent type:3 arg:128" }, { gainEvent_TouchId_, "Gain", "tracker.setevent type:4 arg:128" }, { fadeEvent_TouchId_, "Fade", "tracker.setevent type:5" }, { tremoloEvent_TouchId_, "Trem", "tracker.setevent type:9" }, { pitchSpeedEvent_TouchId_, "P.Spd", "tracker.setevent type:6" }, { pitchBendUpEvent_TouchId_, "BnUp", "tracker.setevent type:7" }, { pitchBendDownEvent_TouchId_, "BnDn", "tracker.setevent type:8" }, { masterGainEvent_TouchId_, "M.Gain", "tracker.setevent type:10 arg:64" }, { resetEvent_TouchId_, "Reset", "tracker.setevent type:1" }, }; NSMutableArray *items = [[NSMutableArray alloc] init]; iForIndices(i, buttonDefs_) { CommandButton *button = [[CommandButton alloc] initWithIdentifier:buttonDefs_[i].id title:[NSString stringWithUTF8String:buttonDefs_[i].title] widget:findWidget_App("tracker") command:[NSString stringWithUTF8String:buttonDefs_[i].command] ]; [items addObject:button]; } NSGroupTouchBarItem *group = [NSGroupTouchBarItem groupItemWithIdentifier:identifier items:items]; [items release]; return group; } else if ([identifier isEqualToString:mute_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier title:@"Mute" widget:findWidget_App("tracker") command:@"tracker.mute"]; } else if ([identifier isEqualToString:solo_TouchId_]) { return [[CommandButton alloc] initWithIdentifier:identifier title:@"Solo" widget:findWidget_App("tracker") command:@"tracker.solo"]; } else if ([identifier isEqualToString:color_TouchId_]) { NSTouchBar *colors = [[NSTouchBar alloc] init]; colors.delegate = self; colors.defaultItemIdentifiers = @[ NSTouchBarItemIdentifierFlexibleSpace, whiteColor_TouchId_, yellowColor_TouchId_, orangeColor_TouchId_, redColor_TouchId_, magentaColor_TouchId_, blueColor_TouchId_, cyanColor_TouchId_, greenColor_TouchId_, NSTouchBarItemIdentifierFlexibleSpace ]; NSPopoverTouchBarItem *pop = [[NSPopoverTouchBarItem alloc] initWithIdentifier:identifier]; pop.collapsedRepresentationImage = [NSImage imageNamed:NSImageNameTouchBarColorPickerFill]; pop.popoverTouchBar = colors; [colors release]; return pop; } else if ([identifier isEqualToString:whiteColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:white_TrackColor]; } else if ([identifier isEqualToString:yellowColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:yellow_TrackColor]; } else if ([identifier isEqualToString:orangeColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:orange_TrackColor]; } else if ([identifier isEqualToString:redColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:red_TrackColor]; } else if ([identifier isEqualToString:magentaColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:magenta_TrackColor]; } else if ([identifier isEqualToString:blueColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:blue_TrackColor]; } else if ([identifier isEqualToString:cyanColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:cyan_TrackColor]; } else if ([identifier isEqualToString:greenColor_TouchId_]) { return [[ColorButton alloc] initWithIdentifier:identifier trackColor:green_TrackColor]; } #endif return nil; } @end void enableMomentumScroll_MacOS(void) { [[NSUserDefaults standardUserDefaults] setBool: YES forKey: @"AppleMomentumScrollSupported"]; } @interface UrlHandler : NSObject - (void)handleURLEvent:(NSAppleEventDescriptor*)event withReplyEvent:(NSAppleEventDescriptor*)replyEvent; @end @implementation UrlHandler - (void)handleURLEvent:(NSAppleEventDescriptor*)event withReplyEvent:(NSAppleEventDescriptor*)replyEvent { NSString *url = [[event paramDescriptorForKeyword:keyDirectObject] stringValue]; postCommandf_App("~open url:%s", [url cStringUsingEncoding:NSUTF8StringEncoding]); } @end void registerURLHandler_MacOS(void) { UrlHandler *handler = [[UrlHandler alloc] init]; [[NSAppleEventManager sharedAppleEventManager] setEventHandler:handler andSelector:@selector(handleURLEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL]; } void setupApplication_MacOS(void) { NSApplication *app = [NSApplication sharedApplication]; /* Our delegate will override SDL's delegate. */ MyDelegate *myDel = [[MyDelegate alloc] initWithSDLDelegate:app.delegate]; [myDel setAppearance:currentSystemAppearance_()]; [app addObserver:myDel forKeyPath:@"effectiveAppearance" options:0 context:myDel]; app.delegate = myDel; NSMenu *appMenu = [[[NSApp mainMenu] itemAtIndex:0] submenu]; NSMenuItem *prefsItem = [appMenu itemWithTitle:@"Preferences…"]; prefsItem.target = myDel; prefsItem.action = @selector(showPreferences); /* Get rid of the default window close item */ NSMenu *windowMenu = [[[NSApp mainMenu] itemWithTitle:@"Window"] submenu]; NSMenuItem *windowCloseItem = [windowMenu itemWithTitle:@"Close"]; windowCloseItem.target = myDel; windowCloseItem.action = @selector(closeTab); } void insertMenuItems_MacOS(const char *menuLabel, int atIndex, const iMenuItem *items, size_t count) { NSApplication *app = [NSApplication sharedApplication]; MyDelegate *myDel = (MyDelegate *) app.delegate; NSMenu *appMenu = [app mainMenu]; NSMenuItem *mainItem = [appMenu insertItemWithTitle:[NSString stringWithUTF8String:menuLabel] action:nil keyEquivalent:@"" atIndex:atIndex]; NSMenu *menu = [[NSMenu alloc] initWithTitle:[NSString stringWithUTF8String:menuLabel]]; for (size_t i = 0; i < count; ++i) { const char *label = items[i].label; if (label[0] == '\r') { /* Skip the formatting escape. */ label += 2; } if (equal_CStr(label, "---")) { [menu addItem:[NSMenuItem separatorItem]]; } else { const iBool hasCommand = (items[i].command && items[i].command[0]); iString key; init_String(&key); if (items[i].key == SDLK_LEFT) { appendChar_String(&key, 0x2190); } else if (items[i].key == SDLK_RIGHT) { appendChar_String(&key, 0x2192); } else if (items[i].key == SDLK_UP) { appendChar_String(&key, 0x2191); } else if (items[i].key == SDLK_DOWN) { appendChar_String(&key, 0x2193); } else if (items[i].key) { appendChar_String(&key, items[i].key); } NSMenuItem *item = [menu addItemWithTitle:[NSString stringWithUTF8String:label] action:(hasCommand ? @selector(postMenuItemCommand:) : nil) keyEquivalent:[NSString stringWithUTF8String:cstr_String(&key)]]; NSEventModifierFlags modMask = 0; if (items[i].kmods & KMOD_GUI) { modMask |= NSEventModifierFlagCommand; } if (items[i].kmods & KMOD_ALT) { modMask |= NSEventModifierFlagOption; } if (items[i].kmods & KMOD_CTRL) { modMask |= NSEventModifierFlagControl; } if (items[i].kmods & KMOD_SHIFT) { modMask |= NSEventModifierFlagShift; } [item setKeyEquivalentModifierMask:modMask]; if (hasCommand) { [myDel setCommand:[NSString stringWithUTF8String:items[i].command] forMenuItem:item]; } deinit_String(&key); } } [mainItem setSubmenu:menu]; [menu release]; } void handleCommand_MacOS(const char *cmd) { if (equal_Command(cmd, "prefs.ostheme.changed")) { if (arg_Command(cmd)) { appearanceChanged_MacOS_(currentSystemAppearance_()); } } #if 0 if (equal_Command(cmd, "tabs.changed")) { MyDelegate *myDel = (MyDelegate *) [[NSApplication sharedApplication] delegate]; const char *tabId = suffixPtr_Command(cmd, "id"); [myDel setTouchBarVariant:default_TouchBarVariant]; } #endif } void log_MacOS(const char *msg) { NSLog(@"%s", msg); }