]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/utils/QualityHints.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scenegraph / src / org / simantics / scenegraph / utils / QualityHints.java
index 3db475e0ddb86f8340eba94190fa58f2220a0a8c..6522bfefbe9e17808df469317d5f3981108f81eb 100644 (file)
@@ -1,85 +1,85 @@
-/*******************************************************************************\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.scenegraph.utils;\r
-\r
-import java.awt.Graphics2D;\r
-import java.awt.RenderingHints;\r
-\r
-/**\r
- * Rendering quality hints\r
- * \r
- * @author Toni Kalajainen\r
- */\r
-public class QualityHints {\r
-\r
-    public static final QualityHints HIGH_QUALITY_HINTS =\r
-        new QualityHints(RenderingHints.VALUE_RENDER_QUALITY,\r
-                RenderingHints.VALUE_ANTIALIAS_ON,\r
-                RenderingHints.VALUE_TEXT_ANTIALIAS_ON,\r
-                RenderingHints.VALUE_INTERPOLATION_BICUBIC);\r
-\r
-    public static final QualityHints GOOD_QUALITY_HINTS =\r
-        new QualityHints(RenderingHints.VALUE_RENDER_DEFAULT,\r
-                RenderingHints.VALUE_ANTIALIAS_ON,\r
-                RenderingHints.VALUE_TEXT_ANTIALIAS_ON,\r
-                RenderingHints.VALUE_INTERPOLATION_BILINEAR);\r
-\r
-    public static final QualityHints LOW_QUALITY_HINTS =\r
-        new QualityHints(RenderingHints.VALUE_RENDER_SPEED,\r
-                RenderingHints.VALUE_ANTIALIAS_OFF,\r
-                RenderingHints.VALUE_TEXT_ANTIALIAS_OFF,\r
-                RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);\r
-\r
-    public static QualityHints getHints(Quality forQuality) {\r
-        if (forQuality == null)\r
-            return null;\r
-        switch (forQuality) {\r
-            case GOOD: return GOOD_QUALITY_HINTS;\r
-            case HIGH: return HIGH_QUALITY_HINTS;\r
-            case LOW: return LOW_QUALITY_HINTS;\r
-            default: return HIGH_QUALITY_HINTS;\r
-        }\r
-    }\r
-\r
-    public final Object rendering;\r
-    public final Object antialiasing;\r
-    public final Object textAntiAliasing;\r
-    public final Object interpolation;\r
-\r
-    public QualityHints(Object rendering, Object antialiasing, Object textAntiAliasing, Object interpolation) {\r
-        this.rendering = rendering;\r
-        this.antialiasing = antialiasing;\r
-        this.textAntiAliasing = textAntiAliasing;\r
-        this.interpolation = interpolation;\r
-    }\r
-\r
-    public void setQuality(Graphics2D g) {\r
-        if (rendering!=null)\r
-            g.setRenderingHint(RenderingHints.KEY_RENDERING, rendering);\r
-        if (antialiasing!=null)\r
-            g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, antialiasing);\r
-        if (textAntiAliasing!=null)\r
-            g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, textAntiAliasing);\r
-        if (interpolation!=null)\r
-            g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, interpolation);\r
-    }\r
-\r
-    public static QualityHints getQuality(Graphics2D g) {\r
-        return new QualityHints(\r
-                g.getRenderingHint(RenderingHints.KEY_RENDERING),\r
-                g.getRenderingHint(RenderingHints.KEY_ANTIALIASING),\r
-                g.getRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING),\r
-                g.getRenderingHint(RenderingHints.KEY_INTERPOLATION)\r
-        );\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.scenegraph.utils;
+
+import java.awt.Graphics2D;
+import java.awt.RenderingHints;
+
+/**
+ * Rendering quality hints
+ * 
+ * @author Toni Kalajainen
+ */
+public class QualityHints {
+
+    public static final QualityHints HIGH_QUALITY_HINTS =
+        new QualityHints(RenderingHints.VALUE_RENDER_QUALITY,
+                RenderingHints.VALUE_ANTIALIAS_ON,
+                RenderingHints.VALUE_TEXT_ANTIALIAS_ON,
+                RenderingHints.VALUE_INTERPOLATION_BICUBIC);
+
+    public static final QualityHints GOOD_QUALITY_HINTS =
+        new QualityHints(RenderingHints.VALUE_RENDER_DEFAULT,
+                RenderingHints.VALUE_ANTIALIAS_ON,
+                RenderingHints.VALUE_TEXT_ANTIALIAS_ON,
+                RenderingHints.VALUE_INTERPOLATION_BILINEAR);
+
+    public static final QualityHints LOW_QUALITY_HINTS =
+        new QualityHints(RenderingHints.VALUE_RENDER_SPEED,
+                RenderingHints.VALUE_ANTIALIAS_OFF,
+                RenderingHints.VALUE_TEXT_ANTIALIAS_OFF,
+                RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);
+
+    public static QualityHints getHints(Quality forQuality) {
+        if (forQuality == null)
+            return null;
+        switch (forQuality) {
+            case GOOD: return GOOD_QUALITY_HINTS;
+            case HIGH: return HIGH_QUALITY_HINTS;
+            case LOW: return LOW_QUALITY_HINTS;
+            default: return HIGH_QUALITY_HINTS;
+        }
+    }
+
+    public final Object rendering;
+    public final Object antialiasing;
+    public final Object textAntiAliasing;
+    public final Object interpolation;
+
+    public QualityHints(Object rendering, Object antialiasing, Object textAntiAliasing, Object interpolation) {
+        this.rendering = rendering;
+        this.antialiasing = antialiasing;
+        this.textAntiAliasing = textAntiAliasing;
+        this.interpolation = interpolation;
+    }
+
+    public void setQuality(Graphics2D g) {
+        if (rendering!=null)
+            g.setRenderingHint(RenderingHints.KEY_RENDERING, rendering);
+        if (antialiasing!=null)
+            g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, antialiasing);
+        if (textAntiAliasing!=null)
+            g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, textAntiAliasing);
+        if (interpolation!=null)
+            g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, interpolation);
+    }
+
+    public static QualityHints getQuality(Graphics2D g) {
+        return new QualityHints(
+                g.getRenderingHint(RenderingHints.KEY_RENDERING),
+                g.getRenderingHint(RenderingHints.KEY_ANTIALIASING),
+                g.getRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING),
+                g.getRenderingHint(RenderingHints.KEY_INTERPOLATION)
+        );
+    }
+
+}