Added some configurations constants to show or not class, vars and functions in outline
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / IPreferenceConstants.java
index db03c5f..c685210 100644 (file)
@@ -35,6 +35,7 @@ import org.eclipse.ui.plugin.AbstractUIPlugin;
  * The main plugin class to be used in the desktop.
  */
 public interface IPreferenceConstants {
+  
        public static final String LOCALHOST_PREF = "_localhost"; //$NON-NLS-1$
        public static final String DOCUMENTROOT_PREF = "_documentroot"; //$NON-NLS-1$
        public static final String USE_EXTERNAL_BROWSER_PREF = "_use_external_browser"; //$NON-NLS-1$
@@ -66,6 +67,19 @@ public interface IPreferenceConstants {
   /** Preference key for the foreground color of the line numbers */
   public final static String LINE_NUMBER_COLOR= "_lineNumberColor"; //$NON-NLS-1$
   
+  public final static String FORMATTER_TAB_SIZE= "_formatterTabSize"; //$NON-NLS-1$
+  public final static String SPACES_FOR_TABS = "false";
+  
   public final static String PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT = "_defaultBackgroundColor"; //$NON-NLS-1$
   public final static String PREFERENCE_COLOR_BACKGROUND = "backgroundColor"; //$NON-NLS-1$
+  
+  /** Preference key for content assist proposal color */
+  public final static String PROPOSALS_FOREGROUND=  "content_assist_proposals_foreground"; //$NON-NLS-1$
+  /** Preference key for content assist proposal color */
+  public final static String PROPOSALS_BACKGROUND=  "content_assist_proposals_background"; //$NON-NLS-1$
+
+    public static final String PHP_OUTLINE_CLASS = "_php_outline_class"; //$NON-NLS-1$
+    public static final String PHP_OUTLINE_FUNC  = "_php_outline_func"; //$NON-NLS-1$
+    public static final String PHP_OUTLINE_VAR   = "_php_outline_var"; //$NON-NLS-1$
+
 }
\ No newline at end of file