Merge branch 'release/5.18.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.local / src / main / java / eu / etaxonomy / taxeditor / local / handler / ShowRemotingLoginWindowHandlerE4.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.local.handler;
10
11 import javax.inject.Named;
12
13 import org.eclipse.e4.core.di.annotations.Execute;
14 import org.eclipse.e4.ui.services.IServiceConstants;
15 import org.eclipse.e4.ui.workbench.modeling.ESelectionService;
16 import org.eclipse.jface.viewers.StructuredSelection;
17 import org.eclipse.swt.SWT;
18 import org.eclipse.swt.widgets.Shell;
19
20 import eu.etaxonomy.taxeditor.event.EventUtility;
21 import eu.etaxonomy.taxeditor.event.WorkbenchEventConstants;
22 import eu.etaxonomy.taxeditor.local.server.RemotingLoginDialogLocal;
23
24 /**
25 * @author pplitzner
26 * @date 10.10.2017
27 */
28 public class ShowRemotingLoginWindowHandlerE4 {
29
30 @Execute
31 public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell, ESelectionService selService) {
32
33 RemotingLoginDialogLocal loginDialog = new RemotingLoginDialogLocal(shell,
34 SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
35 loginDialog.open();
36 EventUtility.postEvent(WorkbenchEventConstants.RECONNECT, null);
37 selService.setSelection(new StructuredSelection());
38 }
39 }