X-Git-Url: http://git.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
index 8fea4a1..83a7128 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
@@ -7,11 +7,11 @@ http://www.eclipse.org/legal/cpl-v10.html
 
 Contributors:
     IBM Corporation - Initial implementation
-    Klaus Hartlage - www.eclipseproject.de
+    www.phpeclipse.de
 **********************************************************************/
 package net.sourceforge.phpeclipse;
 
-
+import net.sourceforge.phpdt.internal.ui.JavaElementAdapterFactory;
 
 /**
  * Predefined prference constants
@@ -33,9 +33,6 @@ public interface IPreferenceConstants {
 	
 //  public static final String LOCALHOST_PREF = "_localhost";
 //  public static final String DOCUMENTROOT_PREF = "_documentroot";
-  public static final String USE_EXTERNAL_BROWSER_PREF = "_use_external_browser";
-//  public static final String SHOW_EXTERNAL_PREVIEW_PREF = "_show_external_preview";
-  public static final String EXTERNAL_BROWSER_PREF = "_external_browser";
   public static final String MYSQL_RUN_PREF = "_mysql_run_pref";
   public static final String MYSQL_START_BACKGROUND = "_mysql_start_background";
   public static final String MYSQL_PREF = "__mysql_start";
@@ -49,6 +46,7 @@ public interface IPreferenceConstants {
   public static final String SHOW_OUTPUT_IN_CONSOLE = "_show_output_in_console";
   public static final String PHP_RUN_PREF = "_php_run_pref";
   public static final String EXTERNAL_PARSER_PREF = "_external_parser";
+  public static final String PHP_EXTENSION_PREFS = "_php_parser_extensions";
   public static final String PHP_PARSER_DEFAULT = "_php_parser_default";
 //  public static final String PHP_INTERNAL_PARSER = "_php_internal_parser";
 //  public static final String PHP_EXTERNAL_PARSER = "_php_external_parser";
@@ -63,6 +61,12 @@ public interface IPreferenceConstants {
 	 */
   public static final String PHP_OPERATOR = "__php_operator"; //$NON-NLS-1$
   
+  /** The color key for {} in PHP code
+	 * (value <code>"__php_brace_operator"</code>).
+	 * @since 3.0
+	 */
+  public static final String PHP_BRACE_OPERATOR = "__php_brace_operator"; //$NON-NLS-1$
+
   /**
 	 * A named preference that holds the color used to render operators and brackets.
 	 * <p>
@@ -96,6 +100,39 @@ public interface IPreferenceConstants {
 	 */
 	public final static String EDITOR_PHP_OPERATOR_ITALIC= PHP_OPERATOR + EDITOR_ITALIC_SUFFIX;
 
+	/**
+	 * A named preference that holds the color used to render operators and brackets.
+	 * <p>
+	 * Value is of type <code>String</code>. A RGB color value encoded as a string
+	 * using class <code>PreferenceConverter</code>
+	 * </p>
+	 * 
+	 * @see org.eclipse.jface.resource.StringConverter
+	 * @see org.eclipse.jface.preference.PreferenceConverter
+	 * @since 3.0
+	 */
+	public final static String EDITOR_PHP_BRACE_OPERATOR_COLOR= PHP_BRACE_OPERATOR;	
+
+	/**
+	 * A named preference that controls whether operators and brackets are rendered in bold.
+	 * <p>
+	 * Value is of type <code>Boolean</code>.
+	 * </p>
+	 * 
+	 * @since 3.0
+	 */
+	public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD= PHP_BRACE_OPERATOR + EDITOR_BOLD_SUFFIX;
+	
+	/**
+	 * A named preference that controls whether operators and brackets are rendered in italic.
+	 * <p>
+	 * Value is of type <code>Boolean</code>.
+	 * </p>
+	 * 
+	 * @since 3.0
+	 */
+	public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC= PHP_BRACE_OPERATOR + EDITOR_ITALIC_SUFFIX;
+
   /** The color key for keyword 'return' in PHP code
 	 * (value <code>"__php_keyword_return"</code>).
 	 * @since 3.0
@@ -138,10 +175,10 @@ public interface IPreferenceConstants {
   public static final String PHP_SINGLELINE_COMMENT_BOLD = "_php_singlelineComment_bold";//$NON-NLS-1$
   public static final String PHP_SINGLELINE_COMMENT_ITALIC = "_php_singlelineComment_italic";//$NON-NLS-1$
   public static final String PHP_SINGLELINE_COMMENT_UNDERLINE = "_php_singlelineComment_underline";//$NON-NLS-1$
-	public static final String PHP_TAG = "_php_tag";//$NON-NLS-1$
-	public static final String PHP_TAG_BOLD = "_php_tag_bold";//$NON-NLS-1$
-	public static final String PHP_TAG_ITALIC = "_php_tag_italic";//$NON-NLS-1$
-	public static final String PHP_TAG_UNDERLINE = "_php_tag_underline";//$NON-NLS-1$
+  public static final String PHP_TAG = "_php_tag";//$NON-NLS-1$
+  public static final String PHP_TAG_BOLD = "_php_tag_bold";//$NON-NLS-1$
+  public static final String PHP_TAG_ITALIC = "_php_tag_italic";//$NON-NLS-1$
+  public static final String PHP_TAG_UNDERLINE = "_php_tag_underline";//$NON-NLS-1$
   public static final String PHP_KEYWORD = "_php_keyword";//$NON-NLS-1$
   public static final String PHP_KEYWORD_BOLD = "_php_keyword_bold";//$NON-NLS-1$
   public static final String PHP_KEYWORD_ITALIC = "_php_keyword_italic";//$NON-NLS-1$