Bump project version to 212.1.
[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 // NSString to the path to the PHP binary used for syntax highlighting.
29 extern NSString* const kPrefPhpPath;
30
31 #if USE_APP_SANDBOX
32 // NSMutableDictionary of NSString paths to NSData file access bookmarks.
33 extern NSString* const kPrefFileAccessBookmarks;
34
35 // NSDate of last showing the FileAccessController on startup.
36 extern NSString* const kPrefFileAccessStartupShowDate;
37 #endif // USE_APP_SANDBOX
38
39 // NSNumber bool for whether to stop the debugger on the first line of the
40 // program.
41 extern NSString* const kPrefBreakOnFirstLine;
42
43 // NSNumber bool for whether the debugger is currently listening/attached.
44 extern NSString* const kPrefDebuggerAttached;
45
46 // NSNumber bool for whether the app ever reported as an unstable version in
47 // update checks. This will let the user download future unstable versions.
48 extern NSString* const kPrefUnstableVersionCast;
49
50 // NSMutableArray of breakpoints.
51 extern NSString* const kPrefBreakpoints;
52
53 // The selected segment in the DebuggerController.
54 extern NSString* const kPrefSelectedDebuggerSegment;