1 /*******************************************************************************
2 * Copyright (c) 2010, 2011 Association for Decentralized Information Management in
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.browsing.ui.model.labeldecorators;
14 import org.eclipse.jface.resource.ColorDescriptor;
15 import org.eclipse.jface.resource.FontDescriptor;
16 import org.eclipse.swt.SWT;
17 import org.eclipse.swt.graphics.FontData;
18 import org.eclipse.swt.graphics.RGB;
19 import org.simantics.browsing.ui.content.LabelDecorator;
20 import org.simantics.databoard.Bindings;
21 import org.simantics.db.ReadGraph;
22 import org.simantics.db.Resource;
23 import org.simantics.db.exception.DatabaseException;
24 import org.simantics.viewpoint.ontology.ViewpointResource;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
29 * Constant label decoration rule decorates the label in a fixed way.
30 * @author Hannu Niemistö
32 public class ConstantLabelDecorationRule extends AbstractLabelDecorator implements LabelDecorationRule {
34 private static final Logger LOGGER = LoggerFactory.getLogger(ConstantLabelDecorationRule.class);
36 * For headless instances where no Display is available
38 private static final FontDescriptor DEFAULT_FONT_DESCRIPTOR = FontDescriptor.createFrom(new FontData("Arial", 11, 0));
42 ColorDescriptor foregroundColor;
43 ColorDescriptor backgroundColor;
46 public ConstantLabelDecorationRule(String format,
47 ColorDescriptor foregroundColor, ColorDescriptor backgroundColor,
50 String[] split = format.split("%s", 2);
51 if(split.length == 1) {
60 this.foregroundColor = foregroundColor;
61 this.backgroundColor = backgroundColor;
62 this.style = SWT.NORMAL;
64 for(char c : style.toCharArray())
68 this.style |= SWT.BOLD;
72 this.style |= SWT.ITALIC;
75 LOGGER.info("Invalid character '" + c + "' in style string. Only B and I recognized.");
79 private static ColorDescriptor getPossibleRelatedColor(ReadGraph g, Resource subject, Resource predicate) throws DatabaseException {
80 Resource value = g.getPossibleObject(subject, predicate);
83 RGB rgb = g.adapt(value, RGB.class);
84 return ColorDescriptor.createFrom(rgb);
87 public static ConstantLabelDecorationRule create(ReadGraph g, Resource r) throws DatabaseException {
88 ViewpointResource vr = ViewpointResource.getInstance(g);
89 String format = g.getPossibleRelatedValue(r, vr.ConstantLabelDecorationRule_HasFormat, Bindings.STRING);
91 ColorDescriptor foregroundColor = getPossibleRelatedColor(g, r, vr.ConstantLabelDecorationRule_HasForegroundColor);
92 ColorDescriptor backgroundColor = getPossibleRelatedColor(g, r, vr.ConstantLabelDecorationRule_HasBackgroundColor);
94 String style = g.getPossibleRelatedValue(r, vr.ConstantLabelDecorationRule_HasStyle, Bindings.STRING);
96 return new ConstantLabelDecorationRule(
105 public boolean isCompatible(Class<?> contentType) {
110 public LabelDecorator getLabelDecorator(ReadGraph graph, Object content)
111 throws DatabaseException {
116 public String decorateLabel(String label, String column, int itemIndex) {
120 return prefix + label + postfix;
123 @SuppressWarnings("unchecked")
124 public <Color> Color decorateForeground(Color color, String column, int itemIndex) {
125 if(foregroundColor == null)
128 return (Color)foregroundColor;
131 @SuppressWarnings("unchecked")
132 public <Color> Color decorateBackground(Color color, String column, int itemIndex) {
133 if(backgroundColor == null)
136 return (Color)backgroundColor;
139 @SuppressWarnings("unchecked")
140 public <Font> Font decorateFont(Font font, String column, int itemIndex) {
144 FontDescriptor desc = (FontDescriptor)font;
146 desc = DEFAULT_FONT_DESCRIPTOR;
147 return (Font)desc.withStyle(style);