Package org.eclipse.ui.internal.quickaccess

Source Code of org.eclipse.ui.internal.quickaccess.QuickAccessHandler

/*******************************************************************************
* Copyright (c) 2005, 2007 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.eclipse.ui.internal.quickaccess;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.jface.dialogs.PopupDialog;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.handlers.HandlerUtil;

/**
* Handler for quick access pop-up dialog, showing UI elements such as editors,
* views, commands.
*
*/
public class QuickAccessHandler extends AbstractHandler {

  private IWorkbenchWindow window;

  /**
   * The constructor.
   */
  public QuickAccessHandler() {
  }

  public Object execute(ExecutionEvent executionEvent) {

    window = HandlerUtil.getActiveWorkbenchWindow(executionEvent);
    if (window == null) {
      return null;
    }

    final PopupDialog popupDialog = new QuickAccessDialog(window, executionEvent.getCommand());
    popupDialog.open();
    return null;
  }

}
TOP

Related Classes of org.eclipse.ui.internal.quickaccess.QuickAccessHandler

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.