这是一个困扰我3天的问题。我必须重写一个小tictactoe(nxn的五子棋)游戏的UI。问题是,当我创建 swing GUI 时,我创建了一个继承 JButton 属性的新类,并为行添加了一个 int,为列添加了一个 int。我不能用 SWT(无继承)做到这一点。有没有办法让我将 i 和 j 的值添加到按钮。
这是 Swing 中的示例:
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
final MyJButton button = new MyJButton(i, j);
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
MoveResult move = game.move(button.getRow(), button.getCol());
switch (move) {
case ValidMove:
button.setBackground(game.getCurrentPlayer().getColor());
game.changePlayer();
break;
}
}
}
}
}
}
我为游戏类提供 i 和 j,将其提供给表类以检查移动。
if (table.getElement(x, y) != PieceType.NONE) return MoveResult.InvalidMove;
private PieceType[][] table;
有没有办法在 SWT 中做同样的事情,欢迎任何指示。
这是我做的
buttonpanel = new Composite(shell, SWT.NONE);
buttonpanel.setLayout(new org.eclipse.swt.layout.GridLayout(cols, true));
buttonTable = new Button[rows][cols];
for (int i = 0; i < rows; ++i){
for (int j = 0; j < cols; ++j) {
gridData.heightHint = 45;
gridData.widthHint = 45;
Button button = new Button(buttonpanel, SWT.PUSH);
button.setLayoutData(gridData);
buttonTable[i][j] = button;
buttonTable[i][j].addSelectionListener(new buttSelectionListener());
// buttonpanel.pack();
}
}