Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2d480acc3babed11c38ee559fdd060b2a9f5243e (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
/*****************************************************************************
 * Copyright (c) 2016 CEA LIST 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:
 *  Mickael ADAM (ALL4TEC) - mickael.adam@all4tec.net -  Initial API and implementation
 *****************************************************************************/

package org.eclipse.papyrus.views.documentation.handlers;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.papyrus.infra.ui.util.EditorHelper;
import org.eclipse.papyrus.views.documentation.Activator;
import org.eclipse.papyrus.views.documentation.views.DocumentationView;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.handlers.HandlerUtil;

/**
 * Handler used to show the 'documentation' view.
 */
public class DocumentationViewHandler extends AbstractHandler {

	/**
	 * {@inheritDoc}
	 * 
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
	 */
	@Override
	public Object execute(final ExecutionEvent event) throws ExecutionException {
		openViewAndSetSelection(HandlerUtil.getCurrentStructuredSelection(event));
		return null;
	}

	/**
	 * Open the view 'documentation' and set the selection
	 *
	 * @param structuredSelection
	 *            The objects to search.
	 */
	public void openViewAndSetSelection(final IStructuredSelection structuredSelection) {
		DocumentationView documentationView = openDocumentationView();
		documentationView.setSelectedElement(structuredSelection);
	}

	/**
	 * Show the view 'documentation'.
	 */
	public DocumentationView openDocumentationView() {
		try {

			final IWorkbenchPage activePage = EditorHelper.getActiveWindow().getActivePage();
			return (DocumentationView) activePage.showView(DocumentationView.ID, null, IWorkbenchPage.VIEW_VISIBLE);
		} catch (final PartInitException e) {
			Activator.logError(e.getMessage());
			return null;
		}
	}
}

Back to the top