/* * UFO Saved Game Editor * Copyright (C) 2010 Christopher Davoren * * 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; import net.rubikscomplex.ufosge.gui.table.CraftTableModel; import java.awt.Dimension; import javax.swing.BoxLayout; import javax.swing.DefaultCellEditor; import javax.swing.JComboBox; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import net.rubikscomplex.ufosge.data.Craft; import net.rubikscomplex.ufosge.data.SavedGame; /** * * @author Chris Davoren */ public class CraftEditPanel extends JPanel { CraftTableModel craftModel; SavedGame game; public CraftEditPanel(SavedGame game) { super(); this.game = game; craftModel = new CraftTableModel(game); JTable craftTable = new JTable(craftModel); craftTable.setFillsViewportHeight(true); JScrollPane tableScrollPane = new JScrollPane(craftTable); JComboBox craftTypeBox = new JComboBox(); String[] craftTypes = Craft.getHumanTypeNames(); for(int i = 0; i < craftTypes.length; i++) { craftTypeBox.addItem(craftTypes[i]); } JComboBox statusTypeBox = new JComboBox(); String[] statusTypes = Craft.getStatusNames(); for(int i = 0; i < statusTypes.length; i++) { statusTypeBox.addItem(statusTypes[i]); } JComboBox weaponTypeBox = new JComboBox(); String[] weaponTypes = Craft.getWeaponTypeNames(); for(int i = 0; i < weaponTypes.length; i++) { weaponTypeBox.addItem(weaponTypes[i]); } craftTable.getColumnModel().getColumn(CraftTableModel.COLUMN_TYPE).setCellEditor(new DefaultCellEditor(craftTypeBox)); craftTable.getColumnModel().getColumn(CraftTableModel.COLUMN_STATUS).setCellEditor(new DefaultCellEditor(statusTypeBox)); craftTable.getColumnModel().getColumn(CraftTableModel.COLUMN_LEFT_WEAPON).setCellEditor(new DefaultCellEditor(weaponTypeBox)); craftTable.getColumnModel().getColumn(CraftTableModel.COLUMN_RIGHT_WEAPON).setCellEditor(new DefaultCellEditor(weaponTypeBox)); setLayout(new BoxLayout(this, BoxLayout.X_AXIS)); add(tableScrollPane); setPreferredSize(new Dimension(500, 100)); } public void update() { craftModel.update(); } }