6
6
* @author Raven
7
7
*/
8
8
public class SQDevPreferenceConstants {
9
-
9
+
10
10
/**
11
11
* The name of the preference holding the location to the ArmA folder on the
12
12
* local disk
13
13
*/
14
14
public static final String SQDEV_INFO_ARMA_MAIN_DIRECTORY = "raven.sqdev.ArmAProgramDirectory" ;
15
-
15
+
16
16
/**
17
17
* The name of the preference holding the location of the ArmA folder in the
18
18
* documents directory on the local disk
19
19
*/
20
20
public static final String SQDEV_INFO_ARMA_DOCUMENTS_DIRECTORY = "raven.sqdev.ArmADocumentsDirectory" ;
21
-
21
+
22
22
/**
23
23
* The name of the preference holding the default profile of the user
24
24
*/
25
25
public static final String SQDEV_INFO_DEFAULT_PROFILE = "raven.sqdev.defaultProfile" ;
26
-
26
+
27
27
/**
28
28
* The name of the preference holding the default terrain
29
29
*/
30
30
public static final String SQDEV_INFO_DEFAULT_TERRAIN = "raven.sqdev.defaultTerrain" ;
31
-
31
+
32
32
/**
33
33
* The name of the preference indicating if autoExport is enabled by default
34
34
*/
35
35
public static final String SQDEV_INFO_DEFAULT_AUTOEXPORT = "raven.sqdev.defaultAutoExport" ;
36
-
36
+
37
37
/**
38
- * The name of the preference indicating whether the preference page should
39
- * ask to save unsaved preferences when clicking OK
38
+ * The name of the preference indicating whether the preference page should ask
39
+ * to save unsaved preferences when clicking OK
40
40
*/
41
41
public static final String SQDEV_PROMPT_ALWAYS_SAVE_ON_EXIT = "raven.sqdev.AlwaysSaveOnExit" ;
42
-
42
+
43
43
/**
44
- * The name of the preference indicating whether the user should be asked
45
- * again if he selected an action that will delete a file
44
+ * The name of the preference indicating whether the user should be asked again
45
+ * if he selected an action that will delete a file
46
46
*/
47
47
public static final String SQDEV_PROMPT_ASK_FOR_DELETION = "raven.sqdev.askForDeletion" ;
48
-
48
+
49
49
/**
50
- * The name of the preference indicating whether matching brackets should
51
- * get highlighted
50
+ * The name of the preference indicating whether matching brackets should get
51
+ * highlighted
52
52
*/
53
53
public static final String SQDEV_EDITOR_MATCHING_BRACKETS_KEY = "raven.sqdev.enableBracketMatch" ;
54
-
54
+
55
55
/**
56
56
* The name of the preference indicating the color of the highlight of a
57
57
* matching bracket
58
58
*/
59
59
public static final String SQDEV_EDITOR_MATCHING_BRACKETS_COLOR_KEY = "raven.sqdev.matchingBracketsColor" ;
60
-
60
+
61
61
/**
62
62
* The name of the preference indicating whether autoCompletion should be
63
63
* enabled
64
64
*/
65
65
public static final String SQDEV_EDITOR_ENABLE_AUTOCOMPLETE_KEY = "raven.sqdev.enableAutoComplete" ;
66
-
66
+
67
67
/**
68
68
* The name of the preference indicating whether the current line should get
69
69
* highlighted
70
70
*/
71
71
public static final String SQDEV_EDITOR_HIGHLIGHT_CURRENTLINE_KEY = "raven.sqdev.highlightCurrentLine" ;
72
-
72
+
73
73
/**
74
74
* The preferences indicating the color of the current line highlighting
75
75
*/
76
76
public static final String SQDEV_EDITOR_HIGHLIGHT_CURRENTLINE_COLOR_KEY = "raven.sqdev.currentLineHighlightingColor" ;
77
-
77
+
78
78
/**
79
79
* The preferences indicating the color of the keyword highlighting
80
80
*/
81
81
public static final String SQDEV_EDITOR_KEYWORDHIGHLIGHTING_COLOR_KEY = "raven.sqdev.keywordHighlightingColor" ;
82
-
82
+
83
83
/**
84
84
* The preference indicating the color of the local variable highlighting
85
85
*/
86
86
public static final String SQDEV_EDITOR_LOCALVARIABLEHIGHLIGHTING_COLOR_KEY = "raven.sqdev.localVariableHighlightingColor" ;
87
-
87
+
88
88
/**
89
89
* The preference indicating the color of the global variable highlighting
90
90
*/
91
91
public static final String SQDEV_EDITOR_GLOBALVARIABLEHIGHLIGHTING_COLOR_KEY = "raven.sqdev.globalVariableHighlightingColor" ;
92
-
92
+
93
93
/**
94
94
* The preference indicating the color of the magic variable highlighting
95
95
*/
96
96
public static final String SQDEV_EDITOR_MAGICVARIABLEHIGHLIGHTING_COLOR_KEY = "raven.sqdev.magicVariableHighlightingColor" ;
97
-
97
+
98
98
/**
99
99
* The preference indicating the color of the macro highlighting
100
100
*/
101
101
public static final String SQDEV_EDITOR_MACROHIGHLIGHTING_COLOR_KEY = "raven.sqdev.macroHighlightingColor" ;
102
-
102
+
103
+ /**
104
+ * The preference indicating the color of the string highlighting
105
+ */
106
+ public static final String SQDEV_EDITOR_STRINGHIGHLIGHTING_COLOR_KEY = "raven.sqdev.stringHighlightingColor" ;
107
+
103
108
/**
104
- * The preference indicating the delay before parsing after the user typed
105
- * in something
109
+ * The preference indicating the color of the string highlighting
110
+ */
111
+ public static final String SQDEV_EDITOR_COMMENTHIGHLIGHTING_COLOR_KEY = "raven.sqdev.commentHighlightingColor" ;
112
+
113
+ /**
114
+ * The preference indicating the delay before parsing after the user typed in
115
+ * something
106
116
*/
107
117
public static final String SQDEV_EDITOR_PARSE_DELAY = "raven.sqdev.parsingInterval" ;
108
-
118
+
109
119
/**
110
- * The preference indicating if a directory should be cleaned without asking
111
- * for permission when exporting a project
120
+ * The preference indicating if a directory should be cleaned without asking for
121
+ * permission when exporting a project
112
122
*/
113
123
public static final String SQDEV_EXPORT_AUTOCLEAN = "raven.sqdev.autoClean" ;
114
-
124
+
115
125
/**
116
126
* The preference holding the web adress to the BIKI API
117
127
*/
118
128
public static final String SQDEV_COLLECTION_API_ADRESS = "raven.sqdev.collection.apiAdress" ;
119
-
129
+
120
130
/**
121
131
* The preference holding the wname of the main page that lists all the SQF
122
132
* commands
123
133
*/
124
134
public static final String SQDEV_COLLECTION_API_MAINPAGE = "raven.sqdev.collection.apiMainPage" ;
125
-
135
+
126
136
/**
127
137
* The preference holding the path to the folder where ArmA stores it's RPTs
128
138
*/
129
139
public static final String SQDEV_VIEWS_RPTVIEWER_RPT_PATH = "raven.sqdev.rptViewer.rptPath" ;
130
140
/**
131
- * The preference indicating whether the RPTViewer should format it's
132
- * content
141
+ * The preference indicating whether the RPTViewer should format it's content
133
142
*/
134
143
public static final String SQDEV_VIEWS_RPTVIEWER_FORMAT = "raven.sqdev.views.rptViewer.autoFormatRPTContent" ;
135
144
/**
@@ -138,8 +147,8 @@ public class SQDevPreferenceConstants {
138
147
*/
139
148
public static final String SQDEV_VIEWS_RPTVIEWER_FORMAT_PREFIXES = "raven.sqdev.views.rptViewer.formatPrefixes" ;
140
149
/**
141
- * The preferences storing the maximum amount of blank lines that may occur
142
- * in a formatted RPT in a row
150
+ * The preferences storing the maximum amount of blank lines that may occur in a
151
+ * formatted RPT in a row
143
152
*/
144
153
public static final String SQDEV_VIEWS_RPTVIEWER_MAX_BLANK_REPETITION = "raven.sqdev.views.rptViewer.maxBlankRepetition" ;
145
154
}
0 commit comments