blob: d6e979f716bed55bf9c15f324acff7ffcda593e0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.ui.synchronize;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IKeyBindingService;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.IWorkbenchSite;
/**
* A site which provides access to the context in which this page
* is being displayed. Instances of this interface serve a similar purpose
* to <code>IWorkbenchSite</code> instances but is provided as a separate
* objects to allow clients to access the different site types
* (view, editor, dialog) using a common interface. This interface also provides
* access to the part for the site because this is required by some UI
* components. Clients should not need to access the part.
* <p>
* Clients can determine the type of workbench site by doing <code>instanceof</code>
* checks on the object returned by <code>getWorkbenchSite</code>. Similar
* <code>instanceof</code> checks can be done with the part.
* <p>
* Clients are not intended to implement this interface
*
* @since 3.0
*/
public interface ISynchronizePageSite {
/**
* Return the workbench site for the page
* or <code>null</code> if a workbench site is not available (e.g. if
* the page is being shown in a dialog).
* @return the workbench site for the page or <code>null</code>
*/
IWorkbenchSite getWorkbenchSite();
/**
* Return the workbench part for the page
* or <code>null</code> if a workbench part is not available (e.g. if
* the page is being shown in a dialog).
* @return the workbench part for the page or <code>null</code>
*/
IWorkbenchPart getPart();
/**
* Returns the shell for this site.
* @return the shell for this site
*/
Shell getShell();
/**
* Get the selection provider that gives access to the selection
* of the synchronize page associated with this page site.
* @return the selection provider for the page
*/
ISelectionProvider getSelectionProvider();
/**
* Sets the selection provider for this workbench site.
* @param provider the selection provider, or <code>null</code> to clear it
*/
void setSelectionProvider(ISelectionProvider provider);
/**
* Get the keybinding service for the site or <code>null</code>
* if one is not available.
* @return the keybinding service for the site or <code>null</code>
* if one is not available
*/
IKeyBindingService getKeyBindingService();
/**
* Give the page focus.
*/
void setFocus();
/**
* Return a settings node that can be used by the
* page to save state. A <code>null</code> value
* is returned if the site does not allow for
* persisted settings.
* @return a settings node or <code>null</code>
*/
IDialogSettings getPageSettings();
/**
* Returns the action bars for this synchronize page site.
*
* @return the action bars
*/
IActionBars getActionBars();
/**
* Returns whether the site is associated with a page being
* shown in a modal dialog
* @return whether the site is associated with a page being
* shown in a modal dialog
*/
boolean isModal();
}