blob: 93fb4a03dddbbccc4527d329d7eb0cabb623e677 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ui.synchronize.actions;
import org.eclipse.core.runtime.Adapters;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.resource.CompositeImageDescriptor;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.util.PropertyChangeEvent;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.graphics.Point;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.internal.ui.TeamUIPlugin;
import org.eclipse.team.internal.ui.Utils;
import org.eclipse.team.internal.ui.synchronize.SubscriberRefreshSchedule;
import org.eclipse.team.internal.ui.synchronize.SynchronizeView;
import org.eclipse.team.ui.synchronize.AbstractSynchronizeParticipant;
import org.eclipse.team.ui.synchronize.ISynchronizeParticipant;
import org.eclipse.team.ui.synchronize.ISynchronizeParticipantReference;
import org.eclipse.team.ui.synchronize.ISynchronizeView;
import org.eclipse.team.ui.synchronize.SubscriberParticipant;
public class ShowSynchronizeParticipantAction extends Action implements IPropertyChangeListener {
private ISynchronizeParticipantReference fPage;
private ISynchronizeView fView;
@Override
public void run() {
try {
if (!fPage.equals(fView.getParticipant())) {
fView.display(fPage.getParticipant());
}
} catch (TeamException e) {
Utils.handle(e);
}
}
/**
* Constructs an action to display the given synchronize participant in the
* synchronize view.
*
* @param view the synchronize view in which the given page is contained
* @param ref the participant to show
*/
public ShowSynchronizeParticipantAction(ISynchronizeView view, ISynchronizeParticipantReference ref) {
super(Utils.shortenText(SynchronizeView.MAX_NAME_LENGTH, ref.getDisplayName()), IAction.AS_RADIO_BUTTON);
fPage = ref;
fView = view;
setImageDescriptor( new ParticipantOverlay( ref));
try {
fPage.getParticipant().addPropertyChangeListener( this);
} catch( TeamException e) {
Utils.handle(e);
}
}
@Override
public void propertyChange( PropertyChangeEvent event) {
String property = event.getProperty();
if( AbstractSynchronizeParticipant.P_PINNED.equals( property) ||
AbstractSynchronizeParticipant.P_SCHEDULED.equals(property)) {
setImageDescriptor(new ParticipantOverlay( fPage));
}
}
private static final class ParticipantOverlay extends CompositeImageDescriptor {
private ImageData pinnedData = TeamUIPlugin.getImageDescriptor("ovr/pinned_ovr.png").getImageData(); //$NON-NLS-1$
private ImageData scheduledData = TeamUIPlugin.getImageDescriptor("ovr/waiting_ovr.png").getImageData(); //$NON-NLS-1$
private ImageData imageData;
private ISynchronizeParticipant participant;
private ParticipantOverlay(ISynchronizeParticipantReference ref) {
try {
this.participant = ref.getParticipant();
this.imageData = ref.getDescriptor().getImageDescriptor().getImageData();
} catch (TeamException ex) {
TeamUIPlugin.log(ex);
}
}
@Override
protected void drawCompositeImage(int width, int height) {
drawImage(this.imageData, 0, 0);
if (this.participant.isPinned()) {
drawImage(pinnedData, this.imageData.width - pinnedData.width, 0);
}
if (this.participant instanceof SubscriberParticipant) {
SubscriberParticipant participant = ( SubscriberParticipant) this.participant;
SubscriberRefreshSchedule schedule = participant.getRefreshSchedule();
if(schedule!=null && schedule.isEnabled()) {
drawImage(scheduledData, 0, 0);
}
} else {
SubscriberRefreshSchedule schedule = Adapters.adapt(participant, SubscriberRefreshSchedule.class);
if(schedule!=null && schedule.isEnabled()) {
drawImage(scheduledData, 0, 0);
}
}
}
@Override
protected Point getSize() {
return new Point(this.imageData.width, this.imageData.height);
}
}
}