/* This file is part of RouteConverter. RouteConverter is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. RouteConverter is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with RouteConverter; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Copyright (C) 2007 Christian Pesch. All Rights Reserved. */ package slash.navigation.converter.gui.actions; import slash.navigation.converter.gui.RouteConverter; import slash.navigation.gui.Application; import slash.navigation.gui.actions.FrameAction; import slash.navigation.gui.notifications.NotificationManager; import slash.navigation.maps.LocalMap; import slash.navigation.maps.MapManager; import javax.swing.*; import static java.text.MessageFormat.format; /** * {@link Action} that displays a {@link LocalMap} from the {@link MapManager}. * * @author Christian Pesch */ public class DisplayMapAction extends FrameAction { private final JTable table; private final MapManager mapManager; public DisplayMapAction(JTable table, MapManager mapManager) { this.table = table; this.mapManager = mapManager; } private Action getAction() { return Application.getInstance().getContext().getActionManager().get("show-maps"); } private NotificationManager getNotificationManager() { return Application.getInstance().getContext().getNotificationManager(); } public void run() { int selectedRow = table.convertRowIndexToView(table.getSelectedRow()); if (selectedRow == -1) return; LocalMap map = mapManager.getAvailableMapsModel().getMap(selectedRow); mapManager.getDisplayedMapModel().setItem(map); getNotificationManager().showNotification(format(RouteConverter.getBundle().getString("map-displayed"), map.getDescription()), getAction()); } }