delete MenuItemHowToPlay (it is no longer used)

This commit is contained in:
slapshot5
2012-01-07 03:05:01 +00:00
parent baaee3a30d
commit 3f77c67053
2 changed files with 0 additions and 70 deletions

1
.gitattributes vendored
View File

@@ -10658,7 +10658,6 @@ src/main/java/forge/IPlayerZone.java svneol=native#text/plain
src/main/java/forge/ImageCache.java svneol=native#text/plain
src/main/java/forge/ImagePreviewPanel.java svneol=native#text/plain
src/main/java/forge/MagicStack.java svneol=native#text/plain
src/main/java/forge/MenuItemHowToPlay.java svneol=native#text/plain
src/main/java/forge/Move.java svneol=native#text/plain
src/main/java/forge/MyButton.java svneol=native#text/plain
src/main/java/forge/MyObservable.java svneol=native#text/plain

View File

@@ -1,69 +0,0 @@
/*
* Forge: Play Magic: the Gathering.
* Copyright (C) 2011 Forge Team
*
* 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 forge;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import forge.properties.ForgeProps;
import forge.properties.NewConstants;
/**
* <p>
* MenuItem_HowToPlay class.
* </p>
*
* @author Forge
* @version $Id$
*/
public class MenuItemHowToPlay extends JMenuItem {
/** Constant <code>serialVersionUID=5552000208438248428L</code>. */
private static final long serialVersionUID = 5552000208438248428L;
/**
* <p>
* Constructor for MenuItem_HowToPlay.
* </p>
*/
public MenuItemHowToPlay() {
super(ForgeProps.getLocalized(NewConstants.Lang.HowTo.TITLE));
this.addActionListener(new ActionListener() {
@Override
public void actionPerformed(final ActionEvent a) {
final String text = ForgeProps.getLocalized(NewConstants.Lang.HowTo.MESSAGE);
final JTextArea area = new JTextArea(text, 25, 40);
area.setWrapStyleWord(true);
area.setLineWrap(true);
area.setEditable(false);
area.setOpaque(false);
JOptionPane.showMessageDialog(null, new JScrollPane(area),
ForgeProps.getLocalized(NewConstants.Lang.HowTo.TITLE), JOptionPane.INFORMATION_MESSAGE);
}
});
} // constructor
} // MenuItem_HowToPlay