blob: df35f3542773d5398da0f65cd33fc8ea008412e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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
*******************************************************************************/
package org.eclipse.ui.examples.undo.preferences;
import org.eclipse.jface.preference.*;
import org.eclipse.ui.IWorkbenchPreferencePage;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.examples.undo.UndoExampleMessages;
import org.eclipse.ui.examples.undo.UndoPlugin;
/**
* This class is used to define preferences that control how
* undo occurs. It demonstrates the use of preferences to configure
* the operation history in different ways.
*/
public class UndoPreferencePage
extends FieldEditorPreferencePage
implements IWorkbenchPreferencePage {
public UndoPreferencePage() {
super(GRID);
setPreferenceStore(UndoPlugin.getDefault().getPreferenceStore());
setDescription(UndoExampleMessages.UndoPreferences_Description);
}
/**
* Creates the field editors.
*/
public void createFieldEditors() {
addField(
new IntegerFieldEditor(
PreferenceConstants.PREF_UNDOLIMIT,
UndoExampleMessages.UndoPreferences_HistoryLimit,
getFieldEditorParent()));
addField(
new BooleanFieldEditor(
PreferenceConstants.PREF_SHOWDEBUG,
UndoExampleMessages.UndoPreferences_ShowDebug,
getFieldEditorParent()));
addField(
new BooleanFieldEditor(
PreferenceConstants.PREF_CONFIRMUNDO,
UndoExampleMessages.UndoPreferences_ConfirmUndo,
getFieldEditorParent()));
}
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
*/
public void init(IWorkbench workbench) {
}
}