1) Added missing strings for italic, underline and strike through.
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / src / net / sourceforge / phpeclipse / ui / IPreferenceConstants.java
1 package net.sourceforge.phpeclipse.ui;
2
3 public interface IPreferenceConstants {
4         // public static final String PHP_BOOKMARK_DEFAULT =
5         // "_php_bookmark_default";
6         public static final String PHP_LOCALHOST_PREF = "_php_localhost";
7
8         public static final String PHP_DOCUMENTROOT_PREF = "_php_documentroot";
9
10         public static final String PHP_INCLUDE_PATHS = "_php_include_paths";
11
12         public static final String PHP_AUTO_PREVIEW_DEFAULT = "_auto_preview";
13
14         public static final String PHP_BRING_TO_TOP_PREVIEW_DEFAULT = "_bring_to_top_preview";
15
16         public static final String PHP_STICKY_BROWSER_URL_DEFAULT = "_sticky_browser_url";
17         // public static final String PHP_SHOW_HTML_FILES_LOCAL =
18         // "_show_html_files_local";
19         // public static final String PHP_SHOW_XML_FILES_LOCAL =
20         // "_show_xml_files_local";
21         /**
22          * Preference key suffix for bold text style preference keys.
23          *
24          * @since 2.1
25          */
26         public static final String EDITOR_BOLD_SUFFIX = "_bold"; //$NON-NLS-1$
27
28         /**
29          * Preference key suffix for italic text style preference keys.
30          *
31          * @since 3.0
32          */
33         public static final String EDITOR_ITALIC_SUFFIX = "_italic"; //$NON-NLS-1$
34
35         // public static final String LOCALHOST_PREF = "_localhost";
36         // public static final String DOCUMENTROOT_PREF = "_documentroot";
37         // public static final String XAMPP_START_PREF = "_xampp_start_pref";
38         //
39         // public static final String XAMPP_STOP_PREF = "_xampp_stop_pref";
40         //
41         // public static final String MYSQL_RUN_PREF = "_mysql_run_pref";
42         //
43         // public static final String MYSQL_START_BACKGROUND =
44         // "_mysql_start_background";
45         //
46         // public static final String MYSQL_PREF = "__mysql_start";
47         //
48         // public static final String APACHE_RUN_PREF = "_apache_run_pref";
49         //
50         // public static final String APACHE_START_BACKGROUND =
51         // "_apache_start_background";
52         //
53         // public static final String APACHE_START_PREF = "__apache_start";
54         //
55         // public static final String APACHE_STOP_BACKGROUND =
56         // "_apache_stop_background";
57         //
58         // public static final String APACHE_STOP_PREF = "__apache_stop";
59         //
60         // public static final String APACHE_RESTART_BACKGROUND =
61         // "_apache_restart_background";
62         //
63         // public static final String APACHE_RESTART_PREF = "__apache_restart";
64
65         // public static final String HTTPD_CONF_PATH_PREF = "__httpd_conf_path";
66         //
67         // public static final String ETC_HOSTS_PATH_PREF = "__etc_hosts_path";
68
69         // public static final String SHOW_OUTPUT_IN_CONSOLE =
70         // "_show_output_in_console";
71
72         // public static final String PHP_RUN_PREF = "_php_run_pref";
73         //
74         // public static final String EXTERNAL_PARSER_PREF = "_external_parser";
75
76         // public static final String PHP_EXTENSION_PREFS =
77         // "_php_parser_extensions";
78
79         // public static final String PHP_PARSER_DEFAULT = "_php_parser_default";
80
81         // public static final String PHP_INTERNAL_PARSER = "_php_internal_parser";
82         // public static final String PHP_EXTERNAL_PARSER = "_php_external_parser";
83         // public static final String PHP_PARSE_ON_SAVE = "_php_parse_on_save";
84         public static final String PHP_MULTILINE_COMMENT = "_php_multilineComment";
85
86         public static final String PHP_MULTILINE_COMMENT_BOLD = "_php_multilineComment_bold";
87
88         public static final String PHP_MULTILINE_COMMENT_ITALIC = "_php_multilineComment_italic";
89
90         public static final String PHP_MULTILINE_COMMENT_UNDERLINE = "_php_multilineComment_underline";
91
92         /**
93          * The color key for operators and brackets in PHP code (value
94          * <code>"__php_operator"</code>).
95          *
96          * @since 3.0
97          */
98         public static final String PHP_OPERATOR = "__php_operator"; //$NON-NLS-1$
99
100         /**
101          * The color key for {} in PHP code (value
102          * <code>"__php_brace_operator"</code>).
103          *
104          * @since 3.0
105          */
106         public static final String PHP_BRACE_OPERATOR = "__php_brace_operator"; //$NON-NLS-1$
107
108         /**
109          * A named preference that holds the color used to render operators and
110          * brackets.
111          * <p>
112          * Value is of type <code>String</code>. A RGB color value encoded as a
113          * string using class <code>PreferenceConverter</code>
114          * </p>
115          *
116          * @see org.eclipse.jface.resource.StringConverter
117          * @see org.eclipse.jface.preference.PreferenceConverter
118          * @since 3.0
119          */
120         public final static String EDITOR_PHP_OPERATOR_COLOR = PHP_OPERATOR;
121
122         /**
123          * A named preference that controls whether operators and brackets are
124          * rendered in bold.
125          * <p>
126          * Value is of type <code>Boolean</code>.
127          * </p>
128          *
129          * @since 3.0
130          */
131         public final static String EDITOR_PHP_OPERATOR_BOLD = PHP_OPERATOR + EDITOR_BOLD_SUFFIX;
132
133         /**
134          * A named preference that controls whether operators and brackets are
135          * rendered in italic.
136          * <p>
137          * Value is of type <code>Boolean</code>.
138          * </p>
139          *
140          * @since 3.0
141          */
142         public final static String EDITOR_PHP_OPERATOR_ITALIC = PHP_OPERATOR + EDITOR_ITALIC_SUFFIX;
143
144         /**
145          * A named preference that holds the color used to render operators and
146          * brackets.
147          * <p>
148          * Value is of type <code>String</code>. A RGB color value encoded as a
149          * string using class <code>PreferenceConverter</code>
150          * </p>
151          *
152          * @see org.eclipse.jface.resource.StringConverter
153          * @see org.eclipse.jface.preference.PreferenceConverter
154          * @since 3.0
155          */
156         public final static String EDITOR_PHP_BRACE_OPERATOR_COLOR = PHP_BRACE_OPERATOR;
157
158         /**
159          * A named preference that controls whether operators and brackets are
160          * rendered in bold.
161          * <p>
162          * Value is of type <code>Boolean</code>.
163          * </p>
164          *
165          * @since 3.0
166          */
167         public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD = PHP_BRACE_OPERATOR + EDITOR_BOLD_SUFFIX;
168
169         /**
170          * A named preference that controls whether operators and brackets are
171          * rendered in italic.
172          * <p>
173          * Value is of type <code>Boolean</code>.
174          * </p>
175          *
176          * @since 3.0
177          */
178         public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC = PHP_BRACE_OPERATOR
179                         + EDITOR_ITALIC_SUFFIX;
180
181         /**
182          * The color key for keyword 'return' in PHP code (value
183          * <code>"__php_keyword_return"</code>).
184          *
185          * @since 3.0
186          */
187         public static final String PHP_KEYWORD_RETURN = "__php_keyword_return"; //$NON-NLS-1$
188
189         /**
190          * A named preference that holds the color used to render the 'return'
191          * keyword.
192          * <p>
193          * Value is of type <code>String</code>. A RGB color value encoded as a
194          * string using class <code>PreferenceConverter</code>
195          * </p>
196          *
197          * @see org.eclipse.jface.resource.StringConverter
198          * @see org.eclipse.jface.preference.PreferenceConverter
199          * @since 3.0
200          */
201         public final static String EDITOR_PHP_KEYWORD_RETURN_COLOR = PHP_KEYWORD_RETURN;
202
203         /**
204          * A named preference that controls whether 'return' keyword is rendered in
205          * bold.
206          * <p>
207          * Value is of type <code>Boolean</code>.
208          * </p>
209          *
210          * @since 3.0
211          */
212         public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD = PHP_KEYWORD_RETURN + EDITOR_BOLD_SUFFIX;
213
214         /**
215          * A named preference that controls whether 'return' keyword is rendered in
216          * italic.
217          * <p>
218          * Value is of type <code>Boolean</code>.
219          * </p>
220          *
221          * @since 3.0
222          */
223         public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC = PHP_KEYWORD_RETURN + EDITOR_ITALIC_SUFFIX;
224
225         public static final String PHP_SINGLELINE_COMMENT = "_php_singlelineComment";
226
227         public static final String PHP_SINGLELINE_COMMENT_BOLD = "_php_singlelineComment_bold";//$NON-NLS-1$
228
229         public static final String PHP_SINGLELINE_COMMENT_ITALIC = "_php_singlelineComment_italic";//$NON-NLS-1$
230
231         public static final String PHP_SINGLELINE_COMMENT_UNDERLINE = "_php_singlelineComment_underline";//$NON-NLS-1$
232
233         public static final String PHP_TAG = "_php_tag";//$NON-NLS-1$
234
235         public static final String PHP_TAG_BOLD = "_php_tag_bold";//$NON-NLS-1$
236
237         public static final String PHP_TAG_ITALIC = "_php_tag_italic";//$NON-NLS-1$
238
239         public static final String PHP_TAG_UNDERLINE = "_php_tag_underline";//$NON-NLS-1$
240
241         public static final String PHP_KEYWORD = "_php_keyword";//$NON-NLS-1$
242
243         public static final String PHP_KEYWORD_BOLD = "_php_keyword_bold";//$NON-NLS-1$
244
245         public static final String PHP_KEYWORD_ITALIC = "_php_keyword_italic";//$NON-NLS-1$
246
247         public static final String PHP_KEYWORD_UNDERLINE = "_php_keyword_underline";//$NON-NLS-1$
248
249         public static final String PHP_VARIABLE = "_php_variable";//$NON-NLS-1$
250
251         public static final String PHP_VARIABLE_BOLD = "_php_variable_bold";//$NON-NLS-1$
252
253         public static final String PHP_VARIABLE_ITALIC = "_php_variable_italic";//$NON-NLS-1$
254
255         public static final String PHP_VARIABLE_UNDERLINE = "_php_variable_underline";//$NON-NLS-1$
256
257         public static final String PHP_VARIABLE_DOLLAR = "_php_variable_dollar";//$NON-NLS-1$
258
259         public static final String PHP_VARIABLE_DOLLAR_BOLD = "_php_variable_dollar_bold";//$NON-NLS-1$
260
261         public static final String PHP_VARIABLE_DOLLAR_ITALIC = "_php_variable_dollar_italic";//$NON-NLS-1$
262
263         public static final String PHP_VARIABLE_DOLLAR_UNDERLINE = "_php_variable_dollar_underline";//$NON-NLS-1$
264
265         public static final String PHP_TYPE = "_php_type";//$NON-NLS-1$
266
267         public static final String PHP_TYPE_BOLD = "_php_type_bold";//$NON-NLS-1$
268
269         public static final String PHP_TYPE_ITALIC = "_php_type_italic";//$NON-NLS-1$
270
271         public static final String PHP_TYPE_UNDERLINE = "_php_type_underline";//$NON-NLS-1$
272
273         public static final String PHP_CONSTANT = "_php_constant";//$NON-NLS-1$
274
275         public static final String PHP_CONSTANT_BOLD = "_php_constant_bold";//$NON-NLS-1$
276
277         public static final String PHP_CONSTANT_ITALIC = "_php_constant_italic";//$NON-NLS-1$
278
279         public static final String PHP_CONSTANT_UNDERLINE = "_php_constant_underline";//$NON-NLS-1$
280
281         public static final String PHP_FUNCTIONNAME = "_php_functionname";//$NON-NLS-1$
282
283         public static final String PHP_FUNCTIONNAME_BOLD = "_php_functionname_bold";//$NON-NLS-1$
284
285         public static final String PHP_FUNCTIONNAME_ITALIC = "_php_functionname_italic";//$NON-NLS-1$
286
287         public static final String PHP_FUNCTIONNAME_UNDERLINE = "_php_functionname_underline";//$NON-NLS-1$
288
289         public static final String PHP_STRING_DQ = "_php_string";//$NON-NLS-1$
290
291         public static final String PHP_STRING_BOLD_DQ = "_php_string_bold";
292
293         public static final String PHP_STRING_ITALIC_DQ = "_php_string_italic";
294
295         public static final String PHP_STRING_UNDERLINE_DQ = "_php_string_underline";
296
297         public static final String PHP_STRING_SQ = "_php_string_sq";//$NON-NLS-1$
298
299         public static final String PHP_STRING_BOLD_SQ = "_php_string_sq_bold";
300
301         public static final String PHP_STRING_ITALIC_SQ = "_php_string_sq_italic";
302
303         public static final String PHP_STRING_UNDERLINE_SQ = "_php_string_sq_underline";
304
305         public static final String PHP_DEFAULT = "_php_default";
306
307         public static final String PHP_DEFAULT_BOLD = "_php_default_bold";
308
309         public static final String PHP_DEFAULT_ITALIC = "_php_default_italic";
310
311         public static final String PHP_DEFAULT_UNDERLINE = "_php_default_underline";
312
313         public static final String TASK_TAG = "_php_comment_task_tag"; //$NON-NLS-1$
314
315         public static final String TASK_TAG_BOLD = "_php_comment_task_tag_bold"; //$NON-NLS-1$
316
317         /**
318          * The color key for PHPDoc keywords (<code>@foo</code>) in PHPDoc comments.
319          */
320         public static final String PHPDOC_KEYWORD = "_php_doc_keyword"; //$NON-NLS-1$
321
322         public static final String PHPDOC_KEYWORD_BOLD = "_php_doc_keyword_bold";
323
324         public static final String PHPDOC_KEYWORD_ITALIC = "_php_doc_keyword_italic";
325
326         public static final String PHPDOC_KEYWORD_UNDERLINE = "_php_doc_keyword_underline";
327
328         /**
329          * The color key for HTML tags (<code>&lt;foo&gt;</code>) in PHPDoc
330          * comments.
331          */
332         public static final String PHPDOC_TAG = "_php_doc_tag"; //$NON-NLS-1$
333
334         public static final String PHPDOC_TAG_BOLD = "_php_doc_tag_bold";
335
336         public static final String PHPDOC_TAG_ITALIC = "_php_doc_tag_italic";
337
338         public static final String PHPDOC_TAG_UNDERLINE = "_php_doc_tag_underline";
339
340         /**
341          * The color key for PHPDoc links (<code>{foo}</code>) in PHPDoc
342          * comments.
343          */
344         public static final String PHPDOC_LINK = "_php_doc_link"; //$NON-NLS-1$
345
346         public static final String PHPDOC_LINK_BOLD = "_php_doc_link_bold";
347
348         public static final String PHPDOC_LINK_ITALIC = "_php_doc_link_italic";
349
350         public static final String PHPDOC_LINK_UNDERLINE = "_php_doc_link_underline";
351
352         /**
353          * The color key for everthing in PHPDoc comments for which no other color
354          * is specified.
355          */
356         public static final String PHPDOC_DEFAULT = "_php_doc_default"; //$NON-NLS-1$
357
358         public static final String PHPDOC_DEFAULT_BOLD = "_php_doc_default_bold";
359
360         public static final String PHPDOC_DEFAULT_ITALIC = "_php_doc_default_italic";
361
362         public static final String PHPDOC_DEFAULT_UNDERLINE = "_php_doc_default_underline";
363
364         // public static final String LINKED_POSITION_COLOR =
365         // "_linkedPositionColor";
366         // public static final String PHP_EDITOR_BACKGROUND =
367         // "_php_editor_background";
368         public static final String PHP_USERDEF_XMLFILE = "_userdef_xmlfile";
369
370         /** Preference key for showing the line number ruler */
371         // public final static String LINE_NUMBER_RULER = "_lineNumberRuler";
372         // //$NON-NLS-1$
373         /** Preference key for the foreground color of the line numbers */
374         // public final static String LINE_NUMBER_COLOR = "_lineNumberColor";
375         // //$NON-NLS-1$
376         // public final static String PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT =
377         // "_defaultBackgroundColor"; //$NON-NLS-1$
378         // public final static String PREFERENCE_COLOR_BACKGROUND =
379         // "backgroundColor"; //$NON-NLS-1$
380         /** Preference key for content assist proposal color */
381         public final static String PROPOSALS_FOREGROUND = "content_assist_proposals_foreground"; //$NON-NLS-1$
382
383         /** Preference key for content assist proposal color */
384         public final static String PROPOSALS_BACKGROUND = "content_assist_proposals_background"; //$NON-NLS-1$
385
386         public static final String EDITOR_EVALUTE_TEMPORARY_PROBLEMS = null;
387
388         public static final String EDITOR_CORRECTION_INDICATION = null;
389
390         // public static final String PHP_OBFUSCATOR_DEFAULT =
391         // "_php_obfuscator_default";
392         // public static final String PHP_BOOKMARK_DEFAULT =
393         // "_php_bookmark_default";
394         // public static final String PHP_LOCALHOST_PREF = "_php_localhost";
395         // public static final String PHP_DOCUMENTROOT_PREF = "_php_documentroot";
396         //
397         // public static final String PHP_AUTO_PREVIEW_DEFAULT = "_auto_preview";
398         // public static final String PHP_BRING_TO_TOP_PREVIEW_DEFAULT =
399         // "_bring_to_top_preview";
400         // public static final String PHP_SHOW_HTML_FILES_LOCAL =
401         // "_show_html_files_local";
402         }