]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
c073516ce2e991d1296a17218f5c03bb11edb866
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.sysdyn.ui.trend.chart.properties;\r
13 \r
14 import org.eclipse.jface.fieldassist.SimpleContentProposalProvider;\r
15 import org.eclipse.swt.widgets.Control;\r
16 import org.simantics.browsing.ui.swt.widgets.impl.Widget;\r
17 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
18 import org.simantics.db.Resource;\r
19 import org.simantics.db.management.ISessionContext;\r
20 import org.simantics.db.procedure.Listener;\r
21 import org.simantics.ui.SimanticsUI;\r
22 import org.simantics.ui.utils.AdaptionUtils;\r
23 \r
24 /**\r
25  * Provides all variables a model contains\r
26  * \r
27  * @author Teemu Lempinen\r
28  *\r
29  */\r
30 public class VariableProposalProvider extends SimpleContentProposalProvider implements Widget {\r
31 \r
32     /**\r
33      * Provides all variables a model contains. Given resource needs to be\r
34      * part of a model (i.e. using PartOf leads eventually to a SysdynModel).\r
35      *  \r
36      * @param control Control that is using this provider\r
37      * @param resource A resource that is part of a model\r
38      */\r
39     public VariableProposalProvider(final Control control, WidgetSupport support) {\r
40         super(new String [] {});\r
41         support.register(this);\r
42         this.control = control;\r
43     }\r
44 \r
45     private Resource resource;\r
46     private Control control;\r
47     \r
48     @Override\r
49     public void setInput(ISessionContext context, Object input) {\r
50 \r
51         final Resource resource = AdaptionUtils.adaptToSingle(input, Resource.class);\r
52         if(resource == null)\r
53             return;\r
54         this.resource = resource;\r
55         \r
56         SimanticsUI.getSession().asyncRequest(\r
57                 new AllVariablesOfModel(resource)\r
58         , new Listener<String[]>() {\r
59 \r
60             @Override\r
61             public void execute(String[] result) {\r
62                 setProposals(result);\r
63             }\r
64 \r
65             @Override\r
66             public void exception(Throwable t) {\r
67                 t.printStackTrace();\r
68             }\r
69 \r
70             @Override\r
71             public boolean isDisposed() {\r
72                 return control == null || \r
73                         control.isDisposed() || \r
74                         !resource.equals(VariableProposalProvider.this.resource);\r
75             }\r
76 \r
77         }); \r
78         \r
79     }\r
80     \r
81 }\r