Package org.erlide.ui.actions

Source Code of org.erlide.ui.actions.ErlangSearchActionGroup

/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.erlide.ui.actions;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.not;
import static org.hamcrest.Matchers.nullValue;

import org.eclipse.jface.action.IMenuManager;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchSite;
import org.eclipse.ui.actions.ActionContext;
import org.eclipse.ui.actions.ActionGroup;
import org.eclipse.ui.part.Page;
import org.erlide.ui.editors.erl.AbstractErlangEditor;
import org.erlide.ui.internal.search.ImplementorsSearchGroup;
import org.erlide.ui.internal.search.ReferencesSearchGroup;

/**
* Action group that adds erlang search actions to a context menu and the global
* menu bar.
*
* <p>
* This class may be instantiated; it is not intended to be subclassed.
* </p>
*
* @since 2.0
*/
public class ErlangSearchActionGroup extends ActionGroup {

    private AbstractErlangEditor fEditor;

    private final ReferencesSearchGroup fReferencesGroup;

    // private ReadReferencesSearchGroup fReadAccessGroup;
    // private WriteReferencesSearchGroup fWriteAccessGroup;
    // private DeclarationsSearchGroup fDeclarationsGroup;
    private final ImplementorsSearchGroup fImplementorsGroup;

    // private OccurrencesSearchGroup fOccurrencesGroup;

    /**
     * Creates a new <code>ErlangSearchActionGroup</code>. The group requires
     * that the selection provided by the part's selection provider is of type
     * <code>org.eclipse.jface.viewers.IStructuredSelection</code>.
     *
     * @param part
     *            the view part that owns this action group
     */
    public ErlangSearchActionGroup(final IViewPart part) {
        this(part.getViewSite());
    }

    /**
     * Creates a new <code>ErlangSearchActionGroup</code>. The group requires
     * that the selection provided by the page's selection provider is of type
     * <code>org.eclipse.jface.viewers.IStructuredSelection</code>.
     *
     * @param page
     *            the page that owns this action group
     */
    public ErlangSearchActionGroup(final Page page) {
        this(page.getSite());
    }

    /**
     * Note: This constructor is for internal use only. Clients should not call
     * this constructor.
     *
     * @param editor
     *            the Erlang editor
     */
    public ErlangSearchActionGroup(final AbstractErlangEditor editor) {
        assertThat(editor, is(not(nullValue())));
        fEditor = editor;

        fReferencesGroup = new ReferencesSearchGroup(fEditor);
        // fReadAccessGroup = new ReadReferencesSearchGroup(fEditor);
        // fWriteAccessGroup = new WriteReferencesSearchGroup(fEditor);
        // fDeclarationsGroup = new DeclarationsSearchGroup(fEditor);
        fImplementorsGroup = new ImplementorsSearchGroup(fEditor);
        // fOccurrencesGroup = new OccurrencesSearchGroup(fEditor);
    }

    public ErlangSearchActionGroup(final IWorkbenchSite site) {
        fReferencesGroup = new ReferencesSearchGroup(site);
        // fReadAccessGroup = new ReadReferencesSearchGroup(site);
        // fWriteAccessGroup = new WriteReferencesSearchGroup(site);
        // fDeclarationsGroup = new DeclarationsSearchGroup(site);
        fImplementorsGroup = new ImplementorsSearchGroup(site);
        // fOccurrencesGroup = new OccurrencesSearchGroup(site);
    }

    /*
     * Method declared on ActionGroup.
     */
    @Override
    public void setContext(final ActionContext context) {
        fReferencesGroup.setContext(context);
        // fDeclarationsGroup.setContext(context);
        fImplementorsGroup.setContext(context);
        // fReadAccessGroup.setContext(context);
        // fWriteAccessGroup.setContext(context);
        // fOccurrencesGroup.setContext(context);
    }

    /*
     * Method declared on ActionGroup.
     */
    @Override
    public void fillActionBars(final IActionBars actionBar) {
        super.fillActionBars(actionBar);
        fReferencesGroup.fillActionBars(actionBar);
        // fDeclarationsGroup.fillActionBars(actionBar);
        fImplementorsGroup.fillActionBars(actionBar);
        // fReadAccessGroup.fillActionBars(actionBar);
        // fWriteAccessGroup.fillActionBars(actionBar);
        // fOccurrencesGroup.fillActionBars(actionBar);
    }

    /*
     * Method declared on ActionGroup.
     */
    @Override
    public void fillContextMenu(final IMenuManager menu) {
        super.fillContextMenu(menu);

        // if (PreferenceConstants.getPreferenceStore().getBoolean(
        // PreferenceConstants.SEARCH_USE_REDUCED_MENU)) {
        fReferencesGroup.fillContextMenu(menu);
        fImplementorsGroup.fillContextMenu(menu);
        // fDeclarationsGroup.fillContextMenu(menu);
        //
        // if (fEditor == null) {
        // fImplementorsGroup.fillContextMenu(menu);
        // fReadAccessGroup.fillContextMenu(menu);
        // fWriteAccessGroup.fillContextMenu(menu);
        // }
        // } else {
        // IMenuManager target = menu;
        // IMenuManager searchSubMenu = null;
        // if (fEditor != null) {
        // final String groupName = "S&earch";
        // searchSubMenu = new MenuManager(groupName,
        // ITextEditorActionConstants.GROUP_FIND);
        // searchSubMenu.add(new GroupMarker(
        // ITextEditorActionConstants.GROUP_FIND));
        // target = searchSubMenu;
        // // }
        //
        // fReferencesGroup.fillContextMenu(target);
        // // fDeclarationsGroup.fillContextMenu(target);
        // // fImplementorsGroup.fillContextMenu(target);
        // // fReadAccessGroup.fillContextMenu(target);
        // // fWriteAccessGroup.fillContextMenu(target);
        //
        // // if (searchSubMenu != null) {
        // // fOccurrencesGroup.fillContextMenu(target);
        // // searchSubMenu.add(new Separator());
        // // }
        //
        // // no other way to find out if we have added items.
        // if (searchSubMenu != null && searchSubMenu.getItems().length > 1) {
        // menu.appendToGroup(ITextEditorActionConstants.GROUP_FIND,
        // searchSubMenu);
        // }
        // }
    }

    /*
     * Method declared on ActionGroup.
     */
    @Override
    public void dispose() {
        fReferencesGroup.dispose();
        // fDeclarationsGroup.dispose();
        fImplementorsGroup.dispose();
        // fReadAccessGroup.dispose();
        // fWriteAccessGroup.dispose();
        // fOccurrencesGroup.dispose();

        super.dispose();
    }

}
TOP

Related Classes of org.erlide.ui.actions.ErlangSearchActionGroup

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.