/*******************************************************************************
* Copyright (c) 2000, 2010, 2012 IBM Corporation, Gerhardt Informatics Kft. 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
* Gerhardt Informatics Kft. - GEFGWT port
*******************************************************************************/
package org.eclipse.gef.ui.actions;
import org.eclipse.gef.Disposable;
import org.eclipse.gef.editparts.ZoomListener;
import org.eclipse.gef.editparts.ZoomManager;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.resource.ImageDescriptor;
/**
* Base zoom action. Sub-classes can perform zoom in or zoom out.
*
* @author hudsonr
* @see org.eclipse.gef.ui.actions.ZoomInAction
* @see org.eclipse.gef.ui.actions.ZoomOutAction
*/
abstract class ZoomAction extends Action implements ZoomListener, Disposable {
/**
* The ZoomManager used to zoom in or out
*/
protected ZoomManager zoomManager;
/**
* Constructor
*
* @param text
* the action's text, or <code>null</code> if there is no text
* @param image
* the action's image, or <code>null</code> if there is no image
* @param zoomManager
* the ZoomManager used to zoom in or out
*/
public ZoomAction(String text, ImageDescriptor image,
ZoomManager zoomManager) {
super(text, image);
this.zoomManager = zoomManager;
zoomManager.addZoomListener(this);
}
/**
* @see org.eclipse.gef.Disposable#dispose()
*/
public void dispose() {
zoomManager.removeZoomListener(this);
}
}