forked from External/mage
189 lines
9.1 KiB
Java
189 lines
9.1 KiB
Java
/*
|
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification, are
|
|
* permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
* conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
* provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* The views and conclusions contained in the software and documentation are those of the
|
|
* authors and should not be interpreted as representing official policies, either expressed
|
|
* or implied, of BetaSteward_at_googlemail.com.
|
|
*/
|
|
|
|
/*
|
|
* ManaPool.java
|
|
*
|
|
* Created on Dec 22, 2009, 9:52:00 AM
|
|
*/
|
|
|
|
package mage.client.game;
|
|
|
|
import mage.view.ManaPoolView;
|
|
|
|
/**
|
|
*
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class ManaPool extends javax.swing.JPanel {
|
|
|
|
/** Creates new form ManaPool */
|
|
public ManaPool() {
|
|
initComponents();
|
|
}
|
|
|
|
public void update(ManaPoolView pool) {
|
|
this.btnBlack.setText(Integer.toString(pool.getBlack()));
|
|
this.btnRed.setText(Integer.toString(pool.getRed()));
|
|
this.btnWhite.setText(Integer.toString(pool.getWhite()));
|
|
this.btnGreen.setText(Integer.toString(pool.getGreen()));
|
|
this.btnBlue.setText(Integer.toString(pool.getBlue()));
|
|
this.btnColorless.setText(Integer.toString(pool.getColorless()));
|
|
}
|
|
|
|
/** This method is called from within the constructor to
|
|
* initialize the form.
|
|
* WARNING: Do NOT modify this code. The content of this method is
|
|
* always regenerated by the Form Editor.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
|
private void initComponents() {
|
|
|
|
lblBlack = new javax.swing.JLabel();
|
|
btnBlack = new javax.swing.JButton();
|
|
btnBlue = new javax.swing.JButton();
|
|
lblBlue = new javax.swing.JLabel();
|
|
lblGreen = new javax.swing.JLabel();
|
|
btnGreen = new javax.swing.JButton();
|
|
btnColorless = new javax.swing.JButton();
|
|
lblWhite = new javax.swing.JLabel();
|
|
lblColorless = new javax.swing.JLabel();
|
|
btnWhite = new javax.swing.JButton();
|
|
btnRed = new javax.swing.JButton();
|
|
lblRed = new javax.swing.JLabel();
|
|
|
|
lblBlack.setLabelFor(btnBlack);
|
|
lblBlack.setText("Black");
|
|
|
|
btnBlack.setText("0");
|
|
|
|
btnBlue.setText("0");
|
|
|
|
lblBlue.setLabelFor(btnBlack);
|
|
lblBlue.setText("Blue");
|
|
|
|
lblGreen.setLabelFor(btnBlack);
|
|
lblGreen.setText("Green");
|
|
|
|
btnGreen.setText("0");
|
|
|
|
btnColorless.setText("0");
|
|
|
|
lblWhite.setLabelFor(btnBlack);
|
|
lblWhite.setText("White");
|
|
|
|
lblColorless.setLabelFor(btnBlack);
|
|
lblColorless.setText("Colorless");
|
|
|
|
btnWhite.setText("0");
|
|
|
|
btnRed.setText("0");
|
|
|
|
lblRed.setLabelFor(btnBlack);
|
|
lblRed.setText("Red");
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
this.setLayout(layout);
|
|
layout.setHorizontalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addContainerGap()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(lblGreen)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 18, Short.MAX_VALUE)
|
|
.addComponent(btnGreen, javax.swing.GroupLayout.PREFERRED_SIZE, 39, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(lblColorless)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
|
.addComponent(btnColorless, javax.swing.GroupLayout.PREFERRED_SIZE, 39, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(lblWhite)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 19, Short.MAX_VALUE)
|
|
.addComponent(btnWhite, javax.swing.GroupLayout.PREFERRED_SIZE, 39, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addComponent(lblRed)
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 28, Short.MAX_VALUE)
|
|
.addComponent(btnRed, javax.swing.GroupLayout.PREFERRED_SIZE, 39, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addComponent(lblBlack)
|
|
.addComponent(lblBlue))
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 23, Short.MAX_VALUE)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
|
|
.addComponent(btnBlack, javax.swing.GroupLayout.PREFERRED_SIZE, 39, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addComponent(btnBlue, javax.swing.GroupLayout.PREFERRED_SIZE, 39, javax.swing.GroupLayout.PREFERRED_SIZE))))
|
|
.addContainerGap())
|
|
);
|
|
layout.setVerticalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(lblBlack)
|
|
.addComponent(btnBlack, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGap(1, 1, 1)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(btnBlue, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
.addComponent(lblBlue))
|
|
.addGap(1, 1, 1)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(lblGreen)
|
|
.addComponent(btnGreen, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGap(1, 1, 1)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(lblRed)
|
|
.addComponent(btnRed, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGap(1, 1, 1)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(lblWhite)
|
|
.addComponent(btnWhite, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE))
|
|
.addGap(1, 1, 1)
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
.addComponent(lblColorless)
|
|
.addComponent(btnColorless, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE)))
|
|
);
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
private javax.swing.JButton btnBlack;
|
|
private javax.swing.JButton btnBlue;
|
|
private javax.swing.JButton btnColorless;
|
|
private javax.swing.JButton btnGreen;
|
|
private javax.swing.JButton btnRed;
|
|
private javax.swing.JButton btnWhite;
|
|
private javax.swing.JLabel lblBlack;
|
|
private javax.swing.JLabel lblBlue;
|
|
private javax.swing.JLabel lblColorless;
|
|
private javax.swing.JLabel lblGreen;
|
|
private javax.swing.JLabel lblRed;
|
|
private javax.swing.JLabel lblWhite;
|
|
// End of variables declaration//GEN-END:variables
|
|
|
|
}
|