]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/WidgetImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / widgets / WidgetImpl.java
index 5fe27380f8970ffcac5e302224f539ad13e10eb1..b80dd1e110c1ff6da54ca1b3a461bf75c9f4eda4 100644 (file)
@@ -1,83 +1,83 @@
-/*******************************************************************************\r
- * Copyright (c) 2012 Association for Decentralized Information Management in\r
- * 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.browsing.ui.swt.widgets;\r
-\r
-import org.eclipse.swt.graphics.Color;\r
-import org.eclipse.swt.graphics.Font;\r
-import org.eclipse.swt.widgets.Control;\r
-import org.simantics.Simantics;\r
-import org.simantics.browsing.ui.swt.widgets.impl.Widget;\r
-import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
-import org.simantics.db.procedure.Listener;\r
-import org.simantics.db.request.ReadInterface;\r
-import org.simantics.ui.colors.Colors;\r
-\r
-abstract public class WidgetImpl implements Widget {\r
-\r
-       protected final WidgetSupport support;\r
-       \r
-       public WidgetImpl(WidgetSupport support) {\r
-               this.support = support;\r
-       }\r
-       \r
-       public abstract Control getControl();\r
-       \r
-       public void setFont(Font font) {\r
-               getControl().setFont(font);\r
-       }\r
-       \r
-       public void setBackground(Color color) {\r
-               getControl().setBackground(color);\r
-       }\r
-       \r
-    public <T> void setBackground(final ReadInterface<org.simantics.datatypes.adt.Color> read) {\r
-       \r
-       Simantics.getSession().async(read, new Listener<org.simantics.datatypes.adt.Color>() {\r
-\r
-               @Override\r
-               public void exception(Throwable t) {\r
-                       t.printStackTrace();\r
-               }\r
-\r
-               @Override\r
-               public void execute(final org.simantics.datatypes.adt.Color color) {\r
-\r
-                       if(isDisposed()) return;\r
-\r
-                       getControl().getDisplay().asyncExec(new Runnable() {\r
-\r
-                               @Override\r
-                               public void run() {\r
-                                       getControl().setBackground(Colors.swt(getControl().getDisplay(), color));\r
-                               }\r
-\r
-                       });\r
-               }\r
-\r
-               @Override\r
-               public boolean isDisposed() {\r
-                       return getControl().isDisposed();\r
-               }\r
-\r
-       });\r
-\r
-    }\r
-       \r
-       public void setForeground(Color color) {\r
-               getControl().setForeground(color);\r
-       }\r
-       \r
-    public void setLayoutData(Object layoutData) {\r
-       getControl().setLayoutData(layoutData);\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2012 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.browsing.ui.swt.widgets;
+
+import org.eclipse.swt.graphics.Color;
+import org.eclipse.swt.graphics.Font;
+import org.eclipse.swt.widgets.Control;
+import org.simantics.Simantics;
+import org.simantics.browsing.ui.swt.widgets.impl.Widget;
+import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;
+import org.simantics.db.procedure.Listener;
+import org.simantics.db.request.ReadInterface;
+import org.simantics.ui.colors.Colors;
+
+abstract public class WidgetImpl implements Widget {
+
+       protected final WidgetSupport support;
+       
+       public WidgetImpl(WidgetSupport support) {
+               this.support = support;
+       }
+       
+       public abstract Control getControl();
+       
+       public void setFont(Font font) {
+               getControl().setFont(font);
+       }
+       
+       public void setBackground(Color color) {
+               getControl().setBackground(color);
+       }
+       
+    public <T> void setBackground(final ReadInterface<org.simantics.datatypes.adt.Color> read) {
+       
+       Simantics.getSession().async(read, new Listener<org.simantics.datatypes.adt.Color>() {
+
+               @Override
+               public void exception(Throwable t) {
+                       t.printStackTrace();
+               }
+
+               @Override
+               public void execute(final org.simantics.datatypes.adt.Color color) {
+
+                       if(isDisposed()) return;
+
+                       getControl().getDisplay().asyncExec(new Runnable() {
+
+                               @Override
+                               public void run() {
+                                       getControl().setBackground(Colors.swt(getControl().getDisplay(), color));
+                               }
+
+                       });
+               }
+
+               @Override
+               public boolean isDisposed() {
+                       return getControl().isDisposed();
+               }
+
+       });
+
+    }
+       
+       public void setForeground(Color color) {
+               getControl().setForeground(color);
+       }
+       
+    public void setLayoutData(Object layoutData) {
+       getControl().setLayoutData(layoutData);
+    }
+
+}