3 * Copyright (c) 2016, Blue Static <https://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
19 // NSNumber integer for the port to listen on.
20 extern NSString
* const kPrefPort
;
22 // NSNumber bool for whether the inspector window is visible.
23 extern NSString
* const kPrefInspectorWindowVisible
;
25 // NSMutableArray of path replacements.
26 extern NSString
* const kPrefPathReplacements
;
28 // NSString to the path to the PHP binary used for syntax highlighting.
29 extern NSString
* const kPrefPhpPath
;
32 // NSMutableDictionary of NSString paths to NSData file access bookmarks.
33 extern NSString
* const kPrefFileAccessBookmarks
;
35 // NSDate of last showing the FileAccessController on startup.
36 extern NSString
* const kPrefFileAccessStartupShowDate
;
37 #endif // USE_APP_SANDBOX
39 // NSNumber bool for whether to stop the debugger on the first line of the
41 extern NSString
* const kPrefBreakOnFirstLine
;
43 // NSNumber bool for whether the debugger is currently listening/attached.
44 extern NSString
* const kPrefDebuggerAttached
;
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
;
50 // NSMutableArray of breakpoints.
51 extern NSString
* const kPrefBreakpoints
;
53 // The selected segment in the DebuggerController.
54 extern NSString
* const kPrefSelectedDebuggerSegment
;