blob: 3e92c860f449b4a8eaf6285641fb045ff010cbb3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.editors.text;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.ui.texteditor.spelling.IPreferenceStatusMonitor;
import org.eclipse.ui.editors.text.ITextEditorHelpContextIds;
/**
* Spelling preference page.
* <p>
* Note: Must be public since it is referenced from plugin.xml
* </p>
*
* @since 3.1
*/
public class SpellingPreferencePage extends AbstractConfigurationBlockPreferencePage {
/**
* Status monitor.
*/
private class StatusMonitor implements IPreferenceStatusMonitor {
@Override
public void statusChanged(IStatus status) {
handleStatusChanged(status);
}
}
/**
* Handles status changes.
*
* @param status the new status
*/
protected void handleStatusChanged(IStatus status) {
setValid(!status.matches(IStatus.ERROR));
StatusUtil.applyToStatusLine(this, status);
}
@Override
protected String getHelpId() {
return ITextEditorHelpContextIds.SPELLING_PREFERENCE_PAGE;
}
@Override
protected void setDescription() {
}
@Override
protected void setPreferenceStore() {
setPreferenceStore(EditorsPlugin.getDefault().getPreferenceStore());
}
@Override
protected IPreferenceConfigurationBlock createConfigurationBlock(OverlayPreferenceStore overlayPreferenceStore) {
return new SpellingConfigurationBlock(overlayPreferenceStore, new StatusMonitor());
}
}