X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.utils.ui%2Fsrc%2Forg%2Fsimantics%2Futils%2Fui%2Fcolor%2FColorCanvas.java;fp=bundles%2Forg.simantics.utils.ui%2Fsrc%2Forg%2Fsimantics%2Futils%2Fui%2Fcolor%2FColorCanvas.java;h=cae8d9a32f6e538d71063f34a895e7256fba0e4c;hp=7e8aa1239e5505b067167ff25e41812df982f1f7;hb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;hpb=24e2b34260f219f0d1644ca7a138894980e25b14 diff --git a/bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/color/ColorCanvas.java b/bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/color/ColorCanvas.java index 7e8aa1239..cae8d9a32 100644 --- a/bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/color/ColorCanvas.java +++ b/bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/color/ColorCanvas.java @@ -1,61 +1,61 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management - * in Industry THTH ry. - * 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: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.utils.ui.color; - -import org.eclipse.swt.SWT; -import org.eclipse.swt.events.PaintEvent; -import org.eclipse.swt.events.PaintListener; -import org.eclipse.swt.graphics.GC; -import org.eclipse.swt.graphics.Image; -import org.eclipse.swt.graphics.Rectangle; -import org.eclipse.swt.widgets.Canvas; -import org.eclipse.swt.widgets.Composite; -import org.eclipse.swt.widgets.Display; - -/** - * - * Canvas that shows color gradients - * - * @author Marko Luukkainen - * - */ -public class ColorCanvas extends Canvas{ - Color color; - int style; - - public ColorCanvas(Composite parent, int style) { - // FIXME : use xor operation to get SWT.HORIZONTAL and SWT.VERTICAL - // out of style when it's passed to parent - super(parent,SWT.BORDER); - this.style = style & (SWT.VERTICAL | SWT.HORIZONTAL) ; - addPaintListener(new PaintListener() { - public void paintControl(PaintEvent e) { - GC gc = e.gc; - Rectangle clip = gc.getClipping(); - if (color != null) { - Image image = ColorIconCreator.createImage(color, clip.width,clip.height); - gc.drawImage(image, 0, 0); - image.dispose(); - } else { - gc.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE)); - gc.fillRectangle(clip); - } - } - }); - } - - public void setColor(Color color) { - this.color = color; - this.redraw(); - } - -} +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * 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: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.utils.ui.color; + +import org.eclipse.swt.SWT; +import org.eclipse.swt.events.PaintEvent; +import org.eclipse.swt.events.PaintListener; +import org.eclipse.swt.graphics.GC; +import org.eclipse.swt.graphics.Image; +import org.eclipse.swt.graphics.Rectangle; +import org.eclipse.swt.widgets.Canvas; +import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Display; + +/** + * + * Canvas that shows color gradients + * + * @author Marko Luukkainen + * + */ +public class ColorCanvas extends Canvas{ + Color color; + int style; + + public ColorCanvas(Composite parent, int style) { + // FIXME : use xor operation to get SWT.HORIZONTAL and SWT.VERTICAL + // out of style when it's passed to parent + super(parent,SWT.BORDER); + this.style = style & (SWT.VERTICAL | SWT.HORIZONTAL) ; + addPaintListener(new PaintListener() { + public void paintControl(PaintEvent e) { + GC gc = e.gc; + Rectangle clip = gc.getClipping(); + if (color != null) { + Image image = ColorIconCreator.createImage(color, clip.width,clip.height); + gc.drawImage(image, 0, 0); + image.dispose(); + } else { + gc.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE)); + gc.fillRectangle(clip); + } + } + }); + } + + public void setColor(Color color) { + this.color = color; + this.redraw(); + } + +}