blob: 3fe4abcd5daf0d8efd5dbdc22c67eb3b43992ee1 [file] [log] [blame]
package org.eclipse.ui.internal;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* The IPreferenceConstants are the internal constants used by the Workbench.
*/
public interface IPreferenceConstants {
// (boolean) Whether or not to display the Welcome dialog on startup.
public static final String WELCOME_DIALOG = "WELCOME_DIALOG"; //$NON-NLS-1$
// (boolean) Cause all editors to save modified resources prior
// to running a full or incremental manual build.
public static final String SAVE_ALL_BEFORE_BUILD = "SAVE_ALL_BEFORE_BUILD"; //$NON-NLS-1$
// (boolean) Whether or not to automatically run a build
// when a resource is modified. NOTE: The value is not
// actually in the preference store but available from
// IWorkspace. This constant is used solely for property
// change notification from the preference store so
// interested parties can listen for all preference changes.
public static final String AUTO_BUILD = "AUTO_BUILD"; //$NON-NLS-1$
//Do we show tabs up or down for views
public static final String VIEW_TAB_POSITION = "VIEW_TAB_POSITION"; //$NON-NLS-1$
//Do we show tabs up or down for editors
public static final String EDITOR_TAB_POSITION = "EDITOR_TAB_POSITION"; //$NON-NLS-1$
// (boolean) If true a editor of the same type will be reused
// otherwise a new editor will be opened.
public static final String REUSE_EDITORS = "REUSE_EDITORS"; //$NON-NLS-1$
}