]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling/src/org/simantics/modeling/typicals/rules/ProfileMonitorRule.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / typicals / rules / ProfileMonitorRule.java
1 /*******************************************************************************
2  * Copyright (c) 2012 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.modeling.typicals.rules;
13
14 import org.simantics.db.Resource;
15 import org.simantics.db.WriteGraph;
16 import org.simantics.db.exception.DatabaseException;
17 import org.simantics.diagram.stubs.DiagramResource;
18 import org.simantics.modeling.typicals.ITypicalSynchronizationRule;
19 import org.simantics.modeling.typicals.TypicalInfo;
20
21 /**
22  * Synchronizes:
23  * * Grow Profile Monitors Upward?
24  * * Hide Profile Monitors?
25  * * Profile Monitor Offset?
26  * * Profile Monitor Spacing?
27  * 
28  * @author Antti Villberg
29  */
30 public enum ProfileMonitorRule implements ITypicalSynchronizationRule {
31
32     INSTANCE;
33
34     public static ProfileMonitorRule getInstance() {
35         return INSTANCE;
36     }
37
38     @Override
39     public boolean synchronize(WriteGraph graph, Resource template, Resource instance, TypicalInfo info) throws DatabaseException {
40         
41         DiagramResource DIA = DiagramResource.getInstance(graph);
42
43         // TODO consider making sure HasMonitorComponent is up-to-date also even though users should not be able to modify it
44
45         boolean changed = false;
46         boolean result = changed |= Properties.synchronizePrimitivePropertyValue(graph, template, instance, DIA.Element_upProfileMonitors);
47         if(result) info.messageLog.add("\t\t\tgrow profile monitors upward => " + graph.getPossibleRelatedValue(instance, DIA.Element_upProfileMonitors));
48         changed |= result;
49         result = Properties.synchronizePrimitivePropertyValue(graph, template, instance, DIA.Element_hideProfileMonitors);
50         if(result) info.messageLog.add("\t\t\thide profile monitors => " +  graph.getPossibleRelatedValue(instance, DIA.Element_hideProfileMonitors));
51         changed |= result;
52         result = Properties.synchronizePrimitivePropertyValue(graph, template, instance, DIA.Element_profileMonitorOffset);
53         if(result) info.messageLog.add("\t\t\tprofile monitor offset => " + graph.getPossibleRelatedValue(instance, DIA.Element_profileMonitorOffset));
54         changed |= result;
55         result = Properties.synchronizeEnumerationPropertyValue(graph, template, instance, DIA.Element_profileMonitorSpacing);
56         if(result) info.messageLog.add("\t\t\tprofile monitor spacing => " + graph.getPossibleRelatedValue(instance, DIA.Element_profileMonitorSpacing));
57         changed |= result;
58
59         // TODO: sync font
60         //changed |= Properties.synchronizeStructuredPropertyValue(graph, template, instance, G2D.HasFont);
61
62         return changed;
63     }
64
65 }