/*=============================================================================#
# Copyright (c) 2005-2016 Stephan Wahlbrink (WalWare.de) 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:
# Stephan Wahlbrink - initial API and implementation
#=============================================================================*/
package de.walware.statet.nico.ui.console;
import org.eclipse.jface.action.Action;
import de.walware.ecommons.ui.SharedMessages;
import de.walware.ecommons.ui.SharedUIResources;
public class ScrollLockAction extends Action {
public interface Receiver {
public void setAutoScroll(boolean enabled);
}
private final Receiver fView;
public ScrollLockAction(final Receiver view, final boolean initialChecked) {
setText(SharedMessages.ToggleScrollLockAction_name);
setToolTipText(SharedMessages.ToggleScrollLockAction_tooltip);
setImageDescriptor(SharedUIResources.getImages().getDescriptor(SharedUIResources.LOCTOOL_SCROLLLOCK_IMAGE_ID));
fView = view;
setChecked(initialChecked);
}
@Override
public void run() {
fView.setAutoScroll(!isChecked());
}
}