/*
* MegaMek - Copyright (C) 2000-2002 Ben Mazur (bmazur@sev.org)
*
* 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 2 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.
*/
package megamek.client.ui.swing;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import megamek.client.ui.Messages;
/**
* Ask for the setting for a vibrabomb.
*/
public class VibrabombSettingDialog extends JDialog implements ActionListener {
/**
*
*/
private static final long serialVersionUID = -7642956136536119067L;
private GridBagLayout gridbag = new GridBagLayout();
private GridBagConstraints c = new GridBagConstraints();
private JButton butOk = new JButton(Messages.getString("Okay")); //$NON-NLS-1$
private JTextField fldSetting = new JTextField("20", 2); //$NON-NLS-1$
private int setting;
private JFrame frame;
public VibrabombSettingDialog(JFrame p) {
super(p, Messages.getString("VibrabombSettingDialog.title"), true); //$NON-NLS-1$
super.setResizable(false);
frame = p;
butOk.addActionListener(this);
JLabel labMessage = new JLabel(Messages
.getString("VibrabombSettingDialog.selectSetting")); //$NON-NLS-1$
getContentPane().setLayout(gridbag);
c.fill = GridBagConstraints.VERTICAL;
c.insets = new Insets(1, 1, 1, 1);
c.weightx = 1.0;
c.weighty = 0.0;
c.gridwidth = GridBagConstraints.REMAINDER;
gridbag.setConstraints(labMessage, c);
getContentPane().add(labMessage);
c.fill = GridBagConstraints.BOTH;
c.gridwidth = GridBagConstraints.REMAINDER;
c.weightx = 0.0;
c.weighty = 0.0;
gridbag.setConstraints(fldSetting, c);
getContentPane().add(fldSetting);
c.gridwidth = GridBagConstraints.REMAINDER;
c.anchor = GridBagConstraints.CENTER;
c.weightx = 0.0;
c.weighty = 0.0;
gridbag.setConstraints(butOk, c);
getContentPane().add(butOk);
pack();
setLocation(p.getLocation().x + p.getSize().width / 2 - getSize().width
/ 2, p.getLocation().y + p.getSize().height / 2
- getSize().height / 2);
}
public int getSetting() {
return setting;
}
public void actionPerformed(ActionEvent actionEvent) {
if (actionEvent.getSource().equals(butOk)) {
String s = fldSetting.getText();
try {
if (s != null && s.length() != 0) {
setting = Integer.parseInt(s);
}
} catch (NumberFormatException e) {
JOptionPane
.showMessageDialog(
frame,
Messages
.getString("VibrabombSettingDialog.alert.Message"), //$NON-NLS-1$
Messages
.getString("VibrabombSettingDialog.alert.Title"), JOptionPane.WARNING_MESSAGE); //$NON-NLS-1$
return;
}
if ((setting < 20) || (setting > 100)) {
JOptionPane
.showMessageDialog(
frame,
Messages
.getString("VibrabombSettingDialog.alert.Message"), //$NON-NLS-1$
Messages
.getString("VibrabombSettingDialog.alert.Title"), JOptionPane.WARNING_MESSAGE); //$NON-NLS-1$
return;
}
}
setVisible(false);
}
}
|