/** * Copyright (C) 2002-2012 The FreeCol Team * * This file is part of FreeCol. * * FreeCol 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. * * FreeCol 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 FreeCol. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.freecol.client.gui.panel; import java.util.ArrayList; import java.util.List; import java.util.logging.Logger; import org.freecolandroid.repackaged.java.awt.event.ActionEvent; import org.freecolandroid.repackaged.javax.swing.JButton; import org.freecolandroid.repackaged.javax.swing.JCheckBox; import org.freecolandroid.repackaged.javax.swing.JLabel; import net.miginfocom.swing.MigLayout; import net.sf.freecol.client.FreeColClient; import net.sf.freecol.client.gui.GUI; import net.sf.freecol.client.gui.i18n.Messages; import net.sf.freecol.common.model.Goods; import net.sf.freecol.common.model.Unit; /** * This panel is used to handle dumping cargo. */ public final class DumpCargoDialog extends FreeColDialog<List<Goods>> { @SuppressWarnings("unused") private static final Logger logger = Logger.getLogger(DumpCargoDialog.class.getName()); private static final String CANCEL = "CANCEL"; private final JLabel header; private final JButton cancelButton; private List<Goods> goodsList; private List<JCheckBox> checkBoxes; /** * The constructor that will add the items to this panel. * @param freeColClient * * @param parent The parent panel. * @param unit an <code>Unit</code> value */ public DumpCargoDialog(FreeColClient freeColClient, GUI gui, Unit unit) { super(freeColClient, gui); header = new JLabel(Messages.message("dumpCargo")); header.setFont(smallHeaderFont); add(header); cancelButton = new JButton(Messages.message("cancel")); cancelButton.setActionCommand(CANCEL); cancelButton.addActionListener(this); goodsList = unit.getGoodsList(); checkBoxes = new ArrayList<JCheckBox>(goodsList.size()); setLayout(new MigLayout("wrap 1", "", "")); for (Goods goods : goodsList) { // TODO: find out why check box is not displayed when icon // is present JCheckBox checkBox = new JCheckBox(Messages.message(goods.getLabel(true)), //getLibrary().getGoodsImageIcon(goods.getType()), true); checkBoxes.add(checkBox); add(checkBox); } add(okButton, "newline 20, span, split 2, tag ok"); add(cancelButton, "tag cancel"); setSize(getPreferredSize()); } /** * This function analyses an event and calls the right methods to take care * of the user's requests. * * @param event The incoming ActionEvent. */ public void actionPerformed(ActionEvent event) { String command = event.getActionCommand(); if (OK.equals(command)) { List<Goods> dump = new ArrayList<Goods>(); for (int index = 0; index < checkBoxes.size(); index++) { if (checkBoxes.get(index).isSelected()) { dump.add(goodsList.get(index)); } } setResponse(dump); } else { setResponse(null); } } }