/* * 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 java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTextField; import javax.swing.event.DocumentEvent; import javax.swing.event.DocumentListener; import javax.swing.text.AbstractDocument; import net.rubikscomplex.ufosge.data.SaveInfo; import net.rubikscomplex.ufosge.data.SavedGame; /** * * @author Chris Davoren */ public class GeneralInfoPanel extends JPanel implements DocumentListener, PropertyChangeListener { SavedGame game; NumericFormattedTextField fundsField; JTextField nameField; public GeneralInfoPanel(SavedGame game) { super(); this.game = game; JLabel nameLabel = new JLabel("Name:"); JLabel fundsLabel = new JLabel("Funds:"); nameField = new JTextField(); nameField.setColumns(SaveInfo.NAME_LEN+1); nameField.setText(game.info.name); nameField.getDocument().addDocumentListener(this); ((AbstractDocument)nameField.getDocument()).setDocumentFilter(new LengthDocumentFilter(SaveInfo.NAME_LEN - 1)); fundsField = new NumericFormattedTextField(0, Integer.MAX_VALUE, null); fundsField.setColumns(10); fundsField.setValue(game.finances.funds); fundsField.getDocument().addDocumentListener(this); nameLabel.setLabelFor(nameField); fundsLabel.setLabelFor(fundsField); add(nameLabel); add(nameField); add(fundsLabel); add(fundsField); } public void updateGame() { game.finances.funds = (int)fundsField.getValue(); game.info.name = nameField.getText(); // System.out.println("fundsField: " + fundsField.getText()); // System.out.println("funds: " + game.finances.funds); } public void insertUpdate(DocumentEvent e) { // System.out.println("[GeneralInfoPane] insertUpdate()"); updateGame(); } public void removeUpdate(DocumentEvent e) { // System.out.println("[GeneralInfoPane] removeUpdate()"); updateGame(); } public void changedUpdate(DocumentEvent e) { // System.out.println("[GeneralInfoPane] changeUpdate()"); updateGame(); } public void propertyChange(PropertyChangeEvent e) { updateGame(); } }