misc changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ui / PreferenceConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2002 International Business Machines 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-v05.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.ui;
12
13 import net.sourceforge.phpdt.core.IClasspathEntry;
14 import net.sourceforge.phpeclipse.IPreferenceConstants;
15 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
16
17 import org.eclipse.jface.action.Action;
18 import org.eclipse.jface.preference.IPreferenceStore;
19 import org.eclipse.jface.preference.PreferenceConverter;
20 import org.eclipse.swt.SWT;
21 import org.eclipse.swt.graphics.Color;
22 import org.eclipse.swt.graphics.RGB;
23 import org.eclipse.swt.widgets.Display;
24 import org.eclipse.ui.texteditor.AbstractTextEditor;
25 //
26 //import org.phpeclipse.phpdt.internal.ui.JavaPlugin;
27 //import org.phpeclipse.phpdt.internal.ui.preferences.NewJavaProjectPreferencePage;
28
29 /**
30  * Preference constants used in the JDT-UI preference store. Clients should only read the
31  * JDT-UI preference store using these values. Clients are not allowed to modify the 
32  * preference store programmatically.
33  * 
34  * @since 2.0
35   */
36 public class PreferenceConstants {
37
38   private PreferenceConstants() {
39   }
40
41   /**
42    * A named preference that controls return type rendering of methods in the UI.
43    * <p>
44    * Value is of type <code>Boolean</code>: if <code>true</code> return types
45    * are rendered
46    * </p>
47    */
48   public static final String APPEARANCE_METHOD_RETURNTYPE = "net.sourceforge.phpdt.ui.methodreturntype"; //$NON-NLS-1$
49
50   /**
51    * A named preference that controls if override indicators are rendered in the UI.
52    * <p>
53    * Value is of type <code>Boolean</code>: if <code>true</code> override 
54    * indicators are rendered
55    * </p>
56      */
57   public static final String APPEARANCE_OVERRIDE_INDICATOR = "net.sourceforge.phpdt.ui.overrideindicator"; //$NON-NLS-1$
58
59   /**
60    * A named preference that defines the pattern used for package name compression.
61    * <p>
62    * Value is of type <code>String</code>. For example foe the given package name 'org.eclipse.jdt' pattern
63    * '.' will compress it to '..jdt', '1~' to 'o~.e~.jdt'.
64    * </p>
65    */
66   public static final String APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW = "PackagesView.pkgNamePatternForPackagesView"; //$NON-NLS-1$
67
68   /**
69    * A named preference that controls if package name compression is turned on or off.
70    * <p>
71    * Value is of type <code>Boolean</code>.
72    * </p>
73    * 
74    * @see #APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW
75    */
76   public static final String APPEARANCE_COMPRESS_PACKAGE_NAMES = "net.sourceforge.phpdt.ui.compresspackagenames"; //$NON-NLS-1$
77
78   /**
79    * A named preference that controls if empty inner packages are folded in
80    * the hierarchical mode of the package explorer.
81    * <p>
82    * Value is of type <code>Boolean</code>: if <code>true</code> empty
83    * inner packages are folded.
84    * </p>
85    * @since 2.1
86    */
87   public static final String APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER = "net.sourceforge.phpdt.ui.flatPackagesInPackageExplorer"; //$NON-NLS-1$
88
89   /**
90    * A named preference that defines how member elements are ordered by the
91    * Java views using the <code>JavaElementSorter</code>.
92    * <p>
93    * Value is of type <code>String</code>: A comma separated list of the
94    * following entries. Each entry must be in the list, no duplication. List
95    * order defines the sort order.
96    * <ul>
97    * <li><b>T</b>: Types</li>
98    * <li><b>C</b>: Constructors</li>
99    * <li><b>I</b>: Initializers</li>
100    * <li><b>M</b>: Methods</li>
101    * <li><b>F</b>: Fields</li>
102    * <li><b>SI</b>: Static Initializers</li>
103    * <li><b>SM</b>: Static Methods</li>
104    * <li><b>SF</b>: Static Fields</li>
105    * </ul>
106    * </p>
107    * @since 2.1
108    */
109   public static final String APPEARANCE_MEMBER_SORT_ORDER = "outlinesortoption"; //$NON-NLS-1$
110
111   /**
112    * A named preference that controls if prefix removal during setter/getter generation is turned on or off. 
113    * <p>
114    * Value is of type <code>Boolean</code>.
115    * </p>
116    */
117   public static final String CODEGEN_USE_GETTERSETTER_PREFIX = "net.sourceforge.phpdt.ui.gettersetter.prefix.enable"; //$NON-NLS-1$
118
119   /**
120    * A named preference that holds a list of prefixes to be removed from a local variable to compute setter 
121    * and gettter names.
122    * <p>
123    * Value is of type <code>String</code>: comma separated list of prefixed
124    * </p>
125    * 
126    * @see #CODEGEN_USE_GETTERSETTER_PREFIX
127    */
128   public static final String CODEGEN_GETTERSETTER_PREFIX = "net.sourceforge.phpdt.ui.gettersetter.prefix.list"; //$NON-NLS-1$
129
130   /**
131    * A named preference that controls if suffix removal during setter/getter generation is turned on or off.
132    * <p>
133    * Value is of type <code>Boolean</code>.
134    * </p>
135    */
136   public static final String CODEGEN_USE_GETTERSETTER_SUFFIX = "net.sourceforge.phpdt.ui.gettersetter.suffix.enable"; //$NON-NLS-1$
137
138   /**
139    * A named preference that holds a list of suffixes to be removed from a local variable to compute setter 
140    * and getter names.
141    * <p>
142    * Value is of type <code>String</code>: comma separated list of suffixes
143    * </p>
144    * 
145    * @see #CODEGEN_USE_GETTERSETTER_SUFFIX
146    */
147   public static final String CODEGEN_GETTERSETTER_SUFFIX = "net.sourceforge.phpdt.ui.gettersetter.suffix.list"; //$NON-NLS-1$
148
149   /**
150    * A name preference that controls if a JavaDoc stub gets added to newly created types and methods.
151    * <p>
152    * Value is of type <code>Boolean</code>.
153    * </p>
154    */
155   public static final String CODEGEN__JAVADOC_STUBS = "net.sourceforge.phpdt.ui.phpdoc"; //$NON-NLS-1$
156
157   /**
158    * A named preference that controls if a non-phpdoc comment gets added to methods generated via the 
159    * "Override Methods" operation.
160    * <p>
161    * Value is of type <code>Boolean</code>.
162    * </p>
163    */
164   public static final String CODEGEN__NON_JAVADOC_COMMENTS = "net.sourceforge.phpdt.ui.seecomments"; //$NON-NLS-1$
165
166   /**
167    * A named preference that controls if a file comment gets added to newly created files.
168    * <p>
169    * Value is of type <code>Boolean</code>.
170    * </p>
171    */
172   public static final String CODEGEN__FILE_COMMENTS = "net.sourceforge.phpdt.ui.filecomments"; //$NON-NLS-1$
173
174   /**
175    * A named preference that holds a list of comma separated package names. The list specifies the import order used by
176    * the "Organize Imports" opeation.
177    * <p>
178    * Value is of type <code>String</code>: semicolon separated list of package
179    * names
180    * </p>
181    */
182   public static final String ORGIMPORTS_IMPORTORDER = "net.sourceforge.phpdt.ui.importorder"; //$NON-NLS-1$
183
184   /**
185    * A named preference that specifies the number of imports added before a star-import declaration is used.
186    * <p>
187    * Value is of type <code>Int</code>: positive value specifing the number of non star-import is used
188    * </p>
189    */
190   public static final String ORGIMPORTS_ONDEMANDTHRESHOLD = "net.sourceforge.phpdt.ui.ondemandthreshold"; //$NON-NLS-1$
191
192   /**
193    * A named preferences that controls if types that start with a lower case letters get added by the
194    * "Organize Import" operation.
195    * <p>
196    * Value is of type <code>Boolean</code>.
197    * </p>
198    */
199   public static final String ORGIMPORTS_IGNORELOWERCASE = "net.sourceforge.phpdt.ui.ignorelowercasenames"; //$NON-NLS-1$
200
201   /**
202    * A named preference that speficies whether children of a compilation unit are shown in the package explorer.
203    * <p>
204    * Value is of type <code>Boolean</code>.
205    * </p>
206    */
207   public static final String SHOW_CU_CHILDREN = "net.sourceforge.phpdt.ui.packages.cuchildren"; //$NON-NLS-1$
208
209   /**
210    * A named preference that controls whether the package explorer's selection is linked to the active editor.
211    * <p>
212    * Value is of type <code>Boolean</code>.
213    * </p>
214    */
215   public static final String LINK_PACKAGES_TO_EDITOR = "net.sourceforge.phpdt.ui.packages.linktoeditor"; //$NON-NLS-1$
216
217   /**
218    * A named preference that controls whether the hierarchy view's selection is linked to the active editor.
219    * <p>
220    * Value is of type <code>Boolean</code>.
221    * </p>
222    */
223   public static final String LINK_TYPEHIERARCHY_TO_EDITOR = "net.sourceforge.phpdt.ui.packages.linktypehierarchytoeditor"; //$NON-NLS-1$
224
225   /**
226    * A named preference that controls whether the browsing view's selection is
227    * linked to the active editor.
228    * <p>
229    * Value is of type <code>Boolean</code>.
230    * </p>
231    * @since 2.1
232    */
233   public static final String LINK_BROWSING_VIEW_TO_EDITOR = "net.sourceforge.phpdt.ui.browsing.linktoeditor"; //$NON-NLS-1$
234
235   /**
236    * A named preference that controls whether new projects are generated using source and output folder.
237    * <p>
238    * Value is of type <code>Boolean</code>. if <code>true</code> new projects are created with a source and
239    * output folder. If <code>false</code> source and output folder equals to the project.
240    * </p>
241    */
242   public static final String SRCBIN_FOLDERS_IN_NEWPROJ = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersInNewProjects"; //$NON-NLS-1$
243
244   /**
245    * A named preference that specifies the source folder name used when creating a new Java project. Value is inactive
246    * if <code>SRCBIN_FOLDERS_IN_NEWPROJ</code> is set to <code>false</code>.
247    * <p>
248    * Value is of type <code>String</code>. 
249    * </p>
250    * 
251    * @see #SRCBIN_FOLDERS_IN_NEWPROJ
252    */
253   public static final String SRCBIN_SRCNAME = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersSrcName"; //$NON-NLS-1$
254
255   /**
256    * A named preference that specifies the output folder name used when creating a new Java project. Value is inactive
257    * if <code>SRCBIN_FOLDERS_IN_NEWPROJ</code> is set to <code>false</code>.
258    * <p>
259    * Value is of type <code>String</code>. 
260    * </p>
261    * 
262    * @see #SRCBIN_FOLDERS_IN_NEWPROJ
263    */
264   public static final String SRCBIN_BINNAME = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersBinName"; //$NON-NLS-1$
265
266   /**
267    * A named preference that holds a list of possible JRE libraries used by the New Java Project wizard. An library 
268    * consists of a description and an arbitrary number of <code>IClasspathEntry</code>s, that will represent the 
269    * JRE on the new project's classpath. 
270    * <p>
271    * Value is of type <code>String</code>: a semicolon separated list of encoded JRE libraries. 
272    * <code>NEWPROJECT_JRELIBRARY_INDEX</code> defines the currently used library. Clients
273    * should use the method <code>encodeJRELibrary</code> to encode a JRE library into a string
274    * and the methods <code>decodeJRELibraryDescription(String)</code> and <code>
275    * decodeJRELibraryClasspathEntries(String)</code> to decode the description and the array
276    * of classpath entries from an encoded string.
277    * </p>
278    * 
279    * @see #NEWPROJECT_JRELIBRARY_INDEX
280    * @see #encodeJRELibrary(String, IClasspathEntry[])
281    * @see #decodeJRELibraryDescription(String)
282    * @see #decodeJRELibraryClasspathEntries(String)
283    */
284   public static final String NEWPROJECT_JRELIBRARY_LIST = "net.sourceforge.phpdt.ui.wizards.jre.list"; //$NON-NLS-1$
285
286   /**
287    * A named preferences that specifies the current active JRE library.
288    * <p>
289    * Value is of type <code>Int</code>: an index into the list of possible JRE libraries.
290    * </p>
291    * 
292    * @see #NEWPROJECT_JRELIBRARY_LIST
293    */
294   public static final String NEWPROJECT_JRELIBRARY_INDEX = "net.sourceforge.phpdt.ui.wizards.jre.index"; //$NON-NLS-1$
295
296   /**
297    * A named preference that controls if a new type hierarchy gets opened in a 
298    * new type hierarchy perspective or inside the type hierarchy view part.
299    * <p>
300    * Value is of type <code>String</code>: possible values are <code>
301    * OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE</code> or <code>
302    * OPEN_TYPE_HIERARCHY_IN_VIEW_PART</code>.
303    * </p>
304    * 
305    * @see #OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE
306    * @see #OPEN_TYPE_HIERARCHY_IN_VIEW_PART
307    */
308   public static final String OPEN_TYPE_HIERARCHY = "net.sourceforge.phpdt.ui.openTypeHierarchy"; //$NON-NLS-1$
309
310   /**
311    * A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
312    * 
313    * @see #OPEN_TYPE_HIERARCHY
314    */
315   public static final String OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE = "perspective"; //$NON-NLS-1$
316
317   /**
318    * A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
319    * 
320    * @see #OPEN_TYPE_HIERARCHY
321    */
322   public static final String OPEN_TYPE_HIERARCHY_IN_VIEW_PART = "viewPart"; //$NON-NLS-1$
323
324   /**
325    * A named preference that controls the behaviour when double clicking on a container in the packages view. 
326    * <p>
327    * Value is of type <code>String</code>: possible values are <code>
328    * DOUBLE_CLICK_GOES_INTO</code> or <code>
329    * DOUBLE_CLICK_EXPANDS</code>.
330    * </p>
331    * 
332    * @see #DOUBLE_CLICK_EXPANDS
333    * @see #DOUBLE_CLICK_GOES_INTO
334    */
335   public static final String DOUBLE_CLICK = "packageview.doubleclick"; //$NON-NLS-1$
336
337   /**
338    * A string value used by the named preference <code>DOUBLE_CLICK</code>.
339    * 
340    * @see #DOUBLE_CLICK
341    */
342   public static final String DOUBLE_CLICK_GOES_INTO = "packageview.gointo"; //$NON-NLS-1$
343
344   /**
345    * A string value used by the named preference <code>DOUBLE_CLICK</code>.
346    * 
347    * @see #DOUBLE_CLICK
348    */
349   public static final String DOUBLE_CLICK_EXPANDS = "packageview.doubleclick.expands"; //$NON-NLS-1$
350
351   /**
352    * A named preference that controls whether Java views update their presentation while editing or when saving the
353    * content of an editor. 
354    * <p>
355    * Value is of type <code>String</code>: possible values are <code>
356    * UPDATE_ON_SAVE</code> or <code>
357    * UPDATE_WHILE_EDITING</code>.
358    * </p>
359    * 
360    * @see #UPDATE_ON_SAVE
361    * @see #UPDATE_WHILE_EDITING
362    */
363   public static final String UPDATE_JAVA_VIEWS = "JavaUI.update"; //$NON-NLS-1$
364
365   /**
366    * A string value used by the named preference <code>UPDATE_JAVA_VIEWS</code>
367    * 
368    * @see #UPDATE_JAVA_VIEWS
369    */
370   public static final String UPDATE_ON_SAVE = "JavaUI.update.onSave"; //$NON-NLS-1$
371
372   /**
373    * A string value used by the named preference <code>UPDATE_JAVA_VIEWS</code>
374    * 
375    * @see #UPDATE_JAVA_VIEWS
376    */
377   public static final String UPDATE_WHILE_EDITING = "JavaUI.update.whileEditing"; //$NON-NLS-1$
378
379   /**
380    * A named preference that holds the path of the Javadoc command used by the Javadoc creation wizard.
381    * <p>
382    * Value is of type <code>String</code>.
383    * </p>
384    */
385   public static final String JAVADOC_COMMAND = "command"; //$NON-NLS-1$
386   /**
387          * A named preference that defines the key for the hover modifiers.
388          *
389          * @see JavaUI
390          * @since 2.1
391          */
392   public static final String EDITOR_TEXT_HOVER_MODIFIERS = "hoverModifiers"; //$NON-NLS-1$
393         /**
394          * The id of the best match hover contributed for extension point
395          * <code>javaEditorTextHovers</code>.
396          *
397          * @since 2.1
398          */
399         public static String ID_BESTMATCH_HOVER= "net.sourceforge.phpdt.ui.BestMatchHover"; //$NON-NLS-1$
400
401         /**
402          * The id of the source code hover contributed for extension point
403          * <code>javaEditorTextHovers</code>.
404          *
405          * @since 2.1
406          */
407         public static String ID_SOURCE_HOVER= "net.sourceforge.phpdt.ui.JavaSourceHover"; //$NON-NLS-1$
408
409   /**
410          * The id of the problem hover contributed for extension point
411          * <code>javaEditorTextHovers</code>.
412          *
413          * @since 2.1
414          */
415   public static String ID_PROBLEM_HOVER = "net.sourceforge.phpdt.ui.ProblemHover"; //$NON-NLS-1$
416
417   /**
418    * A named preference that controls whether bracket matching highlighting is turned on or off.
419    * <p>
420    * Value is of type <code>Boolean</code>.
421    * </p>
422    */
423   public final static String EDITOR_MATCHING_BRACKETS = "matchingBrackets"; //$NON-NLS-1$
424
425   /**
426    * A named preference that holds the color used to highlight matching brackets.
427    * <p>
428    * Value is of type <code>String</code>. A RGB color value encoded as a string 
429    * using class <code>PreferenceConverter</code>
430    * </p>
431    * 
432    * @see org.eclipse.jface.resource.StringConverter
433    * @see org.eclipse.jface.preference.PreferenceConverter
434    */
435   public final static String EDITOR_MATCHING_BRACKETS_COLOR = "matchingBracketsColor"; //$NON-NLS-1$
436
437   /**
438    * A named preference that controls whether the current line highlighting is turned on or off.
439    * <p>
440    * Value is of type <code>Boolean</code>.
441    * </p>
442    */
443   public final static String EDITOR_CURRENT_LINE = "currentLine"; //$NON-NLS-1$
444
445   /**
446    * A named preference that holds the color used to highlight the current line.
447    * <p>
448    * Value is of type <code>String</code>. A RGB color value encoded as a string
449    * using class <code>PreferenceConverter</code>
450    * </p>
451    * 
452    * @see org.eclipse.jface.resource.StringConverter
453    * @see org.eclipse.jface.preference.PreferenceConverter
454    */
455   public final static String EDITOR_CURRENT_LINE_COLOR = "currentLineColor"; //$NON-NLS-1$
456
457   /**
458    * A named preference that controls whether the print margin is turned on or off.
459    * <p>
460    * Value is of type <code>Boolean</code>.
461    * </p>
462    */
463   public final static String EDITOR_PRINT_MARGIN = "printMargin"; //$NON-NLS-1$
464
465   /**
466    * A named preference that holds the color used to render the print margin.
467    * <p>
468    * Value is of type <code>String</code>. A RGB color value encoded as a string
469    * using class <code>PreferenceConverter</code>
470    * </p>
471    * 
472    * @see org.eclipse.jface.resource.StringConverter
473    * @see org.eclipse.jface.preference.PreferenceConverter
474    */
475   public final static String EDITOR_PRINT_MARGIN_COLOR = "printMarginColor"; //$NON-NLS-1$
476
477   /**
478    * Print margin column. Int value.
479    */
480   public final static String EDITOR_PRINT_MARGIN_COLUMN = "printMarginColumn"; //$NON-NLS-1$
481
482   /**
483    * A named preference that holds the color used for the find/replace scope.
484    * <p>
485    * Value is of type <code>String</code>. A RGB color value encoded as a string
486    * using class <code>PreferenceConverter</code>
487    * </p>
488    * 
489    * @see org.eclipse.jface.resource.StringConverter
490    * @see org.eclipse.jface.preference.PreferenceConverter
491    */
492   public final static String EDITOR_FIND_SCOPE_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FIND_SCOPE;
493
494   /**
495    * A named preference that specifies if the editor uses spaces for tabs.
496    * <p>
497    * Value is of type <code>Boolean</code>. If <code>true</code>spaces instead of tabs are used
498    * in the editor. If <code>false</code> the editor inserts a tab character when pressing the tab
499    * key.
500    * </p>
501    */
502   public final static String EDITOR_SPACES_FOR_TABS = "spacesForTabs"; //$NON-NLS-1$
503
504   /**
505    * A named preference that holds the number of spaces used per tab in the editor.
506    * <p>
507    * Value is of type <code>Int</code>: positive int value specifying the number of
508    * spaces per tab.
509    * </p>
510    */
511   public final static String EDITOR_TAB_WIDTH = "net.sourceforge.phpdt.ui.editor.tab.width"; //$NON-NLS-1$
512
513   /**
514    * A named preference that controls whether the outline view selection
515    * should stay in sync with with the element at the current cursor position.
516    * <p>
517    * Value is of type <code>Boolean</code>.
518    * </p>
519    * @since 2.1
520    */
521   public final static String EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE = "JavaEditor.SyncOutlineOnCursorMove"; //$NON-NLS-1$
522
523   /**
524    * A named preference that controls if correction indicators are shown in the UI.
525    * <p>
526    * Value is of type <code>Boolean</code>.
527    * </p>
528    */
529   public final static String EDITOR_CORRECTION_INDICATION = "JavaEditor.ShowTemporaryProblem"; //$NON-NLS-1$
530
531   /**
532    * A named preference that controls whether the editor shows problem indicators in text (squiggly lines). 
533    * <p>
534    * Value is of type <code>Boolean</code>.
535    * </p>
536    */
537 //  public final static String EDITOR_PROBLEM_INDICATION = "problemIndication"; //$NON-NLS-1$
538
539   /**
540    * A named preference that holds the color used to render problem indicators.
541    * <p>
542    * Value is of type <code>String</code>. A RGB color value encoded as a string
543    * using class <code>PreferenceConverter</code>
544    * </p>
545    * 
546    * @see #EDITOR_PROBLEM_INDICATION
547    * @see org.eclipse.jface.resource.StringConverter
548    * @see org.eclipse.jface.preference.PreferenceConverter
549    */
550 //  public final static String EDITOR_PROBLEM_INDICATION_COLOR = "problemIndicationColor"; //$NON-NLS-1$
551
552   /**PreferenceConstants.EDITOR_PROBLEM_INDICATION_COLOR;
553    * A named preference that controls whether the editor shows warning indicators in text (squiggly lines). 
554    * <p>
555    * Value is of type <code>Boolean</code>.
556    * </p>
557    */
558 //  public final static String EDITOR_WARNING_INDICATION = "warningIndication"; //$NON-NLS-1$
559
560   /**
561    * A named preference that holds the color used to render warning indicators.
562    * <p>
563    * Value is of type <code>String</code>. A RGB color value encoded as a string
564    * using class <code>PreferenceConverter</code>
565    * </p>
566    * 
567    * @see #EDITOR_WARNING_INDICATION
568    * @see org.eclipse.jface.resource.StringConverter
569    * @see org.eclipse.jface.preference.PreferenceConverter
570    */
571 //  public final static String EDITOR_WARNING_INDICATION_COLOR = "warningIndicationColor"; //$NON-NLS-1$
572
573   /**
574    * A named preference that controls whether the editor shows task indicators in text (squiggly lines). 
575    * <p>
576    * Value is of type <code>Boolean</code>.
577    * </p>
578    */
579   public final static String EDITOR_TASK_INDICATION = "taskIndication"; //$NON-NLS-1$
580
581   /**
582    * A named preference that holds the color used to render task indicators.
583    * <p>
584    * Value is of type <code>String</code>. A RGB color value encoded as a string
585    * using class <code>PreferenceConverter</code>
586    * </p>
587    * 
588    * @see #EDITOR_TASK_INDICATION
589    * @see org.eclipse.jface.resource.StringConverter
590    * @see org.eclipse.jface.preference.PreferenceConverter
591    */
592   public final static String EDITOR_TASK_INDICATION_COLOR = "taskIndicationColor"; //$NON-NLS-1$
593
594   /**
595    * A named preference that controls whether the editor shows bookmark
596    * indicators in text (squiggly lines).
597    * <p>
598    * Value is of type <code>Boolean</code>.
599    * </p>
600    * @since 2.1
601    */
602   public final static String EDITOR_BOOKMARK_INDICATION = "bookmarkIndication"; //$NON-NLS-1$
603
604   /**
605    * A named preference that holds the color used to render bookmark indicators.
606    * <p>
607    * Value is of type <code>String</code>. A RGB color value encoded as a string
608    * using class <code>PreferenceConverter</code>
609    * </p>
610    *
611    * @see #EDITOR_BOOKMARK_INDICATION
612    * @see org.eclipse.jface.resource.StringConverter
613    * @see org.eclipse.jface.preference.PreferenceConverter
614    * @since 2.1
615    */
616   public final static String EDITOR_BOOKMARK_INDICATION_COLOR = "bookmarkIndicationColor"; //$NON-NLS-1$
617
618   /**
619    * A named preference that controls whether the editor shows search
620    * indicators in text (squiggly lines).
621    * <p>
622    * Value is of type <code>Boolean</code>.
623    * </p>
624    * @since 2.1
625    */
626   public final static String EDITOR_SEARCH_RESULT_INDICATION = "searchResultIndication"; //$NON-NLS-1$
627
628   /**
629    * A named preference that holds the color used to render search indicators.
630    * <p>
631    * Value is of type <code>String</code>. A RGB color value encoded as a string
632    * using class <code>PreferenceConverter</code>
633    * </p>
634    *
635    * @see #EDITOR_SEARCH_RESULT_INDICATION
636    * @see org.eclipse.jface.resource.StringConverter
637    * @see org.eclipse.jface.preference.PreferenceConverter
638    * @since 2.1
639    */
640   public final static String EDITOR_SEARCH_RESULT_INDICATION_COLOR = "searchResultIndicationColor"; //$NON-NLS-1$
641
642   /**
643    * A named preference that controls whether the editor shows unknown
644    * indicators in text (squiggly lines).
645    * <p>
646    * Value is of type <code>Boolean</code>.
647    * </p>
648    * @since 2.1
649    */
650   public final static String EDITOR_UNKNOWN_INDICATION = "othersIndication"; //$NON-NLS-1$
651
652   /**
653    * A named preference that holds the color used to render unknown
654    * indicators.
655    * <p>
656    * Value is of type <code>String</code>. A RGB color value encoded as a string
657    * using class <code>PreferenceConverter</code>
658    * </p>
659    *
660    * @see #EDITOR_UNKNOWN_INDICATION
661    * @see org.eclipse.jface.resource.StringConverter
662    * @see org.eclipse.jface.preference.PreferenceConverter
663    * @since 2.1
664    */
665   public final static String EDITOR_UNKNOWN_INDICATION_COLOR = "othersIndicationColor"; //$NON-NLS-1$
666
667   /**
668    * A named preference that controls whether the overview ruler shows error
669    * indicators.
670    * <p>
671    * Value is of type <code>Boolean</code>.
672    * </p>
673    * @since 2.1
674    */
675   public final static String EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER = "errorIndicationInOverviewRuler"; //$NON-NLS-1$
676
677   /**
678    * A named preference that controls whether the overview ruler shows warning
679    * indicators.
680    * <p>
681    * Value is of type <code>Boolean</code>.
682    * </p>
683    * @since 2.1
684    */
685   public final static String EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER = "warningIndicationInOverviewRuler"; //$NON-NLS-1$
686
687   /**
688    * A named preference that controls whether the overview ruler shows task
689    * indicators.
690    * <p>
691    * Value is of type <code>Boolean</code>.
692    * </p>
693    * @since 2.1
694    */
695   public final static String EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER = "taskIndicationInOverviewRuler"; //$NON-NLS-1$
696
697   /**
698    * A named preference that controls whether the overview ruler shows
699    * bookmark indicators.
700    * <p>
701    * Value is of type <code>Boolean</code>.
702    * </p>
703    * @since 2.1
704    */
705   public final static String EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER = "bookmarkIndicationInOverviewRuler"; //$NON-NLS-1$
706
707   /**
708    * A named preference that controls whether the overview ruler shows
709    * search result indicators.
710    * <p>
711    * Value is of type <code>Boolean</code>.
712    * </p>
713    * @since 2.1
714    */
715   public final static String EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER = "searchResultIndicationInOverviewRuler"; //$NON-NLS-1$
716
717   /**
718    * A named preference that controls whether the overview ruler shows
719    * unknown indicators.
720    * <p>
721    * Value is of type <code>Boolean</code>.
722    * </p>
723    * @since 2.1
724    */
725   public final static String EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER = "othersIndicationInOverviewRuler"; //$NON-NLS-1$
726
727   /**
728    * A named preference that controls whether the 'close strings' feature
729    *  is   enabled in PHP mode
730    * <p>
731    * Value is of type <code>Boolean</code>.
732    * </p>
733    * @since 2.1
734    */
735   public final static String EDITOR_CLOSE_STRINGS_PHP = "closeStringsPHP"; //$NON-NLS-1$
736
737   /**
738    * A named preference that controls whether the 'wrap strings' feature is
739    * enabled.
740    * <p>
741    * Value is of type <code>Boolean</code>.
742    * </p>
743    * @since 2.1
744    */
745   public final static String EDITOR_WRAP_STRINGS = "wrapStrings"; //$NON-NLS-1$
746
747   /**
748    * A named preference that controls whether the 'close brackets' feature is
749    * enabled in PHP mode
750    * <p>
751    * Value is of type <code>Boolean</code>.
752    * </p>
753    * @since 2.1
754    */
755   public final static String EDITOR_CLOSE_BRACKETS_PHP = "closeBracketsPHP"; //$NON-NLS-1$
756
757   /**
758    * A named preference that controls whether the 'close braces' feature is
759    * enabled.
760    * <p>
761    * Value is of type <code>Boolean</code>.
762    * </p>
763    * @since 2.1
764    */
765   public final static String EDITOR_CLOSE_BRACES = "closeBraces"; //$NON-NLS-1$
766
767   /**
768    * A named preference that controls whether the 'close php docs' feature is
769    * enabled.
770    * <p>
771    * Value is of type <code>Boolean</code>.
772    * </p>
773    * @since 2.1
774    */
775   public final static String EDITOR_CLOSE_JAVADOCS = "closeJavaDocs"; //$NON-NLS-1$
776
777   /**
778    * A named preference that controls whether the 'add JavaDoc tags' feature
779    * is enabled.
780    * <p>
781    * Value is of type <code>Boolean</code>.
782    * </p>
783    * @since 2.1
784    */
785   public final static String EDITOR_ADD_JAVADOC_TAGS = "addJavaDocTags"; //$NON-NLS-1$
786
787   /**
788    * A named preference that controls whether the 'format Javadoc tags'
789    * feature is enabled.
790    * <p>
791    * Value is of type <code>Boolean</code>.
792    * </p>
793    * @since 2.1
794    */
795   public final static String EDITOR_FORMAT_JAVADOCS = "formatJavaDocs"; //$NON-NLS-1$
796
797   /**
798    * A named preference that controls whether the 'smart paste' feature is
799    * enabled.
800    * <p>
801    * Value is of type <code>Boolean</code>.
802    * </p>
803    * @since 2.1
804    */
805   public final static String EDITOR_SMART_PASTE = "smartPaste"; //$NON-NLS-1$
806
807   /**
808    * A named preference that controls whether the 'close strings' feature
809    *  is   enabled in HTML mode
810    * <p>
811    * Value is of type <code>Boolean</code>.
812    * </p>
813    * @since 2.1
814    */
815   public final static String EDITOR_CLOSE_STRINGS_HTML = "closeStringsHTML"; //$NON-NLS-1$
816
817   /**
818    * A named preference that controls whether the 'close brackets' feature is
819    * enabled in HTML mode
820    * <p>
821    * Value is of type <code>Boolean</code>.
822    * </p>
823    * @since 2.1
824    */
825   public final static String EDITOR_CLOSE_BRACKETS_HTML = "closeBracketsHTML"; //$NON-NLS-1$
826
827   /**
828    * A named preference that controls whether the 'smart home-end' feature is
829    * enabled.
830    * <p>
831    * Value is of type <code>Boolean</code>.
832    * </p>
833    * @since 2.1
834    */
835   public final static String EDITOR_SMART_HOME_END = AbstractTextEditor.PREFERENCE_NAVIGATION_SMART_HOME_END;
836
837   /**
838    * A named preference that controls if temporary problems are evaluated and shown in the UI.
839    * <p>
840    * Value is of type <code>Boolean</code>.
841    * </p>
842    */
843   public final static String EDITOR_EVALUTE_TEMPORARY_PROBLEMS = "handleTemporaryProblems"; //$NON-NLS-1$
844
845   /**
846    * A named preference that controls if the overview ruler is shown in the UI.
847    * <p>
848    * Value is of type <code>Boolean</code>.
849    * </p>
850    */
851   public final static String EDITOR_OVERVIEW_RULER = "overviewRuler"; //$NON-NLS-1$
852
853   /**
854    * A named preference that controls if the line number ruler is shown in the UI.
855    * <p>
856    * Value is of type <code>Boolean</code>.
857    * </p>
858    */
859   public final static String EDITOR_LINE_NUMBER_RULER = "lineNumberRuler"; //$NON-NLS-1$
860
861   /**
862    * A named preference that holds the color used to render line numbers inside the line number ruler.
863    * <p>
864    * Value is of type <code>String</code>. A RGB color value encoded as a string
865    * using class <code>PreferenceConverter</code>
866    * </p>
867    * 
868    * @see org.eclipse.jface.resource.StringConverter
869    * @see org.eclipse.jface.preference.PreferenceConverter
870    * @see #EDITOR_LINE_NUMBER_RULER
871    */
872   public final static String EDITOR_LINE_NUMBER_RULER_COLOR = "lineNumberColor"; //$NON-NLS-1$
873
874   /**
875    * A named preference that holds the color used to render linked positions inside code templates.
876    * <p>
877    * Value is of type <code>String</code>. A RGB color value encoded as a string
878    * using class <code>PreferenceConverter</code>
879    * </p>
880    * 
881    * @see org.eclipse.jface.resource.StringConverter
882    * @see org.eclipse.jface.preference.PreferenceConverter
883    */
884   public final static String EDITOR_LINKED_POSITION_COLOR = "linkedPositionColor"; //$NON-NLS-1$
885
886   /**
887    * A named preference that holds the color used as the text foreground.
888    * <p>
889    * Value is of type <code>String</code>. A RGB color value encoded as a string
890    * using class <code>PreferenceConverter</code>
891    * </p>
892    * 
893    * @see org.eclipse.jface.resource.StringConverter
894    * @see org.eclipse.jface.preference.PreferenceConverter
895    */
896   public final static String EDITOR_FOREGROUND_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND;
897
898   /**
899    * A named preference that describes if the system default foreground color
900    * is used as the text foreground.
901    * <p>
902    * Value is of type <code>Boolean</code>.
903    * </p>
904    */
905   public final static String EDITOR_FOREGROUND_DEFAULT_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND_SYSTEM_DEFAULT;
906
907   /**
908    * A named preference that holds the color used as the text background.
909    * <p>
910    * Value is of type <code>String</code>. A RGB color value encoded as a string
911    * using class <code>PreferenceConverter</code>
912    * </p>
913    * 
914    * @see org.eclipse.jface.resource.StringConverter
915    * @see org.eclipse.jface.preference.PreferenceConverter
916    */
917   public final static String EDITOR_BACKGROUND_COLOR = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND;
918
919   /**
920    * A named preference that describes if the system default background color
921    * is used as the text foreground.
922    * <p>
923    * Value is of type <code>Boolean</code>. 
924    * </p>
925    */
926   public final static String EDITOR_BACKGROUND_DEFAULT_COLOR = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT;
927
928   /**
929    * Preference key suffix for bold text style preference keys.
930    */
931   public static final String EDITOR_BOLD_SUFFIX = "_bold"; //$NON-NLS-1$
932
933   /**
934    * A named preference that holds the color used to render multi line comments.
935    * <p>
936    * Value is of type <code>String</code>. A RGB color value encoded as a string
937    * using class <code>PreferenceConverter</code>
938    * </p>
939    * 
940    * @see org.eclipse.jface.resource.StringConverter
941    * @see org.eclipse.jface.preference.PreferenceConverter
942    */
943   public final static String EDITOR_MULTI_LINE_COMMENT_COLOR = IPreferenceConstants.PHP_MULTILINE_COMMENT;
944
945   /**
946    * A named preference that controls whether multi line comments are rendered in bold.
947    * <p>
948    * Value is of type <code>Boolean</code>. If <code>true</code> multi line comments are rendered
949    * in bold. If <code>false</code> the are rendered using no font style attribute.
950    * </p>
951    */
952   public final static String EDITOR_MULTI_LINE_COMMENT_BOLD = IPreferenceConstants.PHP_MULTILINE_COMMENT + EDITOR_BOLD_SUFFIX;
953
954   /**
955    * A named preference that holds the color used to render single line comments.
956    * <p>
957    * Value is of type <code>String</code>. A RGB color value encoded as a string
958    * using class <code>PreferenceConverter</code>
959    * </p>
960    * 
961    * @see org.eclipse.jface.resource.StringConverter
962    * @see org.eclipse.jface.preference.PreferenceConverter
963    */
964   public final static String EDITOR_SINGLE_LINE_COMMENT_COLOR = IPreferenceConstants.PHP_SINGLELINE_COMMENT;
965
966   /**
967    * A named preference that controls whether sinle line comments are rendered in bold.
968    * <p>
969    * Value is of type <code>Boolean</code>. If <code>true</code> single line comments are rendered
970    * in bold. If <code>false</code> the are rendered using no font style attribute.
971    * </p>
972    */
973   public final static String EDITOR_SINGLE_LINE_COMMENT_BOLD = IPreferenceConstants.PHP_SINGLELINE_COMMENT + EDITOR_BOLD_SUFFIX;
974
975   /**
976          * A named preference that holds the color used to render php start and stop tags.
977          * <p>
978          * Value is of type <code>String</code>. A RGB color value encoded as a string
979          * using class <code>PreferenceConverter</code>
980          * </p>
981          * 
982          * @see org.eclipse.jface.resource.StringConverter
983          * @see org.eclipse.jface.preference.PreferenceConverter
984          */
985   public final static String EDITOR_JAVA_TAG_COLOR = IPreferenceConstants.PHP_TAG;
986
987   /**
988    * A named preference that controls whether php start and stop tags are rendered in bold.
989    * <p>
990    * Value is of type <code>Boolean</code>.
991    * </p>
992    */
993   public final static String EDITOR_JAVA_TAG_BOLD = IPreferenceConstants.PHP_TAG + EDITOR_BOLD_SUFFIX;
994
995   /**
996    * A named preference that holds the color used to render php keywords.
997    * <p>
998    * Value is of type <code>String</code>. A RGB color value encoded as a string
999    * using class <code>PreferenceConverter</code>
1000    * </p>
1001    * 
1002    * @see org.eclipse.jface.resource.StringConverter
1003    * @see org.eclipse.jface.preference.PreferenceConverter
1004    */
1005   public final static String EDITOR_JAVA_KEYWORD_COLOR = IPreferenceConstants.PHP_KEYWORD;
1006
1007   /**
1008    * A named preference that controls whether keywords are rendered in bold.
1009    * <p>
1010    * Value is of type <code>Boolean</code>.
1011    * </p>
1012    */
1013   public final static String EDITOR_JAVA_KEYWORD_BOLD = IPreferenceConstants.PHP_KEYWORD + EDITOR_BOLD_SUFFIX;
1014
1015   /**
1016    * A named preference that holds the color used to render predefined php
1017    * function names.
1018    * <p>
1019    * Value is of type <code>String</code>. A RGB color value encoded as a string
1020    * using class <code>PreferenceConverter</code>
1021    * </p>
1022    * 
1023    * @see org.eclipse.jface.resource.StringConverter
1024    * @see org.eclipse.jface.preference.PreferenceConverter
1025    */
1026   public final static String EDITOR_PHP_FUNCTIONNAME_COLOR = IPreferenceConstants.PHP_FUNCTIONNAME;
1027
1028   /**
1029    * A named preference that controls whether function names are rendered in
1030    * bold.
1031    * <p>
1032    * Value is of type <code>Boolean</code>.
1033    * </p>
1034    */
1035   public final static String EDITOR_PHP_FUNCTIONNAME_BOLD = IPreferenceConstants.PHP_FUNCTIONNAME + EDITOR_BOLD_SUFFIX;
1036
1037   /**
1038    * A named preference that holds the color used to render php
1039    * variables.
1040    * <p>
1041    * Value is of type <code>String</code>. A RGB color value encoded as a string
1042    * using class <code>PreferenceConverter</code>
1043    * </p>
1044    * 
1045    * @see org.eclipse.jface.resource.StringConverter
1046    * @see org.eclipse.jface.preference.PreferenceConverter
1047    */
1048   public final static String EDITOR_PHP_VARIABLE_COLOR = IPreferenceConstants.PHP_VARIABLE;
1049
1050   /**
1051    * A named preference that controls whether variables are rendered in bold.
1052    * <p>
1053    * Value is of type <code>Boolean</code>.
1054    * </p>
1055    */
1056   public final static String EDITOR_PHP_VARIABLE_BOLD = IPreferenceConstants.PHP_VARIABLE + EDITOR_BOLD_SUFFIX;
1057
1058   /**
1059    * A named preference that holds the color used to render php constants.
1060    * <p>
1061    * Value is of type <code>String</code>. A RGB color value encoded as a string
1062    * using class <code>PreferenceConverter</code>
1063    * </p>
1064    * 
1065    * @see org.eclipse.jface.resource.StringConverter
1066    * @see org.eclipse.jface.preference.PreferenceConverter
1067    */
1068   public final static String EDITOR_PHP_CONSTANT_COLOR = IPreferenceConstants.PHP_CONSTANT;
1069
1070   /**
1071    * A named preference that controls whether constants are rendered in bold.
1072    * <p>
1073    * Value is of type <code>Boolean</code>.
1074    * </p>
1075    */
1076   public final static String EDITOR_PHP_CONSTANT_BOLD = IPreferenceConstants.PHP_CONSTANT + EDITOR_BOLD_SUFFIX;
1077
1078   /**
1079    * A named preference that holds the color used to render php types.
1080    * <p>
1081    * Value is of type <code>String</code>. A RGB color value encoded as a string
1082    * using class <code>PreferenceConverter</code>
1083    * </p>
1084    * 
1085    * @see org.eclipse.jface.resource.StringConverter
1086    * @see org.eclipse.jface.preference.PreferenceConverter
1087    */
1088   public final static String EDITOR_PHP_TYPE_COLOR = IPreferenceConstants.PHP_TYPE;
1089
1090   /**
1091    * A named preference that controls whether types are rendered in bold.
1092    * <p>
1093    * Value is of type <code>Boolean</code>.
1094    * </p>
1095    */
1096   public final static String EDITOR_PHP_TYPE_BOLD = IPreferenceConstants.PHP_TYPE + EDITOR_BOLD_SUFFIX;
1097
1098   /**
1099    * A named preference that holds the color used to render string constants.
1100    * <p>
1101    * Value is of type <code>String</code>. A RGB color value encoded as a string
1102    * using class <code>PreferenceConverter</code>
1103    * </p>
1104    * 
1105    * @see org.eclipse.jface.resource.StringConverter
1106    * @see org.eclipse.jface.preference.PreferenceConverter
1107    */
1108   public final static String EDITOR_STRING_COLOR = IPreferenceConstants.PHP_STRING;
1109
1110   /**
1111    * A named preference that controls whether string constants are rendered in bold.
1112    * <p>
1113    * Value is of type <code>Boolean</code>.
1114    * </p>
1115    */
1116   public final static String EDITOR_STRING_BOLD = IPreferenceConstants.PHP_STRING + EDITOR_BOLD_SUFFIX;
1117
1118   /**
1119    * A named preference that holds the color used to render php default text.
1120    * <p>
1121    * Value is of type <code>String</code>. A RGB color value encoded as a string
1122    * using class <code>PreferenceConverter</code>
1123    * </p>
1124    * 
1125    * @see org.eclipse.jface.resource.StringConverter
1126    * @see org.eclipse.jface.preference.PreferenceConverter
1127    */
1128   public final static String EDITOR_JAVA_DEFAULT_COLOR = IPreferenceConstants.PHP_DEFAULT;
1129
1130   /**
1131    * A named preference that controls whether Java default text is rendered in bold.
1132    * <p>
1133    * Value is of type <code>Boolean</code>.
1134    * </p>
1135    */
1136   public final static String EDITOR_JAVA_DEFAULT_BOLD = IPreferenceConstants.PHP_DEFAULT + EDITOR_BOLD_SUFFIX;
1137
1138   /**
1139          * A named preference that holds the color used to render task tags.
1140          * <p>
1141          * Value is of type <code>String</code>. A RGB color value encoded as a string
1142          * using class <code>PreferenceConverter</code>
1143          * </p>
1144          * 
1145          * @see org.eclipse.jface.resource.StringConverter
1146          * @see org.eclipse.jface.preference.PreferenceConverter
1147          * @since 2.1
1148          */
1149         public final static String EDITOR_TASK_TAG_COLOR= IPreferenceConstants.TASK_TAG;
1150
1151         /**
1152          * A named preference that controls whether task tags are rendered in bold.
1153          * <p>
1154          * Value is of type <code>Boolean</code>.
1155          * </p>
1156          * @since 2.1
1157          */
1158         public final static String EDITOR_TASK_TAG_BOLD= IPreferenceConstants.TASK_TAG + EDITOR_BOLD_SUFFIX;
1159
1160   /**
1161    * A named preference that holds the color used to render phpdoc keywords.
1162    * <p>
1163    * Value is of type <code>String</code>. A RGB color value encoded as a string
1164    * using class <code>PreferenceConverter</code>
1165    * </p>
1166    * 
1167    * @see org.eclipse.jface.resource.StringConverter
1168    * @see org.eclipse.jface.preference.PreferenceConverter
1169    */
1170   public final static String EDITOR_JAVADOC_KEYWORD_COLOR = IPreferenceConstants.PHPDOC_KEYWORD;
1171
1172   /**
1173    * A named preference that controls whether phpdoc keywords are rendered in bold.
1174    * <p>
1175    * Value is of type <code>Boolean</code>.
1176    * </p>
1177    */
1178   public final static String EDITOR_JAVADOC_KEYWORD_BOLD = IPreferenceConstants.PHPDOC_KEYWORD + EDITOR_BOLD_SUFFIX;
1179
1180   /**
1181    * A named preference that holds the color used to render phpdoc tags.
1182    * <p>
1183    * Value is of type <code>String</code>. A RGB color value encoded as a string
1184    * using class <code>PreferenceConverter</code>
1185    * </p>
1186    * 
1187    * @see org.eclipse.jface.resource.StringConverter
1188    * @see org.eclipse.jface.preference.PreferenceConverter
1189    */
1190   public final static String EDITOR_JAVADOC_TAG_COLOR = IPreferenceConstants.PHPDOC_TAG;
1191
1192   /**
1193    * A named preference that controls whether phpdoc tags are rendered in bold.
1194    * <p>
1195    * Value is of type <code>Boolean</code>.
1196    * </p>
1197    */
1198   public final static String EDITOR_JAVADOC_TAG_BOLD = IPreferenceConstants.PHPDOC_TAG + EDITOR_BOLD_SUFFIX;
1199
1200   /**
1201    * A named preference that holds the color used to render phpdoc links.
1202    * <p>
1203    * Value is of type <code>String</code>. A RGB color value encoded as a string
1204    * using class <code>PreferenceConverter</code>
1205    * </p>
1206    * 
1207    * @see org.eclipse.jface.resource.StringConverter
1208    * @see org.eclipse.jface.preference.PreferenceConverter
1209    */
1210   public final static String EDITOR_JAVADOC_LINKS_COLOR = IPreferenceConstants.PHPDOC_LINK;
1211
1212   /**
1213    * A named preference that controls whether phpdoc links are rendered in bold.
1214    * <p>
1215    * Value is of type <code>Boolean</code>.
1216    * </p>
1217    */
1218   public final static String EDITOR_JAVADOC_LINKS_BOLD = IPreferenceConstants.PHPDOC_LINK + EDITOR_BOLD_SUFFIX;
1219
1220   /**
1221    * A named preference that holds the color used to render phpdoc default text.
1222    * <p>
1223    * Value is of type <code>String</code>. A RGB color value encoded as a string
1224    * using class <code>PreferenceConverter</code>
1225    * </p>
1226    * 
1227    * @see org.eclipse.jface.resource.StringConverter
1228    * @see org.eclipse.jface.preference.PreferenceConverter
1229    */
1230   public final static String EDITOR_JAVADOC_DEFAULT_COLOR = IPreferenceConstants.PHPDOC_DEFAULT;
1231
1232   /**
1233    * A named preference that controls whether phpdoc default text is rendered in bold.
1234    * <p>
1235    * Value is of type <code>Boolean</code>.
1236    * </p>
1237    */
1238   public final static String EDITOR_JAVADOC_DEFAULT_BOLD = IPreferenceConstants.PHPDOC_DEFAULT + EDITOR_BOLD_SUFFIX;
1239
1240   /**
1241    * A named preference that holds the color used for 'linked-mode' underline.
1242    * <p>
1243    * Value is of type <code>String</code>. A RGB color value encoded as a string
1244    * using class <code>PreferenceConverter</code>
1245    * </p>
1246    *
1247    * @see org.eclipse.jface.resource.StringConverter
1248    * @see org.eclipse.jface.preference.PreferenceConverter
1249    * @since 2.1
1250    */
1251   public final static String EDITOR_LINK_COLOR = "linkColor"; //$NON-NLS-1$
1252
1253   /**
1254    * A named preference that controls whether hover tooltips in the editor are turned on or off.
1255    * <p>
1256    * Value is of type <code>Boolean</code>.
1257    * </p>
1258    */
1259   public static final String EDITOR_SHOW_HOVER = "net.sourceforge.phpdt.ui.editor.showHover"; //$NON-NLS-1$
1260
1261   /**
1262    * A named preference that defines the hover shown when no control key is
1263    * pressed.
1264    * <p>Value is of type <code>String</code>: possible values are <code>
1265    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1266    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover
1267    * contributed as <code>phpEditorTextHovers</code>.
1268    * </p>
1269    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1270    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1271    * @see JavaUI
1272    * @since 2.1
1273    */
1274   public static final String EDITOR_NONE_HOVER = "noneHover"; //$NON-NLS-1$
1275
1276   /**
1277    * A named preference that defines the hover shown when the
1278    * <code>CTRL</code> modifier key is pressed.
1279    * <p>Value is of type <code>String</code>: possible values are <code>
1280    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1281    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a
1282    * hover contributed as <code>phpEditorTextHovers</code>.
1283    * </p>
1284    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1285    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1286    * @see JavaUI
1287    * @since 2.1
1288    */
1289   public static final String EDITOR_CTRL_HOVER = "ctrlHover"; //$NON-NLS-1$
1290
1291   /**
1292    * A named preference that defines the hover shown when the
1293    * <code>SHIFT</code> modifier key is pressed.
1294    * <p>Value is of type <code>String</code>: possible values are <code>
1295    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1296    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a
1297    * hover contributed as <code>phpEditorTextHovers</code>.
1298    * </p>
1299    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1300    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1301    * @see JavaUI ID_*_HOVER
1302    * @since 2.1
1303    */
1304   public static final String EDITOR_SHIFT_HOVER = "shiftHover"; //$NON-NLS-1$
1305
1306   /**
1307    * A named preference that defines the hover shown when the
1308    * <code>CTRL + ALT</code> modifier keys is pressed.
1309    * <p>Value is of type <code>String</code>: possible values are <code>
1310    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1311    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a
1312    * hover contributed as <code>phpEditorTextHovers</code>.
1313    * </p>
1314    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1315    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1316    * @see JavaUI ID_*_HOVER
1317    * @since 2.1
1318    */
1319   public static final String EDITOR_CTRL_ALT_HOVER = "ctrlAltHover"; //$NON-NLS-1$
1320
1321   /**
1322    * A named preference that defines the hover shown when the
1323    * <code>CTRL + ALT + SHIFT</code> modifier keys is pressed.
1324    * <p>Value is of type <code>String</code>: possible values are <code>
1325    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1326    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a
1327    * hover contributed as <code>phpEditorTextHovers</code>.
1328    * </p>
1329    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1330    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1331    * @see JavaUI ID_*_HOVER
1332    * @since 2.1
1333    */
1334   public static final String EDITOR_CTRL_ALT_SHIFT_HOVER = "ctrlAltShiftHover"; //$NON-NLS-1$
1335
1336   /**
1337    * A named preference that defines the hover shown when the
1338    * <code>CTRL + SHIFT</code> modifier keys is pressed.
1339    * <p>Value is of type <code>String</code>: possible values are <code>
1340    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1341    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a
1342    * hover contributed as <code>phpEditorTextHovers</code>.
1343    * </p>
1344    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1345    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1346    * @see JavaUI ID_*_HOVER
1347    * @since 2.1
1348    */
1349   public static final String EDITOR_CTRL_SHIFT_HOVER = "ctrlShiftHover"; //$NON-NLS-1$
1350
1351   /**
1352    * A named preference that defines the hover shown when the
1353    * <code>ALT</code> modifier key is pressed.
1354    * <p>Value is of type <code>String</code>: possible values are <code>
1355    * EDITOR_NO_HOVER_CONFIGURED_ID</code>,
1356    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code>  or the hover id of a
1357    * hover contributed as <code>phpEditorTextHovers</code>.
1358    * </p>
1359    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1360    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1361    * @see JavaUI ID_*_HOVER
1362    * @since 2.1
1363    */
1364   public static final String EDITOR_ALT_SHIFT_HOVER = "altShiftHover"; //$NON-NLS-1$
1365
1366   /**
1367    * A string value used by the named preferences for hover configuration to
1368    * descibe that no hover should be shown for the given key modifiers.
1369    * @since 2.1
1370    */
1371   public static final String EDITOR_NO_HOVER_CONFIGURED_ID = "noHoverConfiguredId"; //$NON-NLS-1$
1372
1373   /**
1374    * A string value used by the named preferences for hover configuration to
1375    * descibe that the default hover should be shown for the given key
1376    * modifiers. The default hover is described by the
1377    * <code>EDITOR_DEFAULT_HOVER</code> property.
1378    * @since 2.1
1379    */
1380   public static final String EDITOR_DEFAULT_HOVER_CONFIGURED_ID = "defaultHoverConfiguredId"; //$NON-NLS-1$
1381
1382   /**
1383    * A named preference that defines the hover named the 'default hover'.
1384    * Value is of type <code>String</code>: possible values are <code>
1385    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or <code> the hover id of a hover
1386    * contributed as <code>phpEditorTextHovers</code>.
1387    * </p>
1388    *@since 2.1
1389    */
1390   public static final String EDITOR_DEFAULT_HOVER = "defaultHover"; //$NON-NLS-1$
1391
1392   /**
1393    * A named preference that controls if segmented view (show selected element only) is turned on or off.
1394    * <p>
1395    * Value is of type <code>Boolean</code>.
1396    * </p>
1397    */
1398   public static final String EDITOR_SHOW_SEGMENTS = "net.sourceforge.phpdt.ui.editor.showSegments"; //$NON-NLS-1$
1399   /**
1400          * A named preference that controls if browser like links are turned on or off.
1401          * <p>
1402          * Value is of type <code>Boolean</code>.
1403          * </p>
1404          * 
1405          * @since 2.1
1406          */
1407   public static final String EDITOR_BROWSER_LIKE_LINKS = "browserLikeLinks"; //$NON-NLS-1$
1408
1409   /**
1410    * A named preference that controls the key modifier for browser like links.
1411    * <p>
1412    * Value is of type <code>String</code>.
1413    * </p>
1414    * 
1415    * @since 2.1
1416    */
1417   public static final String EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER = "browserLikeLinksKeyModifier"; //$NON-NLS-1$
1418   /**
1419          * A named preference that controls whether occurrences are marked in the editor.
1420          * <p>
1421          * Value is of type <code>Boolean</code>.
1422          * </p>
1423          *
1424          * @since 3.0
1425          */     
1426         public static final String EDITOR_MARK_OCCURRENCES= "markOccurrences"; //$NON-NLS-1$
1427
1428         /**
1429          * A named preference that controls whether occurrences are sticky in the editor.
1430          * <p>
1431          * Value is of type <code>Boolean</code>.
1432          * </p>
1433          *
1434          * @since 3.0
1435          */     
1436         public static final String EDITOR_STICKY_OCCURRENCES= "stickyOccurrences"; //$NON-NLS-1$
1437
1438         /**
1439          * A named preference that controls disabling of the overwrite mode.
1440          * <p>
1441          * Value is of type <code>Boolean</code>.
1442          * </p>
1443          *
1444          * @since 3.0
1445          */     
1446         public static final String EDITOR_DISABLE_OVERWRITE_MODE= "disable_overwrite_mode"; //$NON-NLS-1$
1447
1448         /**
1449          * A named preference that controls the "smart semicolon" smart typing handler
1450          * <p>
1451          * Value is of type <code>Boolean</code>.
1452          * </p>
1453          *
1454          * @since 3.0
1455          */     
1456         public static final String EDITOR_SMART_SEMICOLON= "smart_semicolon"; //$NON-NLS-1$
1457         
1458         /**
1459          * A named preference that controls the "smart opening brace" smart typing handler
1460          * <p>
1461          * Value is of type <code>Boolean</code>.
1462          * </p>
1463          *
1464          * @since 3.0
1465          */     
1466         public static final String EDITOR_SMART_OPENING_BRACE= "smart_opening_brace"; //$NON-NLS-1$
1467
1468         /**
1469          * A named preference that controls the smart tab behaviour.
1470          * <p>
1471          * Value is of type <code>Boolean</code>.
1472          * 
1473          * @since 3.0
1474          */
1475         public static final String EDITOR_SMART_TAB= "smart_tab"; //$NON-NLS-1$
1476
1477         /**
1478          * A named preference that controls whether Java comments should be
1479          * spell-checked.
1480          * <p>
1481          * Value is of type <code>Boolean</code>.
1482          * </p>
1483          * 
1484          * @since 3.0
1485          */
1486 //      public final static String SPELLING_CHECK_SPELLING= ISpellCheckPreferenceKeys.SPELLING_CHECK_SPELLING;
1487
1488         /**
1489          * A named preference that controls whether words containing digits should
1490          * be skipped during spell-checking.
1491          * <p>
1492          * Value is of type <code>Boolean</code>.
1493          * </p>
1494          * 
1495          * @since 3.0
1496          */
1497 //      public final static String SPELLING_IGNORE_DIGITS= ISpellCheckPreferenceKeys.SPELLING_IGNORE_DIGITS;
1498
1499         /**
1500          * A named preference that controls whether mixed case words should be
1501          * skipped during spell-checking.
1502          * <p>
1503          * Value is of type <code>Boolean</code>.
1504          * </p>
1505          * 
1506          * @since 3.0
1507          */
1508 //      public final static String SPELLING_IGNORE_MIXED= ISpellCheckPreferenceKeys.SPELLING_IGNORE_MIXED;
1509
1510         /**
1511          * A named preference that controls whether sentence capitalization should
1512          * be ignored during spell-checking.
1513          * <p>
1514          * Value is of type <code>Boolean</code>.
1515          * </p>
1516          * 
1517          * @since 3.0
1518          */
1519 //      public final static String SPELLING_IGNORE_SENTENCE= ISpellCheckPreferenceKeys.SPELLING_IGNORE_SENTENCE;
1520
1521         /**
1522          * A named preference that controls whether upper case words should be
1523          * skipped during spell-checking.
1524          * <p>
1525          * Value is of type <code>Boolean</code>.
1526          * </p>
1527          * 
1528          * @since 3.0
1529          */
1530 //      public final static String SPELLING_IGNORE_UPPER= ISpellCheckPreferenceKeys.SPELLING_IGNORE_UPPER;
1531
1532         /**
1533          * A named preference that controls whether urls should be ignored during
1534          * spell-checking.
1535          * <p>
1536          * Value is of type <code>Boolean</code>.
1537          * </p>
1538          * 
1539          * @since 3.0
1540          */
1541 //      public final static String SPELLING_IGNORE_URLS= ISpellCheckPreferenceKeys.SPELLING_IGNORE_URLS;
1542
1543         /**
1544          * A named preference that controls the locale used for spell-checking.
1545          * <p>
1546          * Value is of type <code>String</code>.
1547          * </p>
1548          * 
1549          * @since 3.0
1550          */
1551 //      public final static String SPELLING_LOCALE= ISpellCheckPreferenceKeys.SPELLING_LOCALE;
1552
1553         /**
1554          * A named preference that controls the number of proposals offered during
1555          * spell-checking.
1556          * <p>
1557          * Value is of type <code>Integer</code>.
1558          * </p>
1559          * 
1560          * @since 3.0
1561          */
1562 //      public final static String SPELLING_PROPOSAL_THRESHOLD= ISpellCheckPreferenceKeys.SPELLING_PROPOSAL_THRESHOLD;
1563
1564         /**
1565          * A named preference that specifies the workspace user dictionary.
1566          * <p>
1567          * Value is of type <code>Integer</code>.
1568          * </p>
1569          * 
1570          * @since 3.0
1571          */
1572 //      public final static String SPELLING_USER_DICTIONARY= ISpellCheckPreferenceKeys.SPELLING_USER_DICTIONARY;
1573
1574         /**
1575          * A named preference that specifies whether spelling dictionaries are available to content assist.
1576          * <p>
1577          * Value is of type <code>Boolean</code>.
1578          * </p>
1579          * 
1580          * @since 3.0
1581          */
1582 //      public final static String SPELLING_ENABLE_CONTENTASSIST= ISpellCheckPreferenceKeys.SPELLING_ENABLE_CONTENTASSIST;
1583
1584         /**
1585          * A named preference that controls whether code snippets are formatted
1586          * in Javadoc comments.
1587          * <p>
1588          * Value is of type <code>Boolean</code>.
1589          * </p>
1590          *
1591          * @since 3.0
1592          */     
1593         public final static String FORMATTER_COMMENT_FORMATSOURCE= "comment_format_source_code"; //$NON-NLS-1$
1594         
1595         /**
1596          * A named preference that controls whether description of Javadoc
1597          * parameters are indented.
1598          * <p>
1599          * Value is of type <code>Boolean</code>.
1600          * </p>
1601          *
1602          * @since 3.0
1603          */     
1604         public final static String FORMATTER_COMMENT_INDENTPARAMETERDESCRIPTION= "comment_indent_parameter_description"; //$NON-NLS-1$
1605
1606         /**
1607          * A named preference that controls whether the header comment of
1608          * a Java source file is formatted.
1609          * <p>
1610          * Value is of type <code>Boolean</code>.
1611          * </p>
1612          *
1613          * @since 3.0
1614          */     
1615         public final static String FORMATTER_COMMENT_FORMATHEADER= "comment_format_header"; //$NON-NLS-1$
1616
1617         /**
1618          * A named preference that controls whether Javadoc root tags
1619          * are indented.
1620          * <p>
1621          * Value is of type <code>Boolean</code>.
1622          * </p>
1623          *
1624          * @since 3.0
1625          */     
1626         public final static String FORMATTER_COMMENT_INDENTROOTTAGS= "comment_indent_root_tags"; //$NON-NLS-1$
1627         
1628         /**
1629          * A named preference that controls whether Javadoc comments
1630          * are formatted by the content formatter.
1631          * <p>
1632          * Value is of type <code>Boolean</code>.
1633          * </p>
1634          *
1635          * @since 3.0
1636          */     
1637         public final static String FORMATTER_COMMENT_FORMAT= "comment_format_comments"; //$NON-NLS-1$
1638
1639         /**
1640          * A named preference that controls whether a new line is inserted
1641          * after Javadoc root tag parameters.
1642          * <p>
1643          * Value is of type <code>Boolean</code>.
1644          * </p>
1645          *
1646          * @since 3.0
1647          */     
1648         public final static String FORMATTER_COMMENT_NEWLINEFORPARAMETER= "comment_new_line_for_parameter"; //$NON-NLS-1$
1649
1650         /**
1651          * A named preference that controls whether an empty line is inserted before
1652          * the Javadoc root tag block.
1653          * <p>
1654          * Value is of type <code>Boolean</code>.
1655          * </p>
1656          *
1657          * @since 3.0
1658          */     
1659         public final static String FORMATTER_COMMENT_SEPARATEROOTTAGS= "comment_separate_root_tags"; //$NON-NLS-1$
1660
1661         /**
1662          * A named preference that controls whether blank lines are cleared during formatting
1663          * <p>
1664          * Value is of type <code>Boolean</code>.
1665          * </p>
1666          *
1667          * @since 3.0
1668          */     
1669         public final static String FORMATTER_COMMENT_CLEARBLANKLINES= "comment_clear_blank_lines"; //$NON-NLS-1$
1670
1671         /**
1672          * A named preference that controls the line length of comments.
1673          * <p>
1674          * Value is of type <code>Integer</code>. The value must be at least 4 for reasonable formatting.
1675          * </p>
1676          *
1677          * @since 3.0
1678          */     
1679         public final static String FORMATTER_COMMENT_LINELENGTH= "comment_line_length"; //$NON-NLS-1$
1680
1681         /**
1682          * A named preference that controls whether html tags are formatted.
1683          * <p>
1684          * Value is of type <code>Boolean</code>.
1685          * </p>
1686          *
1687          * @since 3.0
1688          */     
1689         public final static String FORMATTER_COMMENT_FORMATHTML= "comment_format_html"; //$NON-NLS-1$
1690
1691   /**
1692    * A named preference that controls if the Java code assist gets auto activated.
1693    * <p>
1694    * Value is of type <code>Boolean</code>.
1695    * </p>
1696    */
1697   public final static String CODEASSIST_AUTOACTIVATION = "content_assist_autoactivation"; //$NON-NLS-1$
1698
1699   /**
1700    * A name preference that holds the auto activation delay time in milli seconds.
1701    * <p>
1702    * Value is of type <code>Int</code>.
1703    * </p>
1704    */
1705   public final static String CODEASSIST_AUTOACTIVATION_DELAY = "content_assist_autoactivation_delay"; //$NON-NLS-1$
1706
1707   /**
1708    * A named preference that controls if code assist contains only visible proposals.
1709    * <p>
1710    * Value is of type <code>Boolean</code>. if <code>true<code> code assist only contains visible members. If 
1711    * <code>false</code> all members are included.
1712    * </p>
1713    */
1714   public final static String CODEASSIST_SHOW_VISIBLE_PROPOSALS = "content_assist_show_visible_proposals"; //$NON-NLS-1$
1715
1716   /**
1717    * A named preference that controls if the Java code assist inserts a
1718    * proposal automatically if only one proposal is available.
1719    * <p>
1720    * Value is of type <code>Boolean</code>.
1721    * </p>
1722    * @since 2.1
1723    */
1724   public final static String CODEASSIST_AUTOINSERT = "content_assist_autoinsert"; //$NON-NLS-1$
1725
1726   /**
1727    * A named preference that controls if the Java code assist adds import
1728    * statements.
1729    * <p>
1730    * Value is of type <code>Boolean</code>.
1731    * </p>
1732    * @since 2.1
1733    */
1734   public final static String CODEASSIST_ADDIMPORT = "content_assist_add_import"; //$NON-NLS-1$
1735
1736   /**
1737    * A named preference that controls if the Java code assist only inserts
1738    * completions. If set to false the proposals can also _replace_ code.
1739    * <p>
1740    * Value is of type <code>Boolean</code>.
1741    * </p>
1742    * @since 2.1
1743    */
1744   public final static String CODEASSIST_INSERT_COMPLETION = "content_assist_insert_completion"; //$NON-NLS-1$   
1745
1746   /**
1747    * A named preference that controls whether code assist proposals filtering is case sensitive or not.
1748    * <p>
1749    * Value is of type <code>Boolean</code>.
1750    * </p>
1751    */
1752   public final static String CODEASSIST_CASE_SENSITIVITY = "content_assist_case_sensitivity"; //$NON-NLS-1$
1753
1754   /**
1755    * A named preference that defines if code assist proposals are sorted in alphabetical order.
1756    * <p>
1757    * Value is of type <code>Boolean</code>. If <code>true</code> that are sorted in alphabetical 
1758    * order. If <code>false</code> that are unsorted.
1759    * </p>
1760    */
1761   public final static String CODEASSIST_ORDER_PROPOSALS = "content_assist_order_proposals"; //$NON-NLS-1$
1762
1763   /**
1764    * A named preference that controls if argument names are filled in when a method is selected from as list
1765    * of code assist proposal.
1766    * <p>
1767    * Value is of type <code>Boolean</code>.
1768    * </p>
1769    */
1770   public final static String CODEASSIST_FILL_ARGUMENT_NAMES = "content_assist_fill_method_arguments"; //$NON-NLS-1$
1771
1772   /**
1773    * A named preference that controls if method arguments are guessed when a
1774    * method is selected from as list of code assist proposal.
1775    * <p>
1776    * Value is of type <code>Boolean</code>.
1777    * </p>
1778    * @since 2.1
1779    */
1780   public final static String CODEASSIST_GUESS_METHOD_ARGUMENTS = "content_assist_guess_method_arguments"; //$NON-NLS-1$
1781
1782   /**
1783    * A named preference that holds the characters that auto activate code assist
1784    * in PHP code.
1785    * <p>
1786    * Value is of type <code>Sring</code>. All characters that trigger auto code
1787    * assist in PHP code.
1788    * </p>
1789    */
1790   public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA = "content_assist_autoactivation_triggers_php"; //$NON-NLS-1$
1791
1792   /**
1793    * A named preference that holds the characters that auto activate code assist
1794    * in PHPDoc.
1795    * <p>
1796    * Value is of type <code>Sring</code>. All characters that trigger auto code
1797    * assist in PHPDoc.
1798    * </p>
1799    */
1800   public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC = "content_assist_autoactivation_triggers_phpdoc"; //$NON-NLS-1$
1801
1802   /**
1803    * A named preference that holds the characters that auto activate code assist
1804    * in HTML.
1805    * <p>
1806    * Value is of type <code>Sring</code>. All characters that trigger auto code
1807    * assist in HTML.
1808    * </p>
1809    */
1810   public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML = "content_assist_autoactivation_triggers_html"; //$NON-NLS-1$
1811
1812   /**
1813    * A named preference that holds the background color used in the code assist selection dialog.
1814    * <p>
1815    * Value is of type <code>String</code>. A RGB color value encoded as a string
1816    * using class <code>PreferenceConverter</code>
1817    * </p>
1818    * 
1819    * @see org.eclipse.jface.resource.StringConverter
1820    * @see org.eclipse.jface.preference.PreferenceConverter
1821    */
1822   public final static String CODEASSIST_PROPOSALS_BACKGROUND = "content_assist_proposals_background"; //$NON-NLS-1$
1823
1824   /**
1825    * A named preference that holds the foreground color used in the code assist selection dialog.
1826    * <p>
1827    * Value is of type <code>String</code>. A RGB color value encoded as a string
1828    * using class <code>PreferenceConverter</code>
1829    * </p>
1830    * 
1831    * @see org.eclipse.jface.resource.StringConverter
1832    * @see org.eclipse.jface.preference.PreferenceConverter
1833    */
1834   public final static String CODEASSIST_PROPOSALS_FOREGROUND = "content_assist_proposals_foreground"; //$NON-NLS-1$
1835
1836   /**
1837    * A named preference that holds the background color used for parameter hints.
1838    * <p>
1839    * Value is of type <code>String</code>. A RGB color value encoded as a string
1840    * using class <code>PreferenceConverter</code>
1841    * </p>
1842    * 
1843    * @see org.eclipse.jface.resource.StringConverter
1844    * @see org.eclipse.jface.preference.PreferenceConverter
1845    */
1846   public final static String CODEASSIST_PARAMETERS_BACKGROUND = "content_assist_parameters_background"; //$NON-NLS-1$
1847
1848   /**
1849    * A named preference that holds the foreground color used in the code assist selection dialog
1850    * <p>
1851    * Value is of type <code>String</code>. A RGB color value encoded as a string
1852    * using class <code>PreferenceConverter</code>
1853    * </p>
1854    * 
1855    * @see org.eclipse.jface.resource.StringConverter
1856    * @see org.eclipse.jface.preference.PreferenceConverter
1857    */
1858   public final static String CODEASSIST_PARAMETERS_FOREGROUND = "content_assist_parameters_foreground"; //$NON-NLS-1$
1859
1860   /**
1861    * A named preference that holds the background color used in the code
1862    * assist selection dialog to mark replaced code.
1863    * <p>
1864    * Value is of type <code>String</code>. A RGB color value encoded as a string
1865    * using class <code>PreferenceConverter</code>
1866    * </p>
1867    *
1868    * @see org.eclipse.jface.resource.StringConverter
1869    * @see org.eclipse.jface.preference.PreferenceConverter
1870    * @since 2.1
1871    */
1872   public final static String CODEASSIST_REPLACEMENT_BACKGROUND = "content_assist_completion_replacement_background"; //$NON-NLS-1$
1873
1874   /**
1875    * A named preference that holds the foreground color used in the code
1876    * assist selection dialog to mark replaced code.
1877    * <p>
1878    * Value is of type <code>String</code>. A RGB color value encoded as a string
1879    * using class <code>PreferenceConverter</code>
1880    * </p>
1881    *
1882    * @see org.eclipse.jface.resource.StringConverter
1883    * @see org.eclipse.jface.preference.PreferenceConverter
1884    * @since 2.1
1885    */
1886   public final static String CODEASSIST_REPLACEMENT_FOREGROUND = "content_assist_completion_replacement_foreground"; //$NON-NLS-1$
1887
1888   /**
1889    * A named preference that controls the behaviour of the refactoring wizard for showing the error page. 
1890    * <p>
1891    * Value is of type <code>String</code>. Valid values are: 
1892    * <code>REFACTOR_FATAL_SEVERITY</code>,
1893    * <code>REFACTOR_ERROR_SEVERITY</code>,
1894    * <code>REFACTOR_WARNING_SEVERITY</code>
1895    * <code>REFACTOR_INFO_SEVERITY</code>,
1896    * <code>REFACTOR_OK_SEVERITY</code>.
1897    * </p>
1898    * 
1899    * @see #REFACTOR_FATAL_SEVERITY
1900    * @see #REFACTOR_ERROR_SEVERITY
1901    * @see #REFACTOR_WARNING_SEVERITY
1902    * @see #REFACTOR_INFO_SEVERITY
1903    * @see #REFACTOR_OK_SEVERITY
1904    */
1905   public static final String REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD = "Refactoring.ErrorPage.severityThreshold"; //$NON-NLS-1$
1906
1907   /**
1908    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
1909    * 
1910    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
1911    */
1912   public static final String REFACTOR_FATAL_SEVERITY = "4"; //$NON-NLS-1$
1913
1914   /**
1915    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
1916    * 
1917    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
1918    */
1919   public static final String REFACTOR_ERROR_SEVERITY = "3"; //$NON-NLS-1$
1920
1921   /**
1922    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
1923    * 
1924    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
1925    */
1926   public static final String REFACTOR_WARNING_SEVERITY = "2"; //$NON-NLS-1$
1927
1928   /**
1929    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
1930    * 
1931    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
1932    */
1933   public static final String REFACTOR_INFO_SEVERITY = "1"; //$NON-NLS-1$
1934
1935   /**
1936    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
1937    * 
1938    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
1939    */
1940   public static final String REFACTOR_OK_SEVERITY = "0"; //$NON-NLS-1$
1941
1942   /**
1943    * A named preference thet controls whether all dirty editors are automatically saved before a refactoring is
1944    * executed.
1945    * <p>
1946    * Value is of type <code>Boolean</code>.
1947    * </p>
1948    */
1949   public static final String REFACTOR_SAVE_ALL_EDITORS = "Refactoring.savealleditors"; //$NON-NLS-1$
1950
1951   /**
1952    * A named preference that controls if the Java Browsing views are linked to the active editor.
1953    * <p>
1954    * Value is of type <code>Boolean</code>.
1955    * </p>
1956    * 
1957    * @see #LINK_PACKAGES_TO_EDITOR
1958    */
1959   public static final String BROWSING_LINK_VIEW_TO_EDITOR = "net.sourceforge.phpdt.ui.browsing.linktoeditor"; //$NON-NLS-1$
1960
1961   /**
1962    * A named preference that controls the layout of the Java Browsing views vertically. Boolean value.
1963    * <p>
1964    * Value is of type <code>Boolean</code>. If <code>true<code> the views are stacked vertical.
1965    * If <code>false</code> they are stacked horizontal.
1966    * </p>
1967    */
1968   public static final String BROWSING_STACK_VERTICALLY = "net.sourceforge.phpdt.ui.browsing.stackVertically"; //$NON-NLS-1$
1969
1970   /**
1971    * A named preference that controls if templates are formatted when applied.
1972    * <p>
1973    * Value is of type <code>Boolean</code>.
1974    * </p>
1975    *
1976    * @since 2.1
1977    */
1978   public static final String TEMPLATES_USE_CODEFORMATTER = "net.sourceforge.phpdt.ui.template.format"; //$NON-NLS-1$
1979
1980   /**
1981    * A named preference that controls the key modifier mask for browser like links.
1982    * The value is only used if the value of <code>EDITOR_BROWSER_LIKE_LINKS</code>
1983    * cannot be resolved to valid SWT modifier bits.
1984    * <p>
1985    * Value is of type <code>String</code>.
1986    * </p>
1987    * 
1988    * @see #EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER
1989    * @since 2.1.1
1990    */
1991   public static final String EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK = "browserLikeLinksKeyModifierMask"; //$NON-NLS-1$
1992
1993   /**
1994          * A named preference that defines the key for the hover modifier state masks.
1995          * The value is only used if the value of <code>EDITOR_TEXT_HOVER_MODIFIERS</code>
1996          * cannot be resolved to valid SWT modifier bits.
1997          * 
1998          * @see JavaUI
1999          * @see #EDITOR_TEXT_HOVER_MODIFIERS
2000          * @since 2.1.1
2001          */
2002   public static final String EDITOR_TEXT_HOVER_MODIFIER_MASKS = "hoverModifierMasks"; //$NON-NLS-1$
2003
2004   public static void initializeDefaultValues(IPreferenceStore store) {
2005     store.setDefault(PreferenceConstants.EDITOR_SHOW_SEGMENTS, false);
2006
2007     // JavaBasePreferencePage
2008     store.setDefault(PreferenceConstants.LINK_PACKAGES_TO_EDITOR, true);
2009     store.setDefault(PreferenceConstants.LINK_TYPEHIERARCHY_TO_EDITOR, false);
2010     store.setDefault(PreferenceConstants.LINK_BROWSING_VIEW_TO_EDITOR, true);
2011     store.setDefault(PreferenceConstants.OPEN_TYPE_HIERARCHY, PreferenceConstants.OPEN_TYPE_HIERARCHY_IN_VIEW_PART);
2012     store.setDefault(PreferenceConstants.DOUBLE_CLICK, PreferenceConstants.DOUBLE_CLICK_EXPANDS);
2013     store.setDefault(PreferenceConstants.UPDATE_JAVA_VIEWS, PreferenceConstants.UPDATE_WHILE_EDITING);
2014
2015     // AppearancePreferencePage
2016     store.setDefault(PreferenceConstants.APPEARANCE_COMPRESS_PACKAGE_NAMES, false);
2017     store.setDefault(PreferenceConstants.APPEARANCE_METHOD_RETURNTYPE, false);
2018     store.setDefault(PreferenceConstants.SHOW_CU_CHILDREN, true);
2019     store.setDefault(PreferenceConstants.APPEARANCE_OVERRIDE_INDICATOR, true);
2020     store.setDefault(PreferenceConstants.BROWSING_STACK_VERTICALLY, false);
2021     store.setDefault(PreferenceConstants.APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW, ""); //$NON-NLS-1$
2022     store.setDefault(PreferenceConstants.APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER, true);
2023
2024     // ImportOrganizePreferencePage
2025     store.setDefault(PreferenceConstants.ORGIMPORTS_IMPORTORDER, "php;phpx;org;com"); //$NON-NLS-1$
2026     store.setDefault(PreferenceConstants.ORGIMPORTS_ONDEMANDTHRESHOLD, 99);
2027     store.setDefault(PreferenceConstants.ORGIMPORTS_IGNORELOWERCASE, true);
2028
2029     // ClasspathVariablesPreferencePage
2030     // CodeFormatterPreferencePage
2031     // CompilerPreferencePage
2032     // no initialization needed
2033
2034     // RefactoringPreferencePage
2035     store.setDefault(PreferenceConstants.REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD, PreferenceConstants.REFACTOR_ERROR_SEVERITY);
2036     store.setDefault(PreferenceConstants.REFACTOR_SAVE_ALL_EDITORS, false);
2037     store.setDefault("RefactoringUI", "dialog");
2038
2039     // TemplatePreferencePage
2040     store.setDefault(PreferenceConstants.TEMPLATES_USE_CODEFORMATTER, true);
2041
2042     // CodeGenerationPreferencePage
2043     store.setDefault(PreferenceConstants.CODEGEN_USE_GETTERSETTER_PREFIX, false);
2044     store.setDefault(PreferenceConstants.CODEGEN_USE_GETTERSETTER_SUFFIX, false);
2045     store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_PREFIX, "fg, f, _$, _, m_"); //$NON-NLS-1$
2046     store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_SUFFIX, "_"); //$NON-NLS-1$
2047     store.setDefault(PreferenceConstants.CODEGEN__JAVADOC_STUBS, true);
2048     store.setDefault(PreferenceConstants.CODEGEN__NON_JAVADOC_COMMENTS, false);
2049     store.setDefault(PreferenceConstants.CODEGEN__FILE_COMMENTS, false);
2050
2051     // MembersOrderPreferencePage
2052     store.setDefault(PreferenceConstants.APPEARANCE_MEMBER_SORT_ORDER, "T,SI,SF,SM,I,F,C,M"); //$NON-NLS-1$
2053     // must add here to guarantee that it is the first in the listener list
2054     //  store.addPropertyChangeListener(PHPeclipsePlugin.getDefault().getMemberOrderPreferenceCache());
2055
2056     // PHPEditorPreferencePage
2057     /*
2058      * Ensure that the display is accessed only in the UI thread.
2059      * Ensure that there are no side effects of switching the thread.
2060      */
2061     final RGB[] rgbs = new RGB[3];
2062     final Display display = Display.getDefault();
2063     display.syncExec(new Runnable() {
2064       public void run() {
2065         Color c = display.getSystemColor(SWT.COLOR_GRAY);
2066         rgbs[0] = c.getRGB();
2067         c = display.getSystemColor(SWT.COLOR_LIST_FOREGROUND);
2068         rgbs[1] = c.getRGB();
2069         c = display.getSystemColor(SWT.COLOR_LIST_BACKGROUND);
2070         rgbs[2] = c.getRGB();
2071       }
2072     });
2073
2074     store.setDefault(PreferenceConstants.EDITOR_MATCHING_BRACKETS, true);
2075     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_MATCHING_BRACKETS_COLOR, rgbs[0]);
2076
2077     store.setDefault(PreferenceConstants.EDITOR_CURRENT_LINE, true);
2078     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_CURRENT_LINE_COLOR, new RGB(225, 235, 224));
2079
2080     store.setDefault(PreferenceConstants.EDITOR_PRINT_MARGIN, false);
2081     store.setDefault(PreferenceConstants.EDITOR_PRINT_MARGIN_COLUMN, 80);
2082     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PRINT_MARGIN_COLOR, new RGB(176, 180, 185));
2083
2084     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_FIND_SCOPE_COLOR, new RGB(185, 176, 180));
2085
2086 //    store.setDefault(PreferenceConstants.EDITOR_PROBLEM_INDICATION, true);
2087 //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PROBLEM_INDICATION_COLOR, new RGB(255, 0, 128));
2088 //    store.setDefault(PreferenceConstants.EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER, true);
2089 //
2090 //    store.setDefault(PreferenceConstants.EDITOR_WARNING_INDICATION, true);
2091 //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_WARNING_INDICATION_COLOR, new RGB(244, 200, 45));
2092 //    store.setDefault(PreferenceConstants.EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER, true);
2093 //
2094 //    store.setDefault(PreferenceConstants.EDITOR_TASK_INDICATION, false);
2095 //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_TASK_INDICATION_COLOR, new RGB(0, 128, 255));
2096 //    store.setDefault(PreferenceConstants.EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER, false);
2097 //
2098 //    store.setDefault(PreferenceConstants.EDITOR_BOOKMARK_INDICATION, false);
2099 //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_BOOKMARK_INDICATION_COLOR, new RGB(34, 164, 99));
2100 //    store.setDefault(PreferenceConstants.EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER, false);
2101 //
2102 //    store.setDefault(PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION, false);
2103 //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_COLOR, new RGB(192, 192, 192));
2104 //    store.setDefault(PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER, false);
2105 //
2106 //    store.setDefault(PreferenceConstants.EDITOR_UNKNOWN_INDICATION, false);
2107 //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_UNKNOWN_INDICATION_COLOR, new RGB(0, 0, 0));
2108 //    store.setDefault(PreferenceConstants.EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER, false);
2109
2110     store.setDefault(PreferenceConstants.EDITOR_CORRECTION_INDICATION, true);
2111     store.setDefault(PreferenceConstants.EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE, false);
2112
2113     store.setDefault(PreferenceConstants.EDITOR_EVALUTE_TEMPORARY_PROBLEMS, true);
2114
2115     store.setDefault(PreferenceConstants.EDITOR_OVERVIEW_RULER, true);
2116
2117     store.setDefault(PreferenceConstants.EDITOR_LINE_NUMBER_RULER, false);
2118     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINE_NUMBER_RULER_COLOR, new RGB(0, 0, 0));
2119
2120 //    WorkbenchChainedTextFontFieldEditor.startPropagate(store, JFaceResources.TEXT_FONT);
2121
2122     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINKED_POSITION_COLOR, new RGB(0, 200, 100));
2123     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINK_COLOR, new RGB(0, 0, 255));
2124
2125     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_FOREGROUND_COLOR, rgbs[1]);
2126     store.setDefault(PreferenceConstants.EDITOR_FOREGROUND_DEFAULT_COLOR, true);
2127
2128     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_BACKGROUND_COLOR, rgbs[2]);
2129     store.setDefault(PreferenceConstants.EDITOR_BACKGROUND_DEFAULT_COLOR, true);
2130
2131     store.setDefault(PreferenceConstants.EDITOR_TAB_WIDTH, 4);
2132     store.setDefault(PreferenceConstants.EDITOR_SPACES_FOR_TABS, false);
2133
2134     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_COLOR, new RGB(63, 127, 95));
2135     store.setDefault(PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_BOLD, false);
2136
2137     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_COLOR, new RGB(63, 127, 95));
2138     store.setDefault(PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_BOLD, false);
2139
2140     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_TAG_COLOR, new RGB(255, 0, 128));
2141     store.setDefault(PreferenceConstants.EDITOR_JAVA_TAG_BOLD, true);
2142
2143     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_KEYWORD_COLOR, new RGB(127, 0, 85));
2144     store.setDefault(PreferenceConstants.EDITOR_JAVA_KEYWORD_BOLD, true);
2145
2146     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_FUNCTIONNAME_COLOR, new RGB(127, 127, 159));
2147     store.setDefault(PreferenceConstants.EDITOR_PHP_FUNCTIONNAME_BOLD, false);
2148
2149     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_VARIABLE_COLOR, new RGB(127, 159, 191));
2150     store.setDefault(PreferenceConstants.EDITOR_PHP_VARIABLE_BOLD, false);
2151
2152     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_CONSTANT_COLOR, new RGB(127, 0, 85));
2153     store.setDefault(PreferenceConstants.EDITOR_PHP_CONSTANT_BOLD, false);
2154
2155     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_TYPE_COLOR, new RGB(127, 0, 85));
2156     store.setDefault(PreferenceConstants.EDITOR_PHP_TYPE_BOLD, false);
2157
2158     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_STRING_COLOR, new RGB(42, 0, 255));
2159     store.setDefault(PreferenceConstants.EDITOR_STRING_BOLD, false);
2160
2161     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_DEFAULT_COLOR, new RGB(0, 0, 0));
2162     store.setDefault(PreferenceConstants.EDITOR_JAVA_DEFAULT_BOLD, false);
2163
2164     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_KEYWORD_COLOR, new RGB(127, 159, 191));
2165     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_KEYWORD_BOLD, true);
2166
2167     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_TAG_COLOR, new RGB(127, 127, 159));
2168     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_TAG_BOLD, false);
2169
2170     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_LINKS_COLOR, new RGB(63, 63, 191));
2171     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_LINKS_BOLD, false);
2172
2173     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_DEFAULT_COLOR, new RGB(63, 95, 191));
2174     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_DEFAULT_BOLD, false);
2175
2176     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION, true);
2177     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_DELAY, 500);
2178
2179     store.setDefault(PreferenceConstants.CODEASSIST_AUTOINSERT, true);
2180     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PROPOSALS_BACKGROUND, new RGB(254, 241, 233));
2181     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PROPOSALS_FOREGROUND, new RGB(0, 0, 0));
2182     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PARAMETERS_BACKGROUND, new RGB(254, 241, 233));
2183     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PARAMETERS_FOREGROUND, new RGB(0, 0, 0));
2184     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_REPLACEMENT_BACKGROUND, new RGB(255, 255, 0));
2185     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_REPLACEMENT_FOREGROUND, new RGB(255, 0, 0));
2186     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA, "$"); //$NON-NLS-1$
2187     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC, "@"); //$NON-NLS-1$
2188     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML, "<&#"); //$NON-NLS-1$
2189     store.setDefault(PreferenceConstants.CODEASSIST_SHOW_VISIBLE_PROPOSALS, true);
2190     store.setDefault(PreferenceConstants.CODEASSIST_CASE_SENSITIVITY, false);
2191     store.setDefault(PreferenceConstants.CODEASSIST_ORDER_PROPOSALS, false);
2192     store.setDefault(PreferenceConstants.CODEASSIST_ADDIMPORT, true);
2193     store.setDefault(PreferenceConstants.CODEASSIST_INSERT_COMPLETION, true);
2194     store.setDefault(PreferenceConstants.CODEASSIST_FILL_ARGUMENT_NAMES, false);
2195     store.setDefault(PreferenceConstants.CODEASSIST_GUESS_METHOD_ARGUMENTS, true);
2196
2197     store.setDefault(PreferenceConstants.EDITOR_SMART_HOME_END, true);
2198     store.setDefault(PreferenceConstants.EDITOR_SMART_PASTE, true);
2199     store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_PHP, true);
2200     store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACKETS_PHP, true);
2201     store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACES, true);
2202     store.setDefault(PreferenceConstants.EDITOR_CLOSE_JAVADOCS, true);
2203     store.setDefault(PreferenceConstants.EDITOR_WRAP_STRINGS, true);
2204     store.setDefault(PreferenceConstants.EDITOR_ADD_JAVADOC_TAGS, true);
2205     store.setDefault(PreferenceConstants.EDITOR_FORMAT_JAVADOCS, true);
2206
2207     store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_HTML, true);
2208     store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACKETS_HTML, true);
2209
2210     //  store.setDefault(PreferenceConstants.EDITOR_DEFAULT_HOVER, JavaPlugin.ID_BESTMATCH_HOVER);
2211     store.setDefault(PreferenceConstants.EDITOR_NONE_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2212     //          store.setDefault(PreferenceConstants.EDITOR_CTRL_HOVER, JavaPlugin.ID_SOURCE_HOVER);
2213     store.setDefault(PreferenceConstants.EDITOR_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2214     store.setDefault(PreferenceConstants.EDITOR_CTRL_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2215     store.setDefault(PreferenceConstants.EDITOR_CTRL_ALT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2216     store.setDefault(PreferenceConstants.EDITOR_ALT_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2217     store.setDefault(PreferenceConstants.EDITOR_CTRL_ALT_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2218
2219     String ctrl = Action.findModifierString(SWT.CTRL);
2220     store.setDefault(PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS, "net.sourceforge.phpdt.ui.BestMatchHover;0;net.sourceforge.phpdt.ui.JavaSourceHover;" + ctrl); //$NON-NLS-1$
2221     store.setDefault(PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIER_MASKS, "net.sourceforge.phpdt.ui.BestMatchHover;0;net.sourceforge.phpdt.ui.JavaSourceHover;" + SWT.CTRL); //$NON-NLS-1$
2222
2223     store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS, true);
2224     store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER, ctrl);
2225     store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK, SWT.CTRL);
2226
2227     // do more complicated stuff
2228     //  NewJavaProjectPreferencePage.initDefaults(store);       
2229   }
2230
2231   /**
2232    * Returns the JDT-UI preference store.
2233    * 
2234    * @return the JDT-UI preference store
2235    */
2236   public static IPreferenceStore getPreferenceStore() {
2237     return PHPeclipsePlugin.getDefault().getPreferenceStore();
2238   }
2239
2240   //    /**
2241   //     * Encodes a JRE library to be used in the named preference <code>NEWPROJECT_JRELIBRARY_LIST</code>. 
2242   //     * 
2243   //     * @param description a string value describing the JRE library. The description is used
2244   //     * to indentify the JDR library in the UI
2245   //     * @param entries an array of classpath entries to be encoded
2246   //     * 
2247   //     * @return the encoded string.
2248   //    */
2249   //    public static String encodeJRELibrary(String description, IClasspathEntry[] entries) {
2250   //            return NewJavaProjectPreferencePage.encodeJRELibrary(description, entries);
2251   //    }
2252   //    
2253   //    /**
2254   //     * Decodes an encoded JRE library and returns its description string.
2255   //     * 
2256   //     * @return the description of an encoded JRE library
2257   //     * 
2258   //     * @see #encodeJRELibrary(String, IClasspathEntry[])
2259   //     */
2260   //    public static String decodeJRELibraryDescription(String encodedLibrary) {
2261   //            return NewJavaProjectPreferencePage.decodeJRELibraryDescription(encodedLibrary);
2262   //    }
2263   //    
2264   //    /**
2265   //     * Decodes an encoded JRE library and returns its classpath entries.
2266   //     * 
2267   //     * @return the array of classpath entries of an encoded JRE library.
2268   //     * 
2269   //     * @see #encodeJRELibrary(String, IClasspathEntry[])
2270   //     */
2271   //    public static IClasspathEntry[] decodeJRELibraryClasspathEntries(String encodedLibrary) {
2272   //            return NewJavaProjectPreferencePage.decodeJRELibraryClasspathEntries(encodedLibrary);
2273   //    }
2274   //    
2275   //    /**
2276   //     * Returns the current configuration for the JRE to be used as default in new Java projects.
2277   //     * This is a convenience method to access the named preference <code>NEWPROJECT_JRELIBRARY_LIST
2278   //     * </code> with the index defined by <code> NEWPROJECT_JRELIBRARY_INDEX</code>.
2279   //     *
2280   //     * @return the current default set of classpath entries
2281   //     *  
2282   //     * @see #NEWPROJECT_JRELIBRARY_LIST
2283   //     * @see #NEWPROJECT_JRELIBRARY_INDEX
2284   //     */
2285   //    public static IClasspathEntry[] getDefaultJRELibrary() {
2286   //            return NewJavaProjectPreferencePage.getDefaultJRELibrary();
2287   //    }               
2288 }