blob: 1b8058169f652b5d242840a37f80d06a954e00e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.ide.ui;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.views.navigator.ResourceNavigator;
/**
* @author Mik Kersten
*/
public class IdeUiUtil {
public static final String ID_VIEW_SYNCHRONIZE = "org.eclipse.team.sync.views.SynchronizeView"; //$NON-NLS-1$
public static final String ID_NAVIGATOR = "org.eclipse.ui.views.ResourceNavigator"; //$NON-NLS-1$
public static IViewPart getView(String id) {
IWorkbenchPage activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
if (activePage == null) {
return null;
}
IViewPart view = activePage.findView(id);
return view;
}
// public static void forceSynchronizeViewUpdate() {
// IViewPart view = getView(ID_VIEW_SYNCHRONIZE);
// if (view instanceof SynchronizeView) {
// SynchronizeView syncView = (SynchronizeView)view;
// IPage currentPage = syncView.getCurrentPage();
// if (currentPage instanceof ModelSynchronizePage) {
// ModelSynchronizePage modelPage = (ModelSynchronizePage)currentPage;
//// String currentProvider = (String)modelPage.getConfiguration().getProperty(ModelSynchronizeParticipant.P_VISIBLE_MODEL_PROVIDER);
//// modelPage.getConfiguration().setProperty(
//// ModelSynchronizeParticipant.P_VISIBLE_MODEL_PROVIDER,
//// ResourceModelProvider.RESOURCE_MODEL_PROVIDER_ID);
//
// modelPage.getConfiguration().setProperty(
// ModelSynchronizeParticipant.P_VISIBLE_MODEL_PROVIDER,
// ChangeSetModelProvider.ID);
//
// }
// }
// }
public static ResourceNavigator getNavigatorFromActivePage() {
if (PlatformUI.getWorkbench() == null || PlatformUI.getWorkbench().getActiveWorkbenchWindow() == null) {
return null;
}
IWorkbenchPage activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
if (activePage == null) {
return null;
}
IViewPart view = activePage.findView(ID_NAVIGATOR);
if (view instanceof ResourceNavigator) {
return (ResourceNavigator) view;
}
return null;
}
}