1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
12 package net.sourceforge.phpdt.internal.ui.preferences;
14 import net.sourceforge.phpdt.internal.ui.IJavaHelpContextIds;
15 import net.sourceforge.phpdt.internal.ui.dialogs.StatusUtil;
16 import net.sourceforge.phpdt.internal.ui.wizards.IStatusChangeListener;
17 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
19 import org.eclipse.core.runtime.IStatus;
20 import org.eclipse.jface.dialogs.Dialog;
21 import org.eclipse.jface.preference.PreferencePage;
22 import org.eclipse.swt.widgets.Composite;
23 import org.eclipse.swt.widgets.Control;
24 import org.eclipse.ui.IWorkbench;
25 import org.eclipse.ui.IWorkbenchPreferencePage;
26 import org.eclipse.ui.PlatformUI;
29 * Preference page for spell checking preferences.
33 public class SpellingPreferencePage extends PreferencePage implements IWorkbenchPreferencePage, IStatusChangeListener {
35 /** The spelling configuration block */
36 private final SpellingConfigurationBlock fBlock= new SpellingConfigurationBlock(this, null);
39 * Creates a new spelling preference page.
41 public SpellingPreferencePage() {
43 setPreferenceStore(PHPeclipsePlugin.getDefault().getPreferenceStore());
44 setDescription(PreferencesMessages.getString("SpellingPreferencePage.description")); //$NON-NLS-1$
45 setTitle(PreferencesMessages.getString("SpellingPreferencePage.title")); //$NON-NLS-1$
49 * @see org.eclipse.jface.preference.PreferencePage#createContents(org.eclipse.swt.widgets.Composite)
51 protected Control createContents(final Composite parent) {
53 final Control control= fBlock.createContents(parent);
54 Dialog.applyDialogFont(control);
60 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
62 public void createControl(final Composite parent) {
63 super.createControl(parent);
64 PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), IJavaHelpContextIds.JAVA_EDITOR_PREFERENCE_PAGE);
68 * @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
70 public void init(final IWorkbench workbench) {
75 * @see org.eclipse.jface.preference.PreferencePage#performDefaults()
77 protected void performDefaults() {
78 fBlock.performDefaults();
80 super.performDefaults();
84 * @see org.eclipse.jface.preference.IPreferencePage#performOk()
86 public boolean performOk() {
88 if (!fBlock.performOk(true))
91 return super.performOk();
95 * @see net.sourceforge.phpdt.internal.ui.wizards.IStatusChangeListener#statusChanged(org.eclipse.core.runtime.IStatus)
97 public void statusChanged(final IStatus status) {
98 setValid(!status.matches(IStatus.ERROR));
100 StatusUtil.applyToStatusLine(this, status);