3 * Copyright (c) 2007 - 2011, Blue Static <http://www.bluestatic.org>
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.
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.
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
17 #import "AppDelegate.h"
19 #import <Sparkle/Sparkle.h>
21 @implementation AppDelegate
24 @synthesize breakpoint
;
25 @synthesize loggingController
= loggingController_
;
28 * Initialize method that is called before all other messages. This will set the default
33 NSAutoreleasePool
* pool
= [NSAutoreleasePool
new];
35 NSDictionary
* dict
= [[NSDictionary alloc
] initWithObjectsAndKeys
:
36 [NSNumber numberWithInt
:9000], @
"Port",
37 [NSNumber numberWithBool
:YES
], @
"BreakpointsWindowVisible",
38 [NSNumber numberWithBool
:YES
], @
"InspectorWindowVisible",
39 [NSMutableArray array
], @
"PathReplacements",
40 [NSNumber numberWithBool
:YES
], @
"BreakOnFirstLine",
41 [NSNumber numberWithBool
:YES
], @
"DebuggerAttached",
45 [[NSUserDefaults standardUserDefaults
] registerDefaults
:dict
];
52 + (AppDelegate
*)instance
54 return (AppDelegate
*)[NSApp delegate
];
57 - (void)applicationDidFinishLaunching
:(NSNotification
*)notification
59 // Record whether this user ever used the beta VersionCast feed. In the
60 // future, we will use this bit to query for unstable releases after the user
61 // has upgraded to a stable version.
62 NSString
* const kUsesUnstableVersionCast
= @
"UnstableVersionCast";
63 NSUserDefaults
* defaults
= [NSUserDefaults standardUserDefaults
];
65 BOOL usesUnstable
= [defaults boolForKey
:kUsesUnstableVersionCast
];
66 NSURL
* feedURL
= [[SUUpdater sharedUpdater
] feedURL
];
67 usesUnstable
= usesUnstable ||
68 [[feedURL absoluteString
] rangeOfString
:@
"?unstable"].location
!= NSNotFound
;
69 [defaults setBool
:usesUnstable forKey
:kUsesUnstableVersionCast
];
72 - (void)applicationWillTerminate
:(NSNotification
*)notification
74 [[NSUserDefaults standardUserDefaults
] setBool
:self.debugger.connection.attached
75 forKey
:@
"DebuggerAttached"];
79 * Shows the debugger window
81 - (IBAction
)showDebuggerWindow
:(id)sender
83 [[debugger window
] makeKeyAndOrderFront
:self];
87 * Shows the breakpoints window
89 - (IBAction
)showBreakpointWindow
:(id)sender
91 if (![[breakpoint window
] isVisible
] ||
![[breakpoint window
] isKeyWindow
])
92 [[breakpoint window
] makeKeyAndOrderFront
:sender
];
94 [[breakpoint window
] orderOut
:sender
];
98 * Shows the preferences window. Lazily loads the PreferencesController.
100 - (IBAction
)showPreferences
:(id)sender
103 prefs
= [[PreferencesController alloc
] init
];
105 [prefs showPreferencesWindow
];
109 * Opens the URL to the help page
111 - (IBAction
)openHelpPage
:(id)sender
113 [[NSWorkspace sharedWorkspace
] openURL
:[NSURL URLWithString
:@
"https://www.bluestatic.org/software/macgdbp/help.php"]];