]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/labeldecorators/ForegroundColorDecorationRule.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / labeldecorators / ForegroundColorDecorationRule.java
1 /*******************************************************************************
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.model.labeldecorators;
13
14 import org.eclipse.jface.resource.ColorDescriptor;
15 import org.eclipse.swt.graphics.RGB;
16 import org.simantics.browsing.ui.content.LabelDecorator;
17 import org.simantics.db.ReadGraph;
18 import org.simantics.db.exception.DatabaseException;
19
20 /**
21  * Constant label rule gives a fixed label to a node.
22  * @author Hannu Niemistö
23  */
24 public class ForegroundColorDecorationRule extends AbstractLabelDecorator implements LabelDecorationRule {
25
26     ColorDescriptor color;
27     
28     public ForegroundColorDecorationRule(RGB rgb) {
29         this(ColorDescriptor.createFrom(rgb));
30     }
31     
32     public ForegroundColorDecorationRule(ColorDescriptor color) {
33         this.color = color;
34     }
35
36     @Override
37     public boolean isCompatible(Class<?> contentType) {
38         return true;
39     }
40
41     @Override
42     public LabelDecorator getLabelDecorator(ReadGraph graph, Object content)
43             throws DatabaseException {
44         return this;
45     }
46     
47     @SuppressWarnings("unchecked")
48     public <Color> Color decorateForeground(Color color, String column, int itemIndex) {
49         return (Color)this.color;
50     }
51
52 }