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