Show the FileAccessController when reading a source file fails.
[macgdbp.git] / Source / PreferenceNames.h
1 /*
2 * MacGDBp
3 * Copyright (c) 2016, Blue Static <https://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 @class NSString;
18
19 // NSNumber integer for the port to listen on.
20 extern NSString* const kPrefPort;
21
22 // NSNumber bool for whether the inspector window is visible.
23 extern NSString* const kPrefInspectorWindowVisible;
24
25 // NSMutableArray of path replacements.
26 extern NSString* const kPrefPathReplacements;
27
28 // NSMutableDictionary of NSString paths to NSData file access bookmarks.
29 extern NSString* const kPrefFileAccessBookmarks;
30
31 // NSDate of last showing the FileAccessController on startup.
32 extern NSString* const kPrefFileAccessStartupShowDate;
33
34 // NSNumber bool for whether to stop the debugger on the first line of the
35 // program.
36 extern NSString* const kPrefBreakOnFirstLine;
37
38 // NSNumber bool for whether the debugger is currently listening/attached.
39 extern NSString* const kPrefDebuggerAttached;
40
41 // NSNumber bool for whether the app ever reported as an unstable version in
42 // update checks. This will let the user download future unstable versions.
43 extern NSString* const kPrefUnstableVersionCast;
44
45 // NSMutableArray of breakpoints.
46 extern NSString* const kPrefBreakpoints;
47
48 // The selected segment in the DebuggerController.
49 extern NSString* const kPrefSelectedDebuggerSegment;