/******************************************************************************* * Copyright (c) 2015 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.testutils.swt; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.swt.widgets.Display; import org.eclipse.ui.IWorkbench; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.WorkbenchException; import org.junit.rules.ExternalResource; /** * Closes the Welcome page and optionally opens a given perspective */ public class CloseWelcomePageRule extends ExternalResource { public static final String DOCKER_PERSPECTIVE_ID = "org.eclipse.linuxtools.docker.ui.perspective"; public static final String JAVA_PERSPECTIVE_ID = "org.eclipse.jdt.ui.JavaPerspective"; /** the Id of the perspective to open. */ private final String defaultPerspectiveId; /** * Custom constructor with the id of the perspective to open once the * welcome page was closed. * * @param perspectiveId * the id of the perspective to open. */ public CloseWelcomePageRule(final String perspectiveId) { this.defaultPerspectiveId = perspectiveId; } @Override protected void before() { Display.getDefault().syncExec(() -> { final IWorkbench workbench = PlatformUI.getWorkbench(); if (workbench.getIntroManager().getIntro() != null) { workbench.getIntroManager().closeIntro(workbench.getIntroManager().getIntro()); } try { workbench.showPerspective(defaultPerspectiveId, workbench.getActiveWorkbenchWindow()); } catch (WorkbenchException e) { e.printStackTrace(); } }); final String PREF_ENABLE_LAUNCHBAR = "enableLaunchBar"; //$NON-NLS-1$ final String PREF_ENABLE_TARGETSELECTOR = "enableTargetSelector"; //$NON-NLS-1$ final String PREF_ENABLE_BUILDBUTTON = "enableBuildButton"; //$NON-NLS-1$ Display.getDefault().asyncExec(() -> { final IPreferenceStore store = org.eclipse.launchbar.ui.controls.internal.Activator.getDefault() .getPreferenceStore(); store.setValue(PREF_ENABLE_LAUNCHBAR, false); store.setValue(PREF_ENABLE_TARGETSELECTOR, false); store.setValue(PREF_ENABLE_BUILDBUTTON, false); }); } }