001/* =========================================================== 002 * Orson Charts : a 3D chart library for the Java(tm) platform 003 * =========================================================== 004 * 005 * (C)opyright 2013-2016, by Object Refinery Limited. All rights reserved. 006 * 007 * http://www.object-refinery.com/orsoncharts/index.html 008 * 009 * This program is free software: you can redistribute it and/or modify 010 * it under the terms of the GNU General Public License as published by 011 * the Free Software Foundation, either version 3 of the License, or 012 * (at your option) any later version. 013 * 014 * This program is distributed in the hope that it will be useful, 015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 017 * GNU General Public License for more details. 018 * 019 * You should have received a copy of the GNU General Public License 020 * along with this program. If not, see <http://www.gnu.org/licenses/>. 021 * 022 * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 023 * Other names may be trademarks of their respective owners.] 024 * 025 * If you do not wish to be bound by the terms of the GPL, an alternative 026 * commercial license can be purchased. For details, please see visit the 027 * Orson Charts home page: 028 * 029 * http://www.object-refinery.com/orsoncharts/index.html 030 * 031 */ 032 033package com.orsoncharts.graphics3d.swing; 034 035import com.orsoncharts.Resources; 036 037import java.awt.event.ActionEvent; 038 039import javax.swing.AbstractAction; 040import javax.swing.Action; 041 042import com.orsoncharts.util.ArgChecks; 043 044/** 045 * An action that performs a zoom-to-fit operation. 046 * <br><br> 047 * NOTE: This class is serializable, but the serialization format is subject 048 * to change in future releases and should not be relied upon for persisting 049 * instances of this class. 050 */ 051@SuppressWarnings("serial") 052public class ZoomToFitAction extends AbstractAction { 053 054 /** The panel that the action applies to. */ 055 private Panel3D panel; 056 057 /** 058 * Creates a new action associated with the specified panel. 059 * 060 * @param panel the panel ({@code null} not permitted). 061 * @param fontAwesome use icon? 062 */ 063 public ZoomToFitAction(Panel3D panel, boolean fontAwesome) { 064 super("\uf065"); 065 ArgChecks.nullNotPermitted(panel, "panel"); 066 this.panel = panel; 067 if (!fontAwesome) { 068 putValue(Action.NAME, Resources.localString("ZOOM_TO_FIT")); 069 } 070 putValue(Action.ACTION_COMMAND_KEY, "ZOOM_TO_FIT"); 071 putValue(Action.SHORT_DESCRIPTION, Resources.localString("ZOOM_TO_FIT")); 072 } 073 074 /** 075 * Performs the zoom to fit action. 076 * 077 * @param e the action event. 078 */ 079 @Override 080 public void actionPerformed(ActionEvent e) { 081 this.panel.zoomToFit(); 082 } 083 084} 085