blob: d3271ae3e5065b64240e68df027784b2bb0f9872 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Sebastian Davids <sdavids@gmx.de> - bug 132479 - [FieldAssist] Field assist example improvements
*******************************************************************************/
package org.eclipse.ui.examples.fieldassist.preferences;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.preference.*;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Label;
import org.eclipse.ui.IWorkbenchPreferencePage;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.examples.fieldassist.FieldAssistPlugin;
import org.eclipse.ui.examples.fieldassist.TaskAssistExampleMessages;
/**
* This class represents a preference page that is contributed to the
* Preferences dialog. By subclassing <samp>FieldEditorPreferencePage</samp>,
* we can use the field support built into JFace that allows us to create a page
* that is small and knows how to save, restore and apply itself.
* <p>
* This page is used to modify preferences only. They are stored in the
* preference store that belongs to the main plug-in class. That way,
* preferences can be accessed directly via the preference store.
*/
public class FieldAssistPreferencePage extends FieldEditorPreferencePage
implements IWorkbenchPreferencePage {
/**
* Create the FieldAssistPreferencePage
*/
public FieldAssistPreferencePage() {
super(GRID);
setPreferenceStore(FieldAssistPlugin.getDefault().getPreferenceStore());
setDescription(TaskAssistExampleMessages.Preferences_Description);
}
/**
* Creates the field editors. Field editors are abstractions of the common
* GUI blocks needed to manipulate various types of preferences. Each field
* editor knows how to save and
*/
public void createFieldEditors() {
Label label = new Label(getFieldEditorParent(), SWT.WRAP);
label.setText(TaskAssistExampleMessages.Preferences_ErrorIndicator);
addField(new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWERRORMESSAGE,
TaskAssistExampleMessages.Preferences_ShowErrorMessage,
getFieldEditorParent()));
addField(new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWERRORDECORATION,
TaskAssistExampleMessages.Preferences_ShowErrorDecorator,
getFieldEditorParent()));
addField(new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWERRORCOLOR,
TaskAssistExampleMessages.Preferences_ShowErrorColor,
getFieldEditorParent()));
label = new Label(getFieldEditorParent(), SWT.WRAP);
label = new Label(getFieldEditorParent(), SWT.WRAP);
label.setText(TaskAssistExampleMessages.Preferences_RequiredFieldIndicator);
addField(new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWREQUIREDFIELDDECORATION,
TaskAssistExampleMessages.Preferences_ShowRequiredFieldDecorator,
getFieldEditorParent()));
addField(new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWREQUIREDFIELDCOLOR,
TaskAssistExampleMessages.Preferences_ShowRequiredFieldColor,
getFieldEditorParent()));
label = new Label(getFieldEditorParent(), SWT.WRAP);
addField(new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWWARNINGDECORATION,
TaskAssistExampleMessages.Preferences_ShowWarningDecorator,
getFieldEditorParent()));
addField(new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWCONTENTPROPOSALCUE,
TaskAssistExampleMessages.Preferences_ShowProposalCue,
getFieldEditorParent()));
Dialog.applyDialogFont(getFieldEditorParent());
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
*/
public void init(IWorkbench workbench) {
}
}