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