]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.document.swt.core/src/org/simantics/document/swt/core/SWTViews.java
Improvements to modelled SWT documents
[simantics/platform.git] / bundles / org.simantics.document.swt.core / src / org / simantics / document / swt / core / SWTViews.java
index 5ca0c35aeb0a326c5fe554e053ab16673f96a852..3ea5da8a6d76ecfd3762a3133eb4d8e7c2d087b4 100644 (file)
-package org.simantics.document.swt.core;\r
-\r
-import java.util.HashMap;\r
-import java.util.Map;\r
-\r
-import org.eclipse.swt.widgets.Composite;\r
-import org.eclipse.swt.widgets.Control;\r
-import org.simantics.document.server.JSONObject;\r
-import org.simantics.document.server.client.CommandMapping;\r
-import org.simantics.document.server.client.CommandMappingImpl;\r
-import org.simantics.document.server.client.WidgetMapping;\r
-import org.simantics.document.server.client.WidgetMappingImpl;\r
-import org.simantics.document.swt.core.base.ScrolledCompositeContent;\r
-import org.simantics.document.swt.core.widget.BrowserWidget;\r
-import org.simantics.document.swt.core.widget.ButtonWidget;\r
-import org.simantics.document.swt.core.widget.ComboWidget;\r
-import org.simantics.document.swt.core.widget.CommandEventWidget;\r
-import org.simantics.document.swt.core.widget.Explorer;\r
-import org.simantics.document.swt.core.widget.FillComposite;\r
-import org.simantics.document.swt.core.widget.GridCell;\r
-import org.simantics.document.swt.core.widget.GridComposite;\r
-import org.simantics.document.swt.core.widget.LabelWidget;\r
-import org.simantics.document.swt.core.widget.SCLTextEditor;\r
-import org.simantics.document.swt.core.widget.ScrolledCompositeWidget;\r
-import org.simantics.document.swt.core.widget.TrackedTextWidget;\r
-\r
-public class SWTViews {\r
-\r
-       private static WidgetMappingImpl mapping = null;\r
-       \r
-       public static WidgetMapping getMapping() {\r
-               \r
-               if(mapping == null) {\r
-                       mapping = new WidgetMappingImpl();\r
-                       mapping.register("Root", new FillComposite());\r
-                       mapping.register("GridComposite", new GridComposite());\r
-                       mapping.register("ScrolledComposite", new ScrolledCompositeWidget());\r
-                       mapping.register("GridCell", new GridCell());\r
-                       mapping.register("Label", new LabelWidget());\r
-                       mapping.register("Button", new ButtonWidget());\r
-                       mapping.register("TrackedText", new TrackedTextWidget());\r
-                       mapping.register("Combo", new ComboWidget());\r
-                       mapping.register("Explorer", new Explorer());\r
-                       mapping.register("CommandEvent", new CommandEventWidget());\r
-                       mapping.register("Browser", new BrowserWidget());\r
-                       mapping.register("SCLTextEditor", new SCLTextEditor());\r
-               }\r
-               \r
-               return mapping;\r
-               \r
-       }\r
-       \r
-    private static CommandMappingImpl commandMapping = null;\r
-    \r
-    public static CommandMapping getCommandMapping() {\r
-        \r
-        if(commandMapping == null) {\r
-            \r
-            commandMapping = new CommandMappingImpl();\r
-            commandMapping.register("Button", new ButtonWidget.ButtonCommandManager());\r
-            \r
-        }\r
-        \r
-        return commandMapping;\r
-        \r
-    }\r
-\r
-       public static void notifyScrolledComposite(Control c) {\r
-               if(c instanceof ScrolledCompositeContent) {\r
-                       ScrolledCompositeContent content = (ScrolledCompositeContent)c;\r
-                       content.refreshSize();\r
-                       return;\r
-               }\r
-               Composite parent = c.getParent();\r
-               if(parent == null) return;\r
-               notifyScrolledComposite(parent);\r
-       }\r
-       \r
-       public static Map<String, Object> encoded = new HashMap<String, Object>();\r
-       \r
-       public static String encode(JSONObject object, String property, Object data) {\r
-           String key = object.getId() + "#" + property;\r
-           encoded.put(key, data);\r
-           return key;\r
-       }\r
-       \r
-       public static Object decode(String key) {\r
-           return encoded.get(key);\r
-       }\r
-       \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2019 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:
+ *     Semantum Oy - initial API and implementation
+ *******************************************************************************/
+package org.simantics.document.swt.core;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.simantics.document.server.JSONObject;
+import org.simantics.document.server.client.CommandMapping;
+import org.simantics.document.server.client.CommandMappingImpl;
+import org.simantics.document.server.client.Document;
+import org.simantics.document.server.client.WidgetData;
+import org.simantics.document.server.client.WidgetMapping;
+import org.simantics.document.server.client.WidgetMappingImpl;
+import org.simantics.document.server.io.ICommand;
+import org.simantics.document.swt.core.base.ScrolledCompositeContent;
+import org.simantics.document.swt.core.widget.BrowserWidget;
+import org.simantics.document.swt.core.widget.ButtonWidget;
+import org.simantics.document.swt.core.widget.ComboWidget;
+import org.simantics.document.swt.core.widget.CommandEventWidget;
+import org.simantics.document.swt.core.widget.Explorer;
+import org.simantics.document.swt.core.widget.FillComposite;
+import org.simantics.document.swt.core.widget.GridCell;
+import org.simantics.document.swt.core.widget.GridComposite;
+import org.simantics.document.swt.core.widget.LabelWidget;
+import org.simantics.document.swt.core.widget.SCLTextEditor;
+import org.simantics.document.swt.core.widget.ScrolledCompositeWidget;
+import org.simantics.document.swt.core.widget.TrackedTextWidget;
+import org.simantics.utils.datastructures.Pair;
+
+public class SWTViews {
+
+       private static WidgetMappingImpl mapping = null;
+
+       public static WidgetMapping getMapping() {
+
+               if(mapping == null) {
+                       mapping = new WidgetMappingImpl();
+                       mapping.register("Root", new FillComposite());
+                       mapping.register("GridComposite", new GridComposite());
+                       mapping.register("ScrolledComposite", new ScrolledCompositeWidget());
+                       mapping.register("GridCell", new GridCell());
+                       mapping.register("Label", new LabelWidget());
+                       mapping.register("Button", new ButtonWidget());
+                       mapping.register("TrackedText", new TrackedTextWidget());
+                       mapping.register("Combo", new ComboWidget());
+                       mapping.register("Explorer", new Explorer());
+                       mapping.register("CommandEvent", new CommandEventWidget());
+                       mapping.register("Browser", new BrowserWidget());
+                       mapping.register("SCLTextEditor", new SCLTextEditor());
+               }
+
+               return mapping;
+
+       }
+
+       private static CommandMappingImpl commandMapping = null;
+
+       public static CommandMapping getCommandMapping() {
+
+               if(commandMapping == null) {
+                       commandMapping = new CommandMappingImpl();
+                       commandMapping.register("Button", new ButtonWidget.ButtonCommandManager());
+                       commandMapping.register("Explorer", new Explorer.ExplorerCommandManager());
+               }
+
+               return commandMapping;
+
+       }
+
+       public static List<Pair<WidgetData, ICommand>> getTriggeredCommands(Document document, Collection<ICommand> commands, String trigger) {
+               // Nulls should not get this far
+               assert(commands != null);
+               List<Pair<WidgetData, ICommand>> data = new ArrayList<>();
+               for(ICommand c : commands) {
+                       if(c.getCommand() == null || c.getTargetId() == null || c.getTrigger() == null)
+                               continue;
+                       if(trigger.equals(c.getTrigger())) {
+                               WidgetData wd = document.getWidgetData().get(c.getTargetId());
+                               if(wd != null)
+                                       data.add(new Pair<WidgetData, ICommand>(wd, c));
+                       }
+               }
+               return data;
+       }
+
+       public static void notifyScrolledComposite(Control c) {
+               if(c instanceof ScrolledCompositeContent) {
+                       ScrolledCompositeContent content = (ScrolledCompositeContent)c;
+                       content.refreshSize();
+                       return;
+               }
+               Composite parent = c.getParent();
+               if(parent == null) return;
+               notifyScrolledComposite(parent);
+       }
+
+       public static Map<String, Object> encoded = new HashMap<String, Object>();
+
+       public static String encode(JSONObject object, String property, Object data) {
+           String key = object.getId() + "#" + property;
+           encoded.put(key, data);
+           return key;
+       }
+
+       public static Object decode(String key) {
+           return encoded.get(key);
+       }
+
+}