Adding new code for feature save on unfocus. This is from ticket #542. It also adds...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / preferences / EditorPreferencePage.java
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
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11
12 package net.sourceforge.phpdt.internal.ui.preferences;
13
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;
18
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;
27
28 /**
29  * Preference page for spell checking preferences.
30  * 
31  * @since 3.0
32  */
33 public class EditorPreferencePage extends PreferencePage implements
34                 IWorkbenchPreferencePage, IStatusChangeListener {
35
36         /** The spelling configuration block */
37         private final EditorConfigurationBlock fBlock = new EditorConfigurationBlock(
38                         this, null);
39
40         /**
41          * Creates a new spelling preference page.
42          */
43         public EditorPreferencePage() {
44
45                 setPreferenceStore(PHPeclipsePlugin.getDefault().getPreferenceStore());
46                 setDescription(PreferencesMessages
47                                 .getString("EditorPreferencePage.description")); //$NON-NLS-1$
48                 setTitle(PreferencesMessages.getString("EditorPreferencePage.title")); //$NON-NLS-1$
49         }
50
51         /*
52          * @see org.eclipse.jface.preference.PreferencePage#createContents(org.eclipse.swt.widgets.Composite)
53          */
54         protected Control createContents(final Composite parent) {
55
56                 final Control control = fBlock.createContents(parent);
57                 Dialog.applyDialogFont(control);
58
59                 return control;
60         }
61
62         /*
63          * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
64          */
65         public void createControl(final Composite parent) {
66                 super.createControl(parent);
67                 PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(),
68                                 IJavaHelpContextIds.JAVA_EDITOR_PREFERENCE_PAGE);
69         }
70
71         /*
72          * @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
73          */
74         public void init(final IWorkbench workbench) {
75                 // Do nothing
76         }
77
78         /*
79          * @see org.eclipse.jface.preference.PreferencePage#performDefaults()
80          */
81         protected void performDefaults() {
82                 fBlock.performDefaults();
83
84                 super.performDefaults();
85         }
86
87         /*
88          * @see org.eclipse.jface.preference.IPreferencePage#performOk()
89          */
90         public boolean performOk() {
91
92                 if (!fBlock.performOk(true))
93                         return false;
94
95                 return super.performOk();
96         }
97
98         /*
99          * @see net.sourceforge.phpdt.internal.ui.wizards.IStatusChangeListener#statusChanged(org.eclipse.core.runtime.IStatus)
100          */
101         public void statusChanged(final IStatus status) {
102                 setValid(!status.matches(IStatus.ERROR));
103
104                 StatusUtil.applyToStatusLine(this, status);
105         }
106 }