The R Project SVN R-packages

Rev

Rev 1396 | Rev 3693 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
815 urbaneks 1
/*
2
 *  R.app : a Cocoa front end to: "R A Computer Language for Statistical Data Analysis"
3
 *  
4
 *  R.app Copyright notes:
1254 iacus 5
 *                     Copyright (C) 2004-5  The R Foundation
815 urbaneks 6
 *                     written by Stefano M. Iacus and Simon Urbanek
7
 *
8
 *                  
9
 *  R Copyright notes:
10
 *                     Copyright (C) 1995-1996   Robert Gentleman and Ross Ihaka
11
 *                     Copyright (C) 1998-2001   The R Development Core Team
12
 *                     Copyright (C) 2002-2004   The R Foundation
13
 *
14
 *  This program is free software; you can redistribute it and/or modify
15
 *  it under the terms of the GNU General Public License as published by
16
 *  the Free Software Foundation; either version 2 of the License, or
17
 *  (at your option) any later version.
18
 *
19
 *  This program is distributed in the hope that it will be useful,
20
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 *  GNU General Public License for more details.
23
 *
24
 *  A copy of the GNU General Public License is available via WWW at
25
 *  http://www.gnu.org/copyleft/gpl.html.  You can also obtain it by
26
 *  writing to the Free Software Foundation, Inc., 59 Temple Place,
27
 *  Suite 330, Boston, MA  02111-1307  USA.
28
 *
29
 *  Created by Simon Urbanek on 12/5/04.
30
 */
31
 
32
#define backgColorKey @"Background Color"
33
#define inputColorKey @"Input Color"
34
#define outputColorKey @"Output Color"
35
#define stdoutColorKey @"Stdout Color"
36
#define stderrColorKey @"Stderr Color"
37
#define promptColorKey @"Prompt Color"
38
#define rootColorKey   @"Root Color"
39
 
1077 urbaneks 40
#define normalSyntaxColorKey @"Normal Syntax Color"
41
#define stringSyntaxColorKey @"String Syntax Color"
42
#define numberSyntaxColorKey @"Number Syntax Color"
43
#define keywordSyntaxColorKey @"Keyword Syntax Color"
44
#define commentSyntaxColorKey @"Comment Syntax Color"
45
#define identifierSyntaxColorKey @"Identifier Syntax Color"
46
 
820 urbaneks 47
#define initialWorkingDirectoryKey @"Working directory"
48
 
815 urbaneks 49
#define FontSizeKey    @"Console Font Size"
50
#define internalOrExternalKey  @"Use Internal Editor"
51
#define showSyntaxColoringKey  @"Show syntax coloring"
52
#define showBraceHighlightingKey  @"Show brace highlighting"
53
#define highlightIntervalKey  @"Highlight interval"
54
#define showLineNumbersKey  @"Show line numbers"
55
#define externalEditorNameKey  @"External Editor Name"
56
#define appOrCommandKey  @"Is it a .app or a command"
57
#define editOrSourceKey  @"Edit or source in file"
58
#define miscRAquaLibPathKey @"Append RAqua libs to R_LIBS"
1086 urbaneks 59
#define enableLineWrappingKey @"Enable line wrapping if TRUE"
1084 urbaneks 60
#define lineFragmentPaddingWidthKey @"Line fragment padding in editor"
61
#define lineNumberGutterWidthKey @"Line number gutter width"
1136 urbaneks 62
#define importOnStartupKey @"Import history file on startup if TRUE"
1191 urbaneks 63
#define enforceInitialWorkingDirectoryKey @"Enforce initial wd on startup"
1136 urbaneks 64
#define historyFileNamePathKey @"History file path used for R type history files"
1257 urbaneks 65
#define maxHistoryEntriesKey @"Max number of history entries"
66
#define removeDuplicateHistoryEntriesKey @"Remove duplicate history entries"
67
#define cleanupHistoryEntriesKey @"Cleanup history entries"
68
#define stripCommentsFromHistoryEntriesKey @"Strip comment history entries"
1396 urbaneks 69
#define defaultCRANmirrorURLKey @"default.CRAN.mirror.URL"
70
#define stopAskingAboutDefaultMirrorSavingKey @"default.CRAN.mirror.save.dontask"
849 urbaneks 71
 
72
#define useQuartzPrefPaneSettingsKey @"Use QuartzPrefPane values"
73
#define quartzPrefPaneWidthKey @"QuartzPrefPane width"
74
#define quartzPrefPaneHeightKey @"QuartzPrefPane height"
75
#define quartzPrefPaneLocationKey @"QuartzPrefPane location"
76
#define quartzPrefPaneLocationIntKey @"QuartzPrefPane location as an integer"
77
#define quartzPrefPaneFontKey @"QuartzPrefPane font"
78
#define quartzPrefPaneFontSizeKey @"QuartzPrefPane fontsize"
79
 
1603 urbaneks 80
#define prefShowArgsHints @"Show function args hints"
81
 
898 urbaneks 82
// other constants
83
 
84
#define iBackgroundColor 0
85
#define iInputColor      1
86
#define iOutputColor     2
87
#define iPromptColor     3
88
#define iStderrColor     4
89
#define iStdoutColor     5
90
#define iRootColor       6
91