summaryrefslogtreecommitdiffstats
path: root/macosx/HBExceptionAlertController.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBExceptionAlertController.m')
-rw-r--r--macosx/HBExceptionAlertController.m33
1 files changed, 33 insertions, 0 deletions
diff --git a/macosx/HBExceptionAlertController.m b/macosx/HBExceptionAlertController.m
new file mode 100644
index 000000000..5fc69dcbc
--- /dev/null
+++ b/macosx/HBExceptionAlertController.m
@@ -0,0 +1,33 @@
+/* HBExceptionAlertController.m $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr/>.
+ It may be used under the terms of the GNU General Public License. */
+
+#import "HBExceptionAlertController.h"
+
+@implementation HBExceptionAlertController
+
+- (instancetype)init
+{
+ return [self initWithWindowNibName:@"ExceptionAlert"];
+}
+
+- (NSInteger)runModal
+{
+ return [NSApp runModalForWindow:self.window];
+}
+
+- (IBAction)btnCrashClicked:(id)sender
+{
+ [self.window orderOut:nil];
+ [NSApp stopModalWithCode:HBExceptionAlertControllerResultCrash];
+}
+
+- (IBAction)btnContinueClicked:(id)sender
+{
+ [self.window orderOut:nil];
+ [NSApp stopModalWithCode:HBExceptionAlertControllerResultContinue];
+}
+
+@end