From: kpouer Date: Thu, 23 Jan 2003 16:59:43 +0000 (+0000) Subject: some configurations checkbox to show or not class, vars and functions in outline X-Git-Url: http://secure.phpeclipse.com?hp=4a9313ba39070bbc1ce0440e775ea9d33bbf94f3 some configurations checkbox to show or not class, vars and functions in outline --- diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPEclipsePreferencePage.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPEclipsePreferencePage.java index b9ab7df..8a047f1 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPEclipsePreferencePage.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/PHPEclipsePreferencePage.java @@ -79,7 +79,13 @@ public class PHPEclipsePreferencePage extends FieldEditorPreferencePage implemen BooleanFieldEditor parseOnSave = new BooleanFieldEditor(PHPeclipsePlugin.PHP_PARSE_ON_SAVE, "&Parse automatically on save", getFieldEditorParent()); - + BooleanFieldEditor outlineShowClass = + new BooleanFieldEditor(PHPeclipsePlugin.PHP_OUTLINE_CLASS, "Show classes in outline", getFieldEditorParent()); + BooleanFieldEditor outlineShowFunc = + new BooleanFieldEditor(PHPeclipsePlugin.PHP_OUTLINE_FUNC, "Show functions in outline", getFieldEditorParent()); + BooleanFieldEditor outlineShowVar = + new BooleanFieldEditor(PHPeclipsePlugin.PHP_OUTLINE_VAR, "Show variables in outline", getFieldEditorParent()); + addField(localhost); addField(documentRoot); @@ -95,6 +101,9 @@ public class PHPEclipsePreferencePage extends FieldEditorPreferencePage implemen addField(chooseParser); addField(parseOnSave); + addField(outlineShowClass) ; + addField(outlineShowFunc); + addField(outlineShowVar); } /**