Clean up +[AppDelegate load] to use ObjC 2.0 literal syntax.
[macgdbp.git] / Source / AppDelegate.m
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2011, Blue Static <http://www.bluestatic.org>
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17 #import "AppDelegate.h"
18
19 #import <Sparkle/Sparkle.h>
20
21 @implementation AppDelegate
22
23 @synthesize debugger;
24 @synthesize breakpoint;
25 @synthesize loggingController = loggingController_;
26
27 /**
28 * Initialize method that is called before all other messages. This will set the default
29 * preference values.
30 */
31 + (void)load
32 {
33 @autoreleasepool {
34 NSDictionary* defaults = @{
35 @"Port" : @9000,
36 @"BreakpointsWindowVisible" : @YES,
37 @"InspectorWindowVisible" : @YES,
38 @"PathReplacements" : [NSMutableArray array],
39 @"BreakOnFirstLine" : @YES,
40 @"DebuggerAttached" : @YES
41 };
42 [[NSUserDefaults standardUserDefaults] registerDefaults:defaults];
43 }
44 }
45
46 + (AppDelegate*)instance
47 {
48 return (AppDelegate*)[NSApp delegate];
49 }
50
51 - (void)applicationDidFinishLaunching:(NSNotification*)notification
52 {
53 // Record whether this user ever used the beta VersionCast feed. In the
54 // future, we will use this bit to query for unstable releases after the user
55 // has upgraded to a stable version.
56 NSString* const kUsesUnstableVersionCast = @"UnstableVersionCast";
57 NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
58
59 BOOL usesUnstable = [defaults boolForKey:kUsesUnstableVersionCast];
60 NSURL* feedURL = [[SUUpdater sharedUpdater] feedURL];
61 usesUnstable = usesUnstable ||
62 [[feedURL absoluteString] rangeOfString:@"?unstable"].location != NSNotFound;
63 [defaults setBool:usesUnstable forKey:kUsesUnstableVersionCast];
64 }
65
66 - (void)applicationWillTerminate:(NSNotification*)notification
67 {
68 [[NSUserDefaults standardUserDefaults] setBool:self.debugger.connection.autoAttach
69 forKey:@"DebuggerAttached"];
70 }
71
72 /**
73 * Shows the debugger window
74 */
75 - (IBAction)showDebuggerWindow:(id)sender
76 {
77 [[debugger window] makeKeyAndOrderFront:self];
78 }
79
80 /**
81 * Shows the breakpoints window
82 */
83 - (IBAction)showBreakpointWindow:(id)sender
84 {
85 if (![[breakpoint window] isVisible] || ![[breakpoint window] isKeyWindow])
86 [[breakpoint window] makeKeyAndOrderFront:sender];
87 else
88 [[breakpoint window] orderOut:sender];
89 }
90
91 /**
92 * Shows the preferences window. Lazily loads the PreferencesController.
93 */
94 - (IBAction)showPreferences:(id)sender
95 {
96 if (!prefs)
97 prefs = [[PreferencesController alloc] init];
98
99 [prefs showPreferencesWindow];
100 }
101
102 /**
103 * Opens the URL to the help page
104 */
105 - (IBAction)openHelpPage:(id)sender
106 {
107 [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://www.bluestatic.org/software/macgdbp/help.php"]];
108 }
109
110 @end