Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 053727c3ac7200c73552387991e3cfaef9351ac6 (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
/*******************************************************************************
 * Copyright (c) 2016 Red Hat.
 * 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:
 *     Red Hat - Initial Contribution
 *******************************************************************************/

package org.eclipse.linuxtools.internal.docker.ui.commands;

import java.util.List;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.linuxtools.docker.core.Activator;
import org.eclipse.linuxtools.docker.core.IDockerContainer;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.handlers.HandlerUtil;
import org.eclipse.ui.views.properties.PropertySheet;
import org.eclipse.ui.views.properties.PropertyShowInContext;

/**
 * Command handler to open the selection in the Properties View.
 */
public class ShowInPropertiesViewCommandHandler extends AbstractHandler {

	@Override
	public Object execute(final ExecutionEvent event) {
		final IWorkbenchPart activePart = HandlerUtil.getActivePart(event);
		final List<IDockerContainer> containers = CommandUtils
				.getSelectedContainers(activePart);
		if (containers == null || containers.isEmpty()) {
			return null;
		}
		Display.getDefault().asyncExec(new Runnable() {
			@Override
			public void run() {
				try {
					final PropertySheet propertySheet = (PropertySheet) PlatformUI
							.getWorkbench().getActiveWorkbenchWindow()
							.getActivePage()
							.showView("org.eclipse.ui.views.PropertySheet");
					final PropertyShowInContext showInContext = new PropertyShowInContext(
							activePart,
							HandlerUtil.getCurrentSelection(event));
					propertySheet.show(showInContext);
					// final TabbedPropertySheetPage tabbedPropertySheetPage =
					// activePart
					// .getAdapter(TabbedPropertySheetPage.class);
					// tabbedPropertySheetPage.setFocus();
				} catch (PartInitException e) {
					Activator.logErrorMessage(
							CommandMessages.getString(
									"command.showIn.propertiesView.failure"), //$NON-NLS-1$
							e);

				}
			}
		});
		return null;
	}
}

Back to the top