1) Added setting of syntax properties to italic, underline and strike through.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / IPreferenceConstants.java
index 6b399eb..3592ffa 100644 (file)
@@ -17,18 +17,32 @@ package net.sourceforge.phpeclipse;
 public interface IPreferenceConstants {
        /**
         * Preference key suffix for bold text style preference keys.
-        * 
+        *
         * @since 2.1
         */
        public static final String EDITOR_BOLD_SUFFIX = "_bold"; //$NON-NLS-1$
 
        /**
         * Preference key suffix for italic text style preference keys.
-        * 
+        *
         * @since 3.0
         */
        public static final String EDITOR_ITALIC_SUFFIX = "_italic"; //$NON-NLS-1$
 
+       /**
+        * Preference key suffix for underline text style preference keys.
+        *
+        * @since 3.0
+        */
+       public static final String EDITOR_UNDERLINE_SUFFIX = "_underline"; //$NON-NLS-1$
+
+       /**
+        * Preference key suffix for strikethrough text style preference keys.
+        *
+        * @since 3.0
+        */
+       public static final String EDITOR_STRIKETHROUGH_SUFFIX = "_strikethrough"; //$NON-NLS-1$
+
        // public static final String LOCALHOST_PREF = "_localhost";
        // public static final String DOCUMENTROOT_PREF = "_documentroot";
        // public static final String XAMPP_START_PREF = "_xampp_start_pref";
@@ -89,7 +103,7 @@ public interface IPreferenceConstants {
        /**
         * The color key for operators and brackets in PHP code (value
         * <code>"__php_operator"</code>).
-        * 
+        *
         * @since 3.0
         */
        public static final String PHP_OPERATOR = "__php_operator"; //$NON-NLS-1$
@@ -97,7 +111,7 @@ public interface IPreferenceConstants {
        /**
         * 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$
@@ -109,7 +123,7 @@ public interface IPreferenceConstants {
         * 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
@@ -122,7 +136,7 @@ public interface IPreferenceConstants {
         * <p>
         * Value is of type <code>Boolean</code>.
         * </p>
-        * 
+        *
         * @since 3.0
         */
        public final static String EDITOR_PHP_OPERATOR_BOLD = PHP_OPERATOR
@@ -134,7 +148,7 @@ public interface IPreferenceConstants {
         * <p>
         * Value is of type <code>Boolean</code>.
         * </p>
-        * 
+        *
         * @since 3.0
         */
        public final static String EDITOR_PHP_OPERATOR_ITALIC = PHP_OPERATOR
@@ -147,7 +161,7 @@ public interface IPreferenceConstants {
         * 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
@@ -160,7 +174,7 @@ public interface IPreferenceConstants {
         * <p>
         * Value is of type <code>Boolean</code>.
         * </p>
-        * 
+        *
         * @since 3.0
         */
        public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD = PHP_BRACE_OPERATOR
@@ -172,7 +186,7 @@ public interface IPreferenceConstants {
         * <p>
         * Value is of type <code>Boolean</code>.
         * </p>
-        * 
+        *
         * @since 3.0
         */
        public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC = PHP_BRACE_OPERATOR
@@ -181,7 +195,7 @@ public interface IPreferenceConstants {
        /**
         * The color key for keyword 'return' in PHP code (value
         * <code>"__php_keyword_return"</code>).
-        * 
+        *
         * @since 3.0
         */
        public static final String PHP_KEYWORD_RETURN = "__php_keyword_return"; //$NON-NLS-1$
@@ -193,7 +207,7 @@ public interface IPreferenceConstants {
         * 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
@@ -206,7 +220,7 @@ public interface IPreferenceConstants {
         * <p>
         * Value is of type <code>Boolean</code>.
         * </p>
-        * 
+        *
         * @since 3.0
         */
        public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD = PHP_KEYWORD_RETURN
@@ -218,7 +232,7 @@ public interface IPreferenceConstants {
         * <p>
         * Value is of type <code>Boolean</code>.
         * </p>
-        * 
+        *
         * @since 3.0
         */
        public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC = PHP_KEYWORD_RETURN
@@ -401,4 +415,4 @@ public interface IPreferenceConstants {
        // "_bring_to_top_preview";
        // public static final String PHP_SHOW_HTML_FILES_LOCAL =
        // "_show_html_files_local";
-}
\ No newline at end of file
+}