blob: e438cbf02e14a6145ad920715d0c8708db942ede [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 IBM Corporation and others.
*
* 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.internal.handlers;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.jface.preference.PreferenceDialog;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.handlers.HandlerUtil;
import org.eclipse.ui.internal.dialogs.PropertyDialog;
/**
* @since 3.4
*
*/
public class PropertyDialogHandler extends AbstractHandler {
private String initialPageId = null;
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
PreferenceDialog dialog;
Object element = null;
IStructuredSelection currentSelection = HandlerUtil.getCurrentStructuredSelection(event);
IWorkbenchWindow activeWorkbenchWindow = HandlerUtil.getActiveWorkbenchWindow(event);
Shell shell;
element = currentSelection.getFirstElement();
if (activeWorkbenchWindow != null){
shell = activeWorkbenchWindow.getShell();
dialog = PropertyDialog.createDialogOn(shell,
initialPageId, element);
if (dialog != null) {
dialog.open();
}
}
return null;
}
}