2015-10-22 00:05:29 +02:00
|
|
|
/*******************************************************************************
|
2015-10-22 00:25:12 +02:00
|
|
|
* Copyright (c) 2015 MINRES Technologies GmbH and others.
|
2015-10-22 00:05:29 +02:00
|
|
|
* 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:
|
2015-10-22 00:25:12 +02:00
|
|
|
* MINRES Technologies GmbH - initial API and implementation
|
2015-10-22 00:05:29 +02:00
|
|
|
*******************************************************************************/
|
|
|
|
package com.minres.scviewer.e4.application.handlers;
|
|
|
|
|
|
|
|
import org.eclipse.e4.core.di.annotations.Execute;
|
2015-11-22 12:17:17 +01:00
|
|
|
import org.eclipse.e4.ui.model.application.MApplication;
|
|
|
|
import org.eclipse.e4.ui.model.application.ui.basic.MWindow;
|
|
|
|
import org.eclipse.e4.ui.workbench.modeling.EModelService;
|
2015-10-22 00:05:29 +02:00
|
|
|
import org.eclipse.swt.widgets.Shell;
|
|
|
|
|
|
|
|
public class AboutHandler {
|
2015-11-22 12:17:17 +01:00
|
|
|
|
2018-10-14 08:59:17 +02:00
|
|
|
static final String DIALOG_ID="com.minres.scviewer.e4.application.dialog.aboutscviewer";
|
|
|
|
|
2015-10-22 00:05:29 +02:00
|
|
|
@Execute
|
2015-11-22 12:17:17 +01:00
|
|
|
public void execute(Shell shell, MApplication app, MWindow window, EModelService ms /*@Named("mdialog01.dialog.0") MDialog dialog*/) {
|
2018-10-14 21:29:09 +02:00
|
|
|
MWindow dialog = (MWindow) ms.find(DIALOG_ID, app); //$NON-NLS-1$
|
2015-11-22 12:17:17 +01:00
|
|
|
dialog.setToBeRendered(true);
|
|
|
|
dialog.setToBeRendered(false);
|
2015-10-22 00:05:29 +02:00
|
|
|
}
|
2015-11-22 12:17:17 +01:00
|
|
|
|
2015-10-22 00:05:29 +02:00
|
|
|
}
|