KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > texteditor > ITextEditorThemeConstants


1 /*******************************************************************************
2  * Copyright (c) 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.texteditor;
12
13
14 /**
15  * Defines the constants used in the <code>org.eclipse.ui.themes</code>
16  * extension contributed by this plug-in.
17  *
18  * @since 3.3
19  */

20 public interface ITextEditorThemeConstants {
21
22     /**
23      * Theme constant for the color used to highlight the current line
24      * (value <code>"org.eclipse.ui.editors.currentLineColor"</code>).
25      */

26     public final static String JavaDoc CURRENT_LINE_COLOR= "org.eclipse.ui.editors.currentLineColor"; //$NON-NLS-1$
27

28     /**
29      * Theme constant for the color used to render line numbers inside the line number ruler
30      * (value <code>"org.eclipse.ui.editors.lineNumberRulerColor"</code>).
31      */

32     public final static String JavaDoc LINE_NUMBER_RULER_COLOR= "org.eclipse.ui.editors.lineNumberRulerColor"; //$NON-NLS-1$
33

34     /**
35      * Theme constant for the color used for hyperlinks
36      * (value <code>"org.eclipse.ui.editors.hyperlinkColor"</code>).
37      */

38     public final static String JavaDoc HYPERLINK_COLOR= "org.eclipse.ui.editors.hyperlinkColor"; //$NON-NLS-1$
39

40     /**
41      * Theme constant for the find scope background color
42      * (value <code>org.eclipse.ui.editors.findScope</code>).
43      */

44     public final static String JavaDoc FIND_SCOPE_COLOR= "org.eclipse.ui.editors.findScope"; //$NON-NLS-1$
45

46     /**
47      * Theme constant for the color used to render the print margin
48      * (value <code>"org.eclipse.ui.editors.printMarginColor"</code>).
49      */

50     public final static String JavaDoc PRINT_MARGIN_COLOR= "org.eclipse.ui.editors.printMarginColor"; //$NON-NLS-1$
51

52     /**
53      * Theme constant for the color used to render the editor background color
54      * (value <code>"org.eclipse.ui.editors.backgroundColor"</code>).
55      */

56     public static final String JavaDoc PREFERENCE_COLOR_BACKGROUND= "org.eclipse.ui.editors.backgroundColor"; //$NON-NLS-1$
57

58     /**
59      * Theme constant for the color used to render the editor foreground color
60      * (value <code>"org.eclipse.ui.editors.foregroundColor"</code>).
61      */

62     public static final String JavaDoc PREFERENCE_COLOR_FOREGROUND= "org.eclipse.ui.editors.foregroundColor"; //$NON-NLS-1$
63

64 }
65
Popular Tags