Project

General

Profile

Download (6.77 KB) Statistics
| Branch: | Tag: | Revision:
1 eca18c8b n.hoffmann
/**
2
* Copyright (C) 2007 EDIT
3 081d99b4 Patrick Plitzner
* European Distributed Institute of Taxonomy
4 eca18c8b n.hoffmann
* http://www.e-taxonomy.eu
5 081d99b4 Patrick Plitzner
*
6 eca18c8b n.hoffmann
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
10
package eu.etaxonomy.taxeditor.preference;
11
12
13
14
/**
15
 * This interface provides convenient access to the theme resources defined in this packages plugin.xml
16 3be6ef3e n.hoffmann
 *
17 eca18c8b n.hoffmann
 * @author n.hoffmann
18
 * @created 18.03.2009
19
 * @version 1.0
20
 */
21
public interface Resources {
22 081d99b4 Patrick Plitzner
23 eca18c8b n.hoffmann
	/* ***************************************************************************************
24
	FONTS
25 081d99b4 Patrick Plitzner
	************************************************************************************** */
26 3be6ef3e n.hoffmann
	/** Constant <code>ACCEPTED_TAXON_FONT="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
27 eca18c8b n.hoffmann
	public static final String ACCEPTED_TAXON_FONT = "eu.etaxonomy.taxeditor.preferences.fontDefinition.nameEditor.accepted";
28 3be6ef3e n.hoffmann
	/** Constant <code>SYNONYM_FONT="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
29 eca18c8b n.hoffmann
	public static final String SYNONYM_FONT = "eu.etaxonomy.taxeditor.preferences.fontDefinition.nameEditor.synonym";
30 3be6ef3e n.hoffmann
	/** Constant <code>MISAPPLIEDNAME_FONT="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
31 eca18c8b n.hoffmann
	public static final String MISAPPLIEDNAME_FONT = "eu.etaxonomy.taxeditor.preferences.fontDefinition.nameEditor.misapplication";
32 3be6ef3e n.hoffmann
	/** Constant <code>CONCEPT_FONT="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
33 eca18c8b n.hoffmann
	public static final String CONCEPT_FONT = "eu.etaxonomy.taxeditor.preferences.fontDefinition.nameEditor.concept";
34 3be6ef3e n.hoffmann
	/** Constant <code>FONT_DEFAULT_PROMPT="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
35 eca18c8b n.hoffmann
	public static final String FONT_DEFAULT_PROMPT = "eu.etaxonomy.taxeditor.preferences.fontDefinition.nameEditor.default";
36 081d99b4 Patrick Plitzner
37 3be6ef3e n.hoffmann
	/** Constant <code>FONT_SEARCH_VIEW_ACCEPTED="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
38 eca18c8b n.hoffmann
	public static final String FONT_SEARCH_VIEW_ACCEPTED = "eu.etaxonomy.taxeditor.preferences.fontDefinition.searchView.accepted";
39 3be6ef3e n.hoffmann
	/** Constant <code>FONT_SEARCH_VIEW_SYNONYM="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
40 eca18c8b n.hoffmann
	public static final String FONT_SEARCH_VIEW_SYNONYM = "eu.etaxonomy.taxeditor.preferences.fontDefinition.searchView.synonym";
41 3be6ef3e n.hoffmann
	/** Constant <code>FONT_SEARCH_VIEW_OTHER="eu.etaxonomy.taxeditor.preferences.font"{trunked}</code> */
42 eca18c8b n.hoffmann
	public static final String FONT_SEARCH_VIEW_OTHER = "eu.etaxonomy.taxeditor.preferences.fontDefinition.searchView.other";
43 081d99b4 Patrick Plitzner
44 eca18c8b n.hoffmann
	/* ***************************************************************************************
45
	COLORS
46
	************************************************************************************** */
47 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_CONTROL_BACKGROUND="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
48 a2353579 n.hoffmann
	public static final String COLOR_CONTROL_BACKGROUND = "eu.etaxonomy.taxeditor.preferences.colorDefinition.nameEditor.colorContainerBackground";
49 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_CONTROL_SELECTED="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
50 a2353579 n.hoffmann
	public static final String COLOR_CONTROL_SELECTED = "eu.etaxonomy.taxeditor.preferences.colorDefinition.nameEditor.colorContainerSelected";
51 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_CONTROL_SELECTED_FOCUS="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
52 a2353579 n.hoffmann
	public static final String COLOR_CONTROL_SELECTED_FOCUS = "eu.etaxonomy.taxeditor.preferences.colorDefinition.nameEditor.colorContainerSelectedFocus";
53 d794dfd4 Patrick Plitzner
	public static final String COLOR_SWT_BG_DEFAULT = "eu.etaxonomy.taxeditor.preferences.colorDefinition.swtBGDefault";
54 081d99b4 Patrick Plitzner
55 ec35f482 Patrick Plitzner
	public static final String COLOR_BULK_EDITOR_CANDIDATE = "eu.etaxonomy.taxeditor.preferences.colorDefinition.bulkEditor.colorCandidate";
56
57
	public static final String COLOR_BULK_EDITOR_TARGET = "eu.etaxonomy.taxeditor.preferences.colorDefinition.bulkEditor.colorTarget";
58
59 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_COMPOSITE_BACKGROUND="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
60 a2353579 n.hoffmann
	public static final String COLOR_COMPOSITE_BACKGROUND = "eu.etaxonomy.taxeditor.preferences.colorDefinition.colorCompositeBackground";
61 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_COMPOSITE_IRRELEVANT="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
62 eca18c8b n.hoffmann
	public static final String COLOR_COMPOSITE_IRRELEVANT = "eu.etaxonomy.taxeditor.preferences.colorDefinition.colorCompositeIrrelevant";
63 081d99b4 Patrick Plitzner
64 3be6ef3e n.hoffmann
	/** Constant <code>SEARCH_VIEW_FOREGROUND="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
65 eca18c8b n.hoffmann
	public static final String SEARCH_VIEW_FOREGROUND = "eu.etaxonomy.taxeditor.preferences.colorDefinition.searchView.foreground";
66 3be6ef3e n.hoffmann
	/** Constant <code>SEARCH_VIEW_FOCUS="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
67 eca18c8b n.hoffmann
	public static final String SEARCH_VIEW_FOCUS = "eu.etaxonomy.taxeditor.preferences.colorDefinition.searchView.focus";
68
69 081d99b4 Patrick Plitzner
	public static final String BLACK = "eu.etaxonomy.taxeditor.preferences.colorDefinition.black";
70
71 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_LIST_BACKGROUND="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
72 eca18c8b n.hoffmann
	public static final String COLOR_LIST_BACKGROUND = "eu.etaxonomy.taxeditor.preferences.colorDefinition.listBackground";
73 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_FONT_DEFAULT="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
74 eca18c8b n.hoffmann
	public static final String COLOR_FONT_DEFAULT = "eu.etaxonomy.taxeditor.preferences.colorDefinition.textDefault";
75 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_TEXT_DISABLED="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
76 eca18c8b n.hoffmann
	public static final String COLOR_TEXT_DISABLED = "eu.etaxonomy.taxeditor.preferences.colorDefinition.textDisabled";
77 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_TEXT_DISABLED_BACKGROUND="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
78 eca18c8b n.hoffmann
	public static final String COLOR_TEXT_DISABLED_BACKGROUND = "eu.etaxonomy.taxeditor.preferences.colorDefinition.textBackgroundDisabled";
79 081d99b4 Patrick Plitzner
80 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_DRAG_ENTER="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
81 a2353579 n.hoffmann
	public static final String COLOR_DRAG_ENTER = "eu.etaxonomy.taxeditor.preferences.colorDefinition.nameEditor.colorContainerDragEnter";
82 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_LIST_EVEN="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
83 cfcb0ce6 n.hoffmann
	public static final String COLOR_LIST_EVEN = "eu.etaxonomy.taxeditor.preferences.colorDefinition.listBackgroundEven";
84 3be6ef3e n.hoffmann
	/** Constant <code>COLOR_LIST_ODD="eu.etaxonomy.taxeditor.preferences.colo"{trunked}</code> */
85 cfcb0ce6 n.hoffmann
	public static final String COLOR_LIST_ODD = "eu.etaxonomy.taxeditor.preferences.colorDefinition.listBackgroundOdd";
86 081d99b4 Patrick Plitzner
87 9a0f58cd n.hoffmann
	public static final String COLOR_PARSE_ERROR = "eu.etaxonomy.taxeditor.preferences.colorDefinition.parseError";
88 081d99b4 Patrick Plitzner
89 bcd1d981 n.hoffmann
	public static final String COLOR_DISABLED_EDITOR = "eu.etaxonomy.taxeditor.preferences.colorDefinition.disabledEditor";
90 081d99b4 Patrick Plitzner
91 005c39ab Andreas Kohlbecker
	public static final String COLOR_EDITOR_ERROR = "eu.etaxonomy.taxeditor.preferences.colorDefinition.editorError";
92 e8d37b23 Patrick Plitzner
    public static final String COLOR_MATRIX_SUMMARY_BG = "eu.etaxonomy.taxeditor.preferences.colorDefinition.matrix.summaryBG";
93 081d99b4 Patrick Plitzner
94
95 eca18c8b n.hoffmann
}