Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9c7765a5c83eb3dd5c3f94e9858c55273c491f44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*******************************************************************************
 * Copyright (c) 2012 THALES GLOBAL SERVICES.
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.sirius.diagram.ui.business.api.query;

import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.diagram.core.util.ViewUtil;
import org.eclipse.gmf.runtime.notation.Diagram;
import org.eclipse.sirius.business.api.session.CustomDataConstants;
import org.eclipse.sirius.diagram.DDiagram;
import org.eclipse.sirius.diagram.business.api.query.DDiagramQuery;
import org.eclipse.sirius.diagram.business.api.query.DiagramDescriptionQuery;
import org.eclipse.sirius.ext.base.Option;
import org.eclipse.sirius.ext.base.Options;
import org.eclipse.sirius.viewpoint.description.AnnotationEntry;

/**
 * A class aggregating all the graphical queries (read-only!) having a
 * {@link DDiagram} as a starting point.
 * 
 * @author lredor
 * 
 */
public class DDiagramGraphicalQuery extends DDiagramQuery {

    /**
     * Create a new query.
     * 
     * @param dDiagram
     *            the element to query.
     */
    public DDiagramGraphicalQuery(DDiagram dDiagram) {
        super(dDiagram);
    }

    /**
     * Return the GMF diagram associated with this DDiagram.
     * 
     * @return the GMF diagram associated with this DDiagram.
     */
    public Option<Diagram> getAssociatedGMFDiagram() {
        for (final AnnotationEntry annotation : new DDiagramQuery(dDiagram).getAnnotation(CustomDataConstants.GMF_DIAGRAMS)) {
            EObject eObject = annotation.getData();
            if (eObject instanceof Diagram) {
                final Diagram diagramInResource = (Diagram) eObject;
                final EObject semanticElement = ViewUtil.resolveSemanticElement(diagramInResource);
                if (semanticElement == dDiagram) {
                    return Options.newSome(diagramInResource);
                }
            }
        }
        return Options.newNone();
    }

    /**
     * Return true if the header must be enabled, false otherwise.
     * 
     * @return true if the header must be enabled, false otherwise.
     */
    public boolean isHeaderSectionEnabled() {
        boolean isHeaderSectionEnabled = false;

        if (dDiagram.getDescription() != null) {
            isHeaderSectionEnabled = new DiagramDescriptionQuery(dDiagram.getDescription()).isHeaderSectionEnabled();
        }
        return isHeaderSectionEnabled;
    }
}

Back to the top