X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=Classes%2FEnjoyableApplicationDelegate.m;fp=Classes%2FEnjoyableApplicationDelegate.m;h=b21ee77ec4fff58d8ad699b2a26b0ecd86f33e5c;hp=beab960bfe7c9df0bdabbb453119c9de9f8e2177;hb=479e7966da759a6b113850961bde029407b277be;hpb=7c9337b7789b0e940cc71f02c7cb7bd92dd2de70 diff --git a/Classes/EnjoyableApplicationDelegate.m b/Classes/EnjoyableApplicationDelegate.m index beab960..b21ee77 100644 --- a/Classes/EnjoyableApplicationDelegate.m +++ b/Classes/EnjoyableApplicationDelegate.m @@ -15,6 +15,7 @@ @implementation EnjoyableApplicationDelegate { NSStatusItem *statusItem; + NSMutableArray *_errors; } - (void)didSwitchApplication:(NSNotification *)note { @@ -143,6 +144,32 @@ return self.dockMenu; } +- (void)showNextError { + if (!self.window.attachedSheet && _errors.count) { + NSError *error = _errors.lastObject; + [_errors removeLastObject]; + [NSApplication.sharedApplication activateIgnoringOtherApps:YES]; + [self.window makeKeyAndOrderFront:nil]; + [self.window presentError:error + modalForWindow:self.window + delegate:self + didPresentSelector:@selector(didPresentErrorWithRecovery:contextInfo:) + contextInfo:nil]; + } +} + +- (void)didPresentErrorWithRecovery:(BOOL)didRecover + contextInfo:(void *)contextInfo { + [self showNextError]; +} + +- (void)presentErrorSheet:(NSError *)error { + if (!_errors) + _errors = [[NSMutableArray alloc] initWithCapacity:1]; + [_errors insertObject:error atIndex:0]; + [self showNextError]; +} + - (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename { [self restoreToForeground:sender]; NSError *error; @@ -160,11 +187,7 @@ [self.mvc endUpdates]; [self.ic activateMapping:mapping]; } else { - [self.window presentError:error - modalForWindow:self.window - delegate:nil - didPresentSelector:nil - contextInfo:nil]; + [self presentErrorSheet:error]; } return !!mapping; } @@ -237,11 +260,7 @@ } else if (mapping) { [self.ic addMapping:mapping]; } else { - [self.window presentError:error - modalForWindow:self.window - delegate:nil - didPresentSelector:nil - contextInfo:nil]; + [self presentErrorSheet:error]; } }]; @@ -259,11 +278,7 @@ [panel close]; NSError *error; if (![mapping writeToURL:panel.URL error:&error]) { - [self.window presentError:error - modalForWindow:self.window - delegate:nil - didPresentSelector:nil - contextInfo:nil]; + [self presentErrorSheet:error]; } }]; } @@ -443,18 +458,7 @@ } - (void)inputController:(NJInputController *)ic didError:(NSError *)error { - // Since the error shows the window, it can trigger another attempt - // to re-open the HID manager, which will also probably fail and error, - // so don't bother repeating ourselves. - if (!self.window.attachedSheet) { - [NSApplication.sharedApplication activateIgnoringOtherApps:YES]; - [self.window makeKeyAndOrderFront:nil]; - [self.window presentError:error - modalForWindow:self.window - delegate:nil - didPresentSelector:nil - contextInfo:nil]; - } + [self presentErrorSheet:error]; } - (NSInteger)numberOfDevicesInDeviceList:(NJDeviceViewController *)dvc {