⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customerframe.java

📁 开源Java扫雷游戏JMine2.0Jar新版功能完善
💻 JAVA
字号:
/**
 * This program is written by Jerry Shen(Shen Ji Feng) use the technology of
 * SWING GUI and the OO design
 * 
 * @author Jerry Shen all rights reserved.
 * Email:jerry.shen@cognizant.com; jerry_shen_sjf@yahoo.com.cn
 * Please report bug to these emails.
 * Open source under GPLv3
 * 
 * version 2.0
 */
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;

@SuppressWarnings("serial")
class CustomerFrame extends JFrame implements MouseListener {

	private JLabel widthLabel;

	private JLabel heightLabel;

	private JLabel mineNumLabel;

	private JTextField widthField;

	private JTextField heightField;

	private JTextField mineNumField;

	private JPanel panel;

	private GridBagLayout gridbag;

	private GridBagConstraints constrains;

	private JButton ok;

	private JButton reset;
	
	private int colCount;
	
	private int rowCount;
	
	private int mineNum;
	
	private boolean isOk;
			
	public JButton getOk() {
		return ok;
	}

	public void setOk(JButton ok) {
		this.ok = ok;
	}

	public CustomerFrame(String name) {
		super(name);
		setSize(180, 200);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

		panel = new JPanel();
		gridbag = new GridBagLayout();
		constrains = new GridBagConstraints();
		panel.setLayout(gridbag);
		

		widthLabel = new JLabel("Width:");		
		buildConstraints(constrains, 0, 0);
		panel.add(widthLabel,constrains);				

		widthField = new JTextField();
		widthField.setColumns(6);
		buildConstraints(constrains, 1, 0);
		panel.add(widthField, constrains);

		heightLabel = new JLabel("Height:");		
		buildConstraints(constrains, 0, 1);
		panel.add(heightLabel,constrains);	
		
		heightField = new JTextField();
		heightField.setColumns(6);
		buildConstraints(constrains, 1, 1);
		panel.add(heightField,constrains);

		mineNumLabel = new JLabel("Mine Number:");		
		buildConstraints(constrains, 0, 2);
		panel.add(mineNumLabel, constrains);		

		mineNumField = new JTextField();
		mineNumField.setColumns(6);
		buildConstraints(constrains, 1, 2);
		panel.add(mineNumField, constrains);	
		
		ok = new JButton("OK");	
		ok.addMouseListener(this);
		buildConstraints(constrains, 0, 3);
		panel.add(ok, constrains);
		
		reset = new JButton("Reset");
		reset.addMouseListener(this);
		buildConstraints(constrains, 1, 3);
		panel.add(reset,constrains);

		setLocation(250, 220);
		setContentPane(panel);
	}

	public static void main(String[] args) {
		CustomerFrame cf = new CustomerFrame("Test");
		cf.setVisible(true);
	}

	// Set the GUI objects positions
	private void buildConstraints(GridBagConstraints gbc, int gx, int gy) {
		gbc.gridx = gx;
		gbc.gridy = gy;
	}

	// the event handle to deal with the mouse click
	public void mouseClicked(MouseEvent e) {
		if (e.getSource() == ok) {
			try {
				int width = Integer.parseInt(widthField.getText().trim());
				int height = Integer.parseInt(heightField.getText().trim());
				int mineNum = Integer.parseInt(mineNumField.getText().trim());
				if (width <10 || width > 40){
					JOptionPane.showMessageDialog(this, "JMine width error.");
					this.setOk(false);
					return;
				}
				else if (height <10 || height > 20){
					JOptionPane.showMessageDialog(this, "JMine hight error");
					this.setOk(false);
					return;
				}
				else if (mineNum <=0 || mineNum>= height* width){
					JOptionPane.showMessageDialog(this, "JMine mine number error");
					this.setOk(false);
					return;
				}
				this.setColCount(width);
				this.setRowCount(height);
				this.setMineNum(mineNum);
				this.setOk(true);
				this.setVisible(false);
			}
			catch (Exception ex){
				this.setOk(false);
				JOptionPane.showMessageDialog(this, "Please input number in the text field.");
			}
		}
		else if (e.getSource() == reset) {
			heightField.setText("");
			widthField.setText("");
			mineNumField.setText("");
		}

	}

	public void mousePressed(MouseEvent e) {
		// System.out.println("Jerry Press");

	}

	public void mouseReleased(MouseEvent e) {
		// System.out.println("Jerry Release");
	}

	public void mouseExited(MouseEvent e) {
		// System.out.println("Jerry Exited");

	}

	public void mouseEntered(MouseEvent e) {
		// System.out.println("Jerry Entered");
	}

	public int getColCount() {
		return colCount;
	}

	public void setColCount(int colCount) {
		this.colCount = colCount;
	}

	public int getRowCount() {
		return rowCount;
	}

	public void setRowCount(int rowCount) {
		this.rowCount = rowCount;
	}

	public int getMineNum() {
		return mineNum;
	}

	public void setMineNum(int mineNum) {
		this.mineNum = mineNum;
	}
	
	public boolean isOk(){
		return isOk;
	}

	public void setOk(boolean ok){
		this.isOk = ok;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -