]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/property/svg/SVGElementComposite.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / property / svg / SVGElementComposite.java
index 084569f0293870bde66d3469cffe869344b177cf..59a894113138d409fe228fa373cf887755157e9b 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2011 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.modeling.ui.property.svg;\r
-\r
-import java.util.Collection;\r
-\r
-import org.eclipse.jface.dialogs.IInputValidator;\r
-import org.eclipse.jface.layout.GridDataFactory;\r
-import org.eclipse.jface.resource.ColorDescriptor;\r
-import org.eclipse.swt.SWT;\r
-import org.eclipse.swt.graphics.Color;\r
-import org.eclipse.swt.graphics.RGB;\r
-import org.eclipse.swt.widgets.Composite;\r
-import org.eclipse.swt.widgets.Display;\r
-import org.eclipse.ui.IWorkbenchSite;\r
-import org.simantics.browsing.ui.swt.widgets.DefaultColorProvider;\r
-import org.simantics.browsing.ui.swt.widgets.Label;\r
-import org.simantics.browsing.ui.swt.widgets.TrackedText;\r
-import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.management.ISessionContext;\r
-import org.simantics.diagram.stubs.DiagramResource;\r
-import org.simantics.selectionview.ComparableTabContributor;\r
-import org.simantics.selectionview.ConfigurationComposite;\r
-import org.simantics.selectionview.TabContribution;\r
-import org.simantics.ui.selection.WorkbenchSelectionUtils;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class SVGElementComposite extends ConfigurationComposite {\r
-\r
-       public static TabContribution<Object> svgTabContribution() {\r
-               return new TabContribution<Object>() {\r
-\r
-                       @Override\r
-                       public boolean accept(ReadGraph graph, Object input) throws DatabaseException {\r
-                               Resource res = WorkbenchSelectionUtils.getPossibleResource(input);\r
-                               if(res == null) return false;\r
-                               return graph.isInstanceOf(res, DiagramResource.getInstance(graph).SVGElement);\r
-                       }\r
-\r
-                       @Override\r
-                       public void contribute(ReadGraph graph, Object selection, Collection<ComparableTabContributor> result)\r
-                                       throws DatabaseException {\r
-                               Resource res = WorkbenchSelectionUtils.getPossibleResource(selection);\r
-                               if(res != null) {\r
-                                       if(graph.isInstanceOf(res, DiagramResource.getInstance(graph).SVGElement)) {\r
-                                               result.add(make(res, 100.0, "SVG"));\r
-                                       }\r
-                               }\r
-                       }\r
-               };\r
-       }\r
-       \r
-    public static ComparableTabContributor make(Resource input, double priority, String tabLabel) {\r
-        return make(new SVGInput(input), priority, tabLabel);\r
-    }\r
-\r
-    public static ComparableTabContributor make(SVGInput input, double priority, String tabLabel) {\r
-        return new ComparableTabContributor(new SVGElementComposite(), priority, input, tabLabel);\r
-    }\r
-\r
-    public void create(final Composite body, IWorkbenchSite site, final ISessionContext context, final WidgetSupport support) {\r
-\r
-        final Display display = body.getDisplay();\r
-\r
-        body.setBackground(display.getSystemColor(SWT.COLOR_WHITE));\r
-\r
-        Label expressionHeader = new Label(body, support, 0);\r
-        expressionHeader.setText("SVG markup");\r
-        expressionHeader.setFont(smallFont);\r
-        expressionHeader.setBackground(display.getSystemColor(SWT.COLOR_WHITE));\r
-        GridDataFactory.fillDefaults().grab(true, false).span(2, 1).align(SWT.CENTER, SWT.CENTER).applyTo(expressionHeader.getWidget());\r
-\r
-        TrackedText expression = new TrackedText(body, support, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL);\r
-        expression.setSelectAllOnStartEdit(false);\r
-        expression.setColorProvider(new DefaultColorProvider(expression.getResourceManager()) {\r
-\r
-            private final ColorDescriptor inactiveColor = ColorDescriptor.createFrom(new RGB(220, 220, 255));\r
-\r
-            @Override\r
-            public Color getInactiveBackground() {\r
-                return resourceManager.createColor(inactiveColor);\r
-            }\r
-\r
-        });\r
-        expression.setTextFactory(new SVGTextFactory());\r
-        expression.addModifyListener(new SVGModifier());\r
-        expression.setInputValidator(new IInputValidator() {\r
-            @Override\r
-            public String isValid(String document) {\r
-                try {\r
-                    XMLPrettyPrinter.parseDocument(document);\r
-                    return null;\r
-                } catch (Exception e) {\r
-                    return e.getMessage();\r
-                }\r
-            }\r
-        });\r
-        GridDataFactory.fillDefaults().grab(true, true).applyTo(expression.getWidget());\r
-\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2011 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.modeling.ui.property.svg;
+
+import java.util.Collection;
+
+import org.eclipse.jface.dialogs.IInputValidator;
+import org.eclipse.jface.layout.GridDataFactory;
+import org.eclipse.jface.resource.ColorDescriptor;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.graphics.Color;
+import org.eclipse.swt.graphics.RGB;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Display;
+import org.eclipse.ui.IWorkbenchSite;
+import org.simantics.browsing.ui.swt.widgets.DefaultColorProvider;
+import org.simantics.browsing.ui.swt.widgets.Label;
+import org.simantics.browsing.ui.swt.widgets.TrackedText;
+import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.management.ISessionContext;
+import org.simantics.diagram.stubs.DiagramResource;
+import org.simantics.selectionview.ComparableTabContributor;
+import org.simantics.selectionview.ConfigurationComposite;
+import org.simantics.selectionview.TabContribution;
+import org.simantics.ui.selection.WorkbenchSelectionUtils;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class SVGElementComposite extends ConfigurationComposite {
+
+       public static TabContribution<Object> svgTabContribution() {
+               return new TabContribution<Object>() {
+
+                       @Override
+                       public boolean accept(ReadGraph graph, Object input) throws DatabaseException {
+                               Resource res = WorkbenchSelectionUtils.getPossibleResource(input);
+                               if(res == null) return false;
+                               return graph.isInstanceOf(res, DiagramResource.getInstance(graph).SVGElement);
+                       }
+
+                       @Override
+                       public void contribute(ReadGraph graph, Object selection, Collection<ComparableTabContributor> result)
+                                       throws DatabaseException {
+                               Resource res = WorkbenchSelectionUtils.getPossibleResource(selection);
+                               if(res != null) {
+                                       if(graph.isInstanceOf(res, DiagramResource.getInstance(graph).SVGElement)) {
+                                               result.add(make(res, 100.0, "SVG"));
+                                       }
+                               }
+                       }
+               };
+       }
+       
+    public static ComparableTabContributor make(Resource input, double priority, String tabLabel) {
+        return make(new SVGInput(input), priority, tabLabel);
+    }
+
+    public static ComparableTabContributor make(SVGInput input, double priority, String tabLabel) {
+        return new ComparableTabContributor(new SVGElementComposite(), priority, input, tabLabel);
+    }
+
+    public void create(final Composite body, IWorkbenchSite site, final ISessionContext context, final WidgetSupport support) {
+
+        final Display display = body.getDisplay();
+
+        body.setBackground(display.getSystemColor(SWT.COLOR_WHITE));
+
+        Label expressionHeader = new Label(body, support, 0);
+        expressionHeader.setText("SVG markup");
+        expressionHeader.setFont(smallFont);
+        expressionHeader.setBackground(display.getSystemColor(SWT.COLOR_WHITE));
+        GridDataFactory.fillDefaults().grab(true, false).span(2, 1).align(SWT.CENTER, SWT.CENTER).applyTo(expressionHeader.getWidget());
+
+        TrackedText expression = new TrackedText(body, support, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL);
+        expression.setSelectAllOnStartEdit(false);
+        expression.setColorProvider(new DefaultColorProvider(expression.getResourceManager()) {
+
+            private final ColorDescriptor inactiveColor = ColorDescriptor.createFrom(new RGB(220, 220, 255));
+
+            @Override
+            public Color getInactiveBackground() {
+                return resourceManager.createColor(inactiveColor);
+            }
+
+        });
+        expression.setTextFactory(new SVGTextFactory());
+        expression.addModifyListener(new SVGModifier());
+        expression.setInputValidator(new IInputValidator() {
+            @Override
+            public String isValid(String document) {
+                try {
+                    XMLPrettyPrinter.parseDocument(document);
+                    return null;
+                } catch (Exception e) {
+                    return e.getMessage();
+                }
+            }
+        });
+        GridDataFactory.fillDefaults().grab(true, true).applyTo(expression.getWidget());
+
+    }
+
+}