X-Git-Url: http://secure.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 ac605f0..e9278cf 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/IPreferenceConstants.java
@@ -1,63 +1,347 @@
/**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp. and others.
-All rights reserved. This program and the accompanying materials
-are made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-
-Contributors:
- IBM Corporation - Initial implementation
- Klaus Hartlage - www.eclipseproject.de
-**********************************************************************/
+ Copyright (c) 2000, 2002 IBM Corp. and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Common Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/cpl-v10.html
+
+ Contributors:
+ IBM Corporation - Initial implementation
+ www.phpeclipse.de
+ **********************************************************************/
package net.sourceforge.phpeclipse;
-import java.util.MissingResourceException;
-import java.util.ResourceBundle;
-
-import net.sourceforge.phpeclipse.phpeditor.PHPDocumentProvider;
-import org.eclipse.core.resources.IWorkspace;
-import org.eclipse.core.resources.ResourcesPlugin;
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.IPluginDescriptor;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.MultiStatus;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.core.runtime.Status;
-//import org.eclipse.jdt.internal.ui.JavaStatusConstants;
-//import org.eclipse.jdt.internal.ui.JavaUIMessages;
-import org.eclipse.jface.preference.IPreferenceStore;
-import org.eclipse.swt.widgets.Shell;
-import org.eclipse.ui.IWorkbenchPage;
-import org.eclipse.ui.IWorkbenchWindow;
-import org.eclipse.ui.plugin.AbstractUIPlugin;
/**
- * The main plugin class to be used in the desktop.
+ * Predefined prference constants
*/
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 EXTERNAL_BROWSER_PREF = "_external_browser";
- public static final String MYSQL_PREF = "_my_sql";
- public static final String APACHE_START_PREF = "_apache_start";
- public static final String APACHE_STOP_PREF = "_apache_stop";
- public static final String APACHE_RESTART_PREF = "_apache_restart";
- public static final String SHOW_OUTPUT_IN_CONSOLE = "_sho_output_in_console";
+ /**
+ * 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$
+
+ // public static final String LOCALHOST_PREF = "_localhost";
+ // public static final String DOCUMENTROOT_PREF = "_documentroot";
+ public static final String XAMPP_START_PREF = "_xampp_start_pref";
+
+ public static final String XAMPP_STOP_PREF = "_xampp_stop_pref";
+
+ 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";
+
+ public static final String APACHE_RUN_PREF = "_apache_run_pref";
+
+ public static final String APACHE_START_BACKGROUND = "_apache_start_background";
+
+ public static final String APACHE_START_PREF = "__apache_start";
+
+ public static final String APACHE_STOP_BACKGROUND = "_apache_stop_background";
+
+ public static final String APACHE_STOP_PREF = "__apache_stop";
+
+ public static final String APACHE_RESTART_BACKGROUND = "_apache_restart_background";
+
+ public static final String APACHE_RESTART_PREF = "__apache_restart";
+
+ 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";
- public static final String PHP_PARSE_ON_SAVE = "_php_parse_on_save";
-
+
+ // public static final String PHP_INTERNAL_PARSER = "_php_internal_parser";
+ // public static final String PHP_EXTERNAL_PARSER = "_php_external_parser";
+ // public static final String PHP_PARSE_ON_SAVE = "_php_parse_on_save";
public static final String PHP_MULTILINE_COMMENT = "_php_multilineComment";
+
+ public static final String PHP_MULTILINE_COMMENT_BOLD = "_php_multilineComment_bold";
+
+ public static final String PHP_MULTILINE_COMMENT_ITALIC = "_php_multilineComment_italic";
+
+ public static final String PHP_MULTILINE_COMMENT_UNDERLINE = "_php_multilineComment_underline";
+
+ /**
+ * The color key for operators and brackets in PHP code (value "__php_operator"
).
+ *
+ * @since 3.0
+ */
+ public static final String PHP_OPERATOR = "__php_operator"; //$NON-NLS-1$
+
+ /**
+ * The color key for {} in PHP code (value "__php_brace_operator"
).
+ *
+ * @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.
+ *
+ * Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
+ *
+ * Value is of type Boolean
.
+ *
+ * Value is of type Boolean
.
+ *
+ * Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
+ *
+ * Value is of type Boolean
.
+ *
+ * Value is of type Boolean
.
+ *
"__php_keyword_return"
).
+ *
+ * @since 3.0
+ */
+ public static final String PHP_KEYWORD_RETURN = "__php_keyword_return"; //$NON-NLS-1$
+
+ /**
+ * A named preference that holds the color used to render the 'return' keyword.
+ *
+ * Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
+ *
+ * Value is of type Boolean
.
+ *
+ * Value is of type Boolean
.
+ *
@foo
) in PHPDoc comments.
+ */
+ public static final String PHPDOC_KEYWORD = "_php_doc_keyword"; //$NON-NLS-1$
+
+ public static final String PHPDOC_KEYWORD_BOLD = "_php_doc_keyword_bold";
+
+ public static final String PHPDOC_KEYWORD_ITALIC = "_php_doc_keyword_italic";
+
+ public static final String PHPDOC_KEYWORD_UNDERLINE = "_php_doc_keyword_underline";
+
+ /** The color key for HTML tags (<foo>
) in PHPDoc comments. */
+ public static final String PHPDOC_TAG = "_php_doc_tag"; //$NON-NLS-1$
+
+ public static final String PHPDOC_TAG_BOLD = "_php_doc_tag_bold";
+
+ public static final String PHPDOC_TAG_ITALIC = "_php_doc_tag_italic";
+
+ public static final String PHPDOC_TAG_UNDERLINE = "_php_doc_tag_underline";
+
+ /** The color key for PHPDoc links ({foo}
) in PHPDoc comments. */
+ public static final String PHPDOC_LINK = "_php_doc_link"; //$NON-NLS-1$
+
+ public static final String PHPDOC_LINK_BOLD = "_php_doc_link_bold";
+
+ public static final String PHPDOC_LINK_ITALIC = "_php_doc_link_italic";
+
+ public static final String PHPDOC_LINK_UNDERLINE = "_php_doc_link_underline";
+
+ /** The color key for everthing in PHPDoc comments for which no other color is specified. */
+ public static final String PHPDOC_DEFAULT = "_php_doc_default"; //$NON-NLS-1$
+
+ public static final String PHPDOC_DEFAULT_BOLD = "_php_doc_default_bold";
+
+ public static final String PHPDOC_DEFAULT_ITALIC = "_php_doc_default_italic";
+
+ public static final String PHPDOC_DEFAULT_UNDERLINE = "_php_doc_default_underline";
+
+ // public static final String LINKED_POSITION_COLOR = "_linkedPositionColor";
+ // public static final String PHP_EDITOR_BACKGROUND = "_php_editor_background";
+ public static final String PHP_USERDEF_XMLFILE = "_userdef_xmlfile";
+
+ /** Preference key for showing the line number ruler */
+ // public final static String LINE_NUMBER_RULER = "_lineNumberRuler"; //$NON-NLS-1$
+ /** 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 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 EDITOR_EVALUTE_TEMPORARY_PROBLEMS = null;
+
+ public static final String EDITOR_CORRECTION_INDICATION = null;
+
+ public static final String PHP_OBFUSCATOR_DEFAULT = "_php_obfuscator_default";
+ // public static final String PHP_BOOKMARK_DEFAULT = "_php_bookmark_default";
+ // public static final String PHP_LOCALHOST_PREF = "_php_localhost";
+ // public static final String PHP_DOCUMENTROOT_PREF = "_php_documentroot";
+ //
+ // public static final String PHP_AUTO_PREVIEW_DEFAULT = "_auto_preview";
+ // public static final String PHP_BRING_TO_TOP_PREVIEW_DEFAULT = "_bring_to_top_preview";
+ // public static final String PHP_SHOW_HTML_FILES_LOCAL = "_show_html_files_local";
}
\ No newline at end of file