/* * UFO Saved Game Editor * Copyright (C) 2010 Chris Davoren <chris@rubikscomplex.net> * * This program 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 3 of the License, or * (at your option) any later version. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */ package net.rubikscomplex.ufosge.gui.table; import java.util.ArrayList; import javax.swing.DefaultCellEditor; import javax.swing.JComboBox; import javax.swing.JTable; import javax.swing.ListSelectionModel; import javax.swing.table.TableCellEditor; import javax.swing.table.TableCellRenderer; import net.rubikscomplex.ufosge.data.SavedGame; import net.rubikscomplex.ufosge.data.UPItem; /** * * @author Chris Davoren <chris@rubikscomplex.net> */ public class UPItemListTable extends JTable { protected SavedGame game; protected UPItemTableModel tableModel; protected DefaultCellEditor researchFlagEditor; protected GreyingCellRenderer greyingCellRenderer; public UPItemListTable(SavedGame game, ArrayList<UPItem> uCache) { this.game = game; tableModel = new UPItemTableModel(game, uCache); setModel(tableModel); JComboBox researchFlagBox = new JComboBox(); researchFlagBox.addItem(UPItem.researchFlagToString(UPItem.RESEARCH_NOT_YET)); researchFlagBox.addItem(UPItem.researchFlagToString(UPItem.RESEARCH_DONE)); researchFlagEditor = new DefaultCellEditor(researchFlagBox); greyingCellRenderer = new GreyingCellRenderer(); setSelectionMode(ListSelectionModel.SINGLE_SELECTION); } @Override public TableCellRenderer getCellRenderer(int row, int column) { return greyingCellRenderer; } @Override public TableCellEditor getCellEditor(int row, int column) { if(column == UPItemTableModel.COLUMN_RESEARCHED) { return researchFlagEditor; } else { return super.getCellEditor(row, column); } } public void setCache(ArrayList<UPItem> uCache) { tableModel.setCache(uCache); } }