/* * Copyright (C) 2010 Dav * * 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.awt.Component; import java.awt.Container; import java.awt.Dimension; import java.awt.Point; import java.awt.Window; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import javax.swing.BorderFactory; import javax.swing.Box; import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.JPanel; import net.rubikscomplex.ufosge.data.SavedGame; import net.rubikscomplex.ufosge.data.Soldier; import net.rubikscomplex.ufosge.resources.ResourceManager; import net.rubikscomplex.ufosge.util.Util; /** * * @author Dav */ public class SoldierEditDialog extends JDialog implements ActionListener { protected static final String ACTION_APPLY = "Apply"; protected static final String ACTION_CLOSE = "Close"; protected static final String ACTION_CANCEL = "Cancel"; protected SavedGame game; protected Soldier soldier; protected SoldierEditPanel soldierDetailsPanel; public SoldierEditDialog(Window owner, SavedGame game, Soldier soldier) { super(owner, "Edit Soldier - " + soldier.name); setIconImage(ResourceManager.getDefaultFrameIcon().getImage()); setModal(true); soldierDetailsPanel = new SoldierEditPanel(game, soldier); soldierDetailsPanel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); soldierDetailsPanel.setAlignmentX(Component.RIGHT_ALIGNMENT); JPanel buttonPanel = new JPanel(); buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.X_AXIS)); buttonPanel.setBorder(BorderFactory.createEmptyBorder(0, 5, 5, 10)); buttonPanel.setAlignmentX(Component.RIGHT_ALIGNMENT); JButton closeButton = new JButton("Apply & Close"); closeButton.addActionListener(this); closeButton.setMnemonic(KeyEvent.VK_S); closeButton.setActionCommand(ACTION_CLOSE); Util.setButtonSize(closeButton, 100, 25); JButton cancelButton = new JButton("Cancel"); cancelButton.addActionListener(this); cancelButton.setMnemonic(KeyEvent.VK_C); cancelButton.setActionCommand(ACTION_CANCEL); Util.setButtonSize(cancelButton, 100, 25); JButton applyButton = new JButton("Apply"); applyButton.addActionListener(this); applyButton.setMnemonic(KeyEvent.VK_A); applyButton.setActionCommand(ACTION_APPLY); Util.setButtonSize(applyButton, 100, 25); buttonPanel.add(applyButton); buttonPanel.add(Box.createRigidArea(new Dimension(10, 10))); buttonPanel.add(closeButton); buttonPanel.add(Box.createRigidArea(new Dimension(10, 10))); buttonPanel.add(cancelButton); Container contentPane = getContentPane(); contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS)); contentPane.add(soldierDetailsPanel); contentPane.add(buttonPanel); setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); pack(); setMinimumSize(getSize()); int locx = ResourceManager.getUserPreferenceInt(ResourceManager.PREF_SOLDIEREDITDIALOG_POSX); int locy = ResourceManager.getUserPreferenceInt(ResourceManager.PREF_SOLDIEREDITDIALOG_POSY); if (locx != -1) { setLocation(locx, locy); } else { setLocationRelativeTo(owner); } getRootPane().setDefaultButton(closeButton); } @Override public void dispose() { Point loc = getLocation(); ResourceManager.setUserPreferenceInt(ResourceManager.PREF_SOLDIEREDITDIALOG_POSX, loc.x); ResourceManager.setUserPreferenceInt(ResourceManager.PREF_SOLDIEREDITDIALOG_POSY, loc.y); super.dispose(); } public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals(ACTION_CLOSE)) { soldierDetailsPanel.udpate(); this.dispose(); } else if(e.getActionCommand().equals(ACTION_CANCEL)) { this.dispose(); } else if (e.getActionCommand().equals(ACTION_APPLY)) { soldierDetailsPanel.udpate(); } } }