]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/color/ColorIconCreator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / color / ColorIconCreator.java
index 63bc150fd786606a280d8d286a062a6523279f3c..15d6fddeba14c165b2a24f760a17352d63461db9 100644 (file)
@@ -1,63 +1,63 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.utils.ui.color;\r
-\r
-import org.eclipse.swt.SWT;\r
-import org.eclipse.swt.graphics.GC;\r
-import org.eclipse.swt.graphics.Image;\r
-import org.eclipse.swt.widgets.Display;\r
-\r
-\r
-\r
-/**\r
- * \r
- * @author Marko Luukkainen\r
- *\r
- */\r
-public class ColorIconCreator {\r
-\r
-       /**\r
-        * Creates square image with defined color<br>\r
-        * Images created this way must be disposed<br>\r
-        * @param color\r
-        * @param size\r
-        * @return\r
-        */\r
-       public static Image createImage(Color color, int size, int style) {\r
-               return createImage(color,size,size,style);\r
-       }\r
-       /**\r
-        * Creates rectangle image with defined color<br>\r
-        * Images created this way must be disposed<br>\r
-        * @param color\r
-        * @param width\r
-        * @param height\r
-        * @return\r
-        */\r
-       public static Image createImage(Color color, int width, int height, int style) {\r
-               Display display = Display.getCurrent();\r
-        Image image = new Image(display, width, height);\r
-        GC gc = new GC(image);\r
-        org.eclipse.swt.graphics.Color swtColor = new org.eclipse.swt.graphics.Color(display, color.getR(), color.getG(), color.getB());\r
-        gc.setBackground(swtColor);\r
-        gc.setForeground(swtColor);\r
-        gc.fillRectangle(0, 0, width, height);\r
-        if ((style & SWT.BORDER) > 0) {\r
-               gc.setForeground(display.getSystemColor(SWT.COLOR_BLACK));\r
-               gc.drawRectangle(0, 0, width-1, height-1);\r
-        }\r
-        swtColor.dispose();\r
-        gc.dispose();\r
-               return image;\r
-       }\r
-       \r
-}\r
+/*******************************************************************************
+ * 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.graphics.GC;
+import org.eclipse.swt.graphics.Image;
+import org.eclipse.swt.widgets.Display;
+
+
+
+/**
+ * 
+ * @author Marko Luukkainen
+ *
+ */
+public class ColorIconCreator {
+
+       /**
+        * Creates square image with defined color<br>
+        * Images created this way must be disposed<br>
+        * @param color
+        * @param size
+        * @return
+        */
+       public static Image createImage(Color color, int size, int style) {
+               return createImage(color,size,size,style);
+       }
+       /**
+        * Creates rectangle image with defined color<br>
+        * Images created this way must be disposed<br>
+        * @param color
+        * @param width
+        * @param height
+        * @return
+        */
+       public static Image createImage(Color color, int width, int height, int style) {
+               Display display = Display.getCurrent();
+        Image image = new Image(display, width, height);
+        GC gc = new GC(image);
+        org.eclipse.swt.graphics.Color swtColor = new org.eclipse.swt.graphics.Color(display, color.getR(), color.getG(), color.getB());
+        gc.setBackground(swtColor);
+        gc.setForeground(swtColor);
+        gc.fillRectangle(0, 0, width, height);
+        if ((style & SWT.BORDER) > 0) {
+               gc.setForeground(display.getSystemColor(SWT.COLOR_BLACK));
+               gc.drawRectangle(0, 0, width-1, height-1);
+        }
+        swtColor.dispose();
+        gc.dispose();
+               return image;
+       }
+       
+}