Package gov.nasa.arc.mct.gui.impl

Source Code of gov.nasa.arc.mct.gui.impl.ActionContextImpl

/*******************************************************************************
* Mission Control Technologies, Copyright (c) 2009-2012, United States Government
* as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved.
*
* The MCT platform is licensed under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* MCT includes source code licensed under additional open source licenses. See
* the MCT Open Source Licenses file included with this distribution or the About
* MCT Licenses dialog available at runtime from the MCT Help menu for additional
* information.
*******************************************************************************/
package gov.nasa.arc.mct.gui.impl;

import gov.nasa.arc.mct.components.AbstractComponent;
import gov.nasa.arc.mct.gui.ActionContext;
import gov.nasa.arc.mct.gui.CompositeViewManifestationProvider;
import gov.nasa.arc.mct.gui.View;
import gov.nasa.arc.mct.gui.ViewProvider;
import gov.nasa.arc.mct.gui.housing.MCTHousing;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Set;

import javax.swing.JComponent;
import javax.swing.SwingUtilities;

/**
* This class defines a context for executing actions.
*
* @author nija.shi@nasa.gov
*/
public class ActionContextImpl implements ActionContext {
   
    private AbstractComponent targetComponent;
    private Set<JComponent> targetViewComponents = new LinkedHashSet<JComponent>();
    private MCTHousing targetHousing;
    private Collection<View> selectedManifestations = new LinkedHashSet<View>();
    private AbstractComponent inspectorComponent;

    /**
     * Gets the target component for an action.
     *
     * @return the target component
     */
    public AbstractComponent getTargetComponent() {
        if (targetComponent == null) {
            if (selectedManifestations.isEmpty())
                return targetHousing != null ? targetHousing.getWindowComponent() : null;
            else
                return selectedManifestations.iterator().next().getManifestedComponent();
        }
        return targetComponent;
    }

    /**
     * Sets the target component for an action.
     *
     * @param targetComponent the new target component
     */
    public void setTargetComponent(AbstractComponent targetComponent) {
        this.targetComponent = targetComponent;
    }

    /**
     * Gets the target view manifestation, a Swing component
     * that will be affected by the action. If there is more
     * than one target view manifestation, return the first.
     *
     * @return the target view manifestation
     */
    public JComponent getTargetViewComponent() {
        if (targetViewComponents.isEmpty()) { return null; }
        return targetViewComponents.iterator().next();
    }
   
    /**
     * Gets the set of all target view manifestations.
     *
     * @return the target view manifestations
     */
    public Set<JComponent> getAllTargetViewComponent() {
        return targetViewComponents;
    }

    /**
     * Adds another target view manifestation for an action.
     *
     * @param targetViewComponent the new target view manifestation
     */
    public void addTargetViewComponent(JComponent targetViewComponent) {
        this.targetViewComponents.add(targetViewComponent);

        if (targetViewComponent instanceof View)
            selectedManifestations.add((View) targetViewComponent);
    }
   
    /**
     * Gets the housing containing the target component for an action.
     *
     * @return the target housing
     */
    public MCTHousing getTargetHousing() {
        return targetHousing;
    }

    /**
     * Sets the target housing for an action.
     *
     * @param targetHousing the new target housing
     */
    public void setTargetHousing(MCTHousing targetHousing) {
        this.targetHousing = targetHousing;
    }
   
    @Override
    public Collection<View> getSelectedManifestations() {
        return Collections.unmodifiableCollection(selectedManifestations);
    }
   
    /** An empty action context used as a sentinel value. */
    public static final ActionContextImpl NULL_CONTEXT = new ActionContextImpl();

    @Override
    public View getWindowManifestation() {
        return targetHousing.getHousedViewManifestation();
    }
   
    @Override
    public Collection<View> getRootManifestations() {
        View housingManifestation = getWindowManifestation();
        if (housingManifestation == null) { return Collections.emptyList(); }
       
        Collection<View> viewManifestations = new ArrayList<View>();
       
        CompositeViewManifestationProvider compositeProvider = (CompositeViewManifestationProvider)SwingUtilities.getAncestorOfClass(CompositeViewManifestationProvider.class, housingManifestation);
        Collection<ViewProvider> manifestationsProviders = compositeProvider.getHousedManifestationProviders();
        for (ViewProvider manifestProvider: manifestationsProviders) {
            viewManifestations.add(manifestProvider.getHousedViewManifestation());
        }
       
        return viewManifestations;
    }

    /**
     * Gets the inspector component this is set.
     * @return instance of the inspector or null if the inspector is not active
     */
    public AbstractComponent getInspectorComponent() {
        return inspectorComponent;
    }

    /**
     * Sets the inspector component if the action is triggered from the inspector.
     * @param inspectorComponent to set as the inspector component
     */
    public void setInspectorComponent(AbstractComponent inspectorComponent) {
        this.inspectorComponent = inspectorComponent;
    }
}
TOP

Related Classes of gov.nasa.arc.mct.gui.impl.ActionContextImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.