blob: 5a9e1aa69f2fe3ace234b3d2eaf39ef25f1cfc58 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.internal.texteditor;
/**
* Defines the constants used in the <code>org.eclipse.ui.themes</code>
* extension contributed by this plug-in.
*
* @since 3.3
*/
public interface ITextEditorThemeConstants {
/**
* Theme constant for the color used to highlight the current line
* (value <code>"org.eclipse.ui.editors.currentLineColor"</code>).
*/
public final static String CURRENT_LINE_COLOR= "org.eclipse.ui.editors.currentLineColor"; //$NON-NLS-1$
/**
* Theme constant for the color used to render line numbers inside the line number ruler
* (value <code>"org.eclipse.ui.editors.lineNumberRulerColor"</code>).
*/
public final static String LINE_NUMBER_RULER_COLOR= "org.eclipse.ui.editors.lineNumberRulerColor"; //$NON-NLS-1$
/**
* Theme constant for the color used for hyperlinks
* (value <code>"org.eclipse.ui.editors.hyperlinkColor"</code>).
*/
public final static String HYPERLINK_COLOR= "org.eclipse.ui.editors.hyperlinkColor"; //$NON-NLS-1$
/**
* Theme constant for the find scope background color
* (value <code>org.eclipse.ui.editors.findScope</code>).
*/
public final static String FIND_SCOPE_COLOR= "org.eclipse.ui.editors.findScope"; //$NON-NLS-1$
/**
* Theme constant for the color used to render the print margin
* (value <code>"org.eclipse.ui.editors.printMarginColor"</code>).
*/
public final static String PRINT_MARGIN_COLOR= "org.eclipse.ui.editors.printMarginColor"; //$NON-NLS-1$
}