blob: 950337239ffd4af21226d76f40a1b4beafdcf9f2 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2005, 2019 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.base.ui;
import org.eclipse.statet.ecommons.text.ui.settings.AssistPreferences;
import org.eclipse.statet.internal.ide.ui.StatetUIPlugin;
/**
* Common Preference constants used in Statet UI preference store.
*/
public interface IStatetUIPreferenceConstants {
public final static String CAT_EDITOR_OPTIONS_QUALIFIER = StatetUIPlugin.BUNDLE_ID + "/editors/options"; //$NON-NLS-1$
public final static AssistPreferences EDITING_ASSIST_PREFERENCES = new AssistPreferences(IStatetUIPreferenceConstants.CAT_EDITOR_OPTIONS_QUALIFIER);
// /**
// * A named preference that controls whether the ouline page should sort its elements.
// * <p>
// * Value is of type <code>Boolean</code>.
// */
// public static final String EDITOROUTLINE_SORT = ID+"editor_outline.sort";
// /**
// * A named preference that controls whether the ouline page links its selection to the active editor.
// * <p>
// * Value is of type <code>Boolean</code>.
// */
// public static final String EDITOROUTLINE_LINKWITHEDITOR = ID+"editor_outline.link_with_editor";
}