]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
2f6f20f44bca4dba8284d6867b9f1856fd25f673
[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.jfreechart.chart.properties;\r
13 \r
14 import java.util.ArrayList;\r
15 import java.util.Collection;\r
16 \r
17 import org.eclipse.jface.fieldassist.SimpleContentProposalProvider;\r
18 import org.eclipse.swt.widgets.Control;\r
19 import org.simantics.browsing.ui.swt.widgets.impl.Widget;\r
20 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
21 import org.simantics.db.Resource;\r
22 import org.simantics.db.management.ISessionContext;\r
23 import org.simantics.db.procedure.Listener;\r
24 import org.simantics.ui.SimanticsUI;\r
25 import org.simantics.ui.utils.AdaptionUtils;\r
26 import org.simantics.utils.datastructures.Pair;\r
27 \r
28 /**\r
29  * Provides all variables a model contains\r
30  * \r
31  * @author Teemu Lempinen\r
32  *\r
33  */\r
34 public class VariableProposalProvider extends IdLabelProposalProvider implements Widget {\r
35 \r
36     /**\r
37      * Provides all variables a model contains. Given resource needs to be\r
38      * part of a model (i.e. using PartOf leads eventually to a SysdynModel).\r
39      *  \r
40      * @param control Control that is using this provider\r
41      * @param resource A resource that is part of a model\r
42      */\r
43     public VariableProposalProvider(final Control control, WidgetSupport support) {\r
44         super(new ArrayList<ChartVariable>());// super(String [] {});\r
45         support.register(this);\r
46         this.control = control;\r
47     }\r
48 \r
49     private Resource resource;\r
50     private Control control;\r
51     \r
52     @Override\r
53     public void setInput(ISessionContext context, Object input) {\r
54 \r
55         final Resource resource = AdaptionUtils.adaptToSingle(input, Resource.class);\r
56         if(resource == null)\r
57             return;\r
58         this.resource = resource;\r
59         \r
60         SimanticsUI.getSession().asyncRequest(\r
61                 new AllVariablesOfModel(resource)\r
62         , new Listener<Collection<ChartVariable>>() {\r
63 \r
64             @Override\r
65             public void execute(Collection<ChartVariable> result) {\r
66                 setProposals(result);\r
67             }\r
68 \r
69             @Override\r
70             public void exception(Throwable t) {\r
71                 t.printStackTrace();\r
72             }\r
73 \r
74             @Override\r
75             public boolean isDisposed() {\r
76                 return control == null || \r
77                         control.isDisposed() || \r
78                         !resource.equals(VariableProposalProvider.this.resource);\r
79             }\r
80 \r
81         }); \r
82         \r
83     }\r
84     \r
85 }\r