// Botão que faz o "zoom out" no retângulo corrente // Last edited on 2001-05-22 21:20:22 by stolfi import java.awt.Event; import PlinFerramenta; import InterfaceGrafica; public class PlinFerramentaZoomOut extends PlinFerramenta { public PlinFerramentaZoomOut(String iconDir, InterfaceGrafica z) { this.initFerramenta(iconDir + "/" + "zoom-", "ZoomOut", z); } public boolean action(Event evt, Object obj) { raiz.comandoZoom(0.5); return(true); } }