1 /*******************************************************************************
2 * Copyright (c) 2012 Association for Decentralized Information Management in
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.modeling.template2d.ui.actions;
14 import org.simantics.db.Resource;
15 import org.simantics.db.WriteGraph;
16 import org.simantics.db.common.request.WriteRequest;
17 import org.simantics.db.exception.DatabaseException;
18 import org.simantics.db.layer0.adapter.ActionFactory;
19 import org.simantics.modeling.template2d.ontology.Template2dResource;
20 import org.simantics.ui.SimanticsUI;
22 public class ChangePageOrientation implements ActionFactory {
25 public Runnable create(Object target) {
26 if(!(target instanceof Resource))
28 final Resource parent = (Resource)target;
30 return new Runnable() {
33 SimanticsUI.getSession().asyncRequest(new WriteRequest() {
35 public void perform(WriteGraph g) throws DatabaseException {
37 Template2dResource TEMPLATE2D = Template2dResource.getInstance(g);
39 if (!g.isInstanceOf(parent, TEMPLATE2D.DrawingTemplate))
42 Resource oldOrientation = g.getPossibleObject(parent, TEMPLATE2D.HasPageOrientation);
43 if (oldOrientation == null)
46 g.deny(parent, TEMPLATE2D.HasPageOrientation);
47 if (oldOrientation.equals(TEMPLATE2D.PageOrientation_Landscape))
48 g.claim(parent, TEMPLATE2D.HasPageOrientation, TEMPLATE2D.PageOrientation_Portrait);
50 g.claim(parent, TEMPLATE2D.HasPageOrientation, TEMPLATE2D.PageOrientation_Landscape);