/** * This file is part of JSkat. * * JSkat 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. * * JSkat 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 JSkat. If not, see <http://www.gnu.org/licenses/>. */ package org.jskat.gui.swing.iss; import java.util.ArrayList; import java.util.List; import java.util.Set; import javax.swing.ButtonGroup; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JRadioButton; import org.jskat.gui.swing.LayoutFactory; /** * Dialog panel for player invitation on ISS */ public class PlayerInvitationPanel extends JPanel { private static final long serialVersionUID = 1L; private ButtonGroup firstPlayerGroup; private ButtonGroup secondPlayerGroup; // private ButtonGroup thirdPlayerGroup; /** * Constructor * * @param player * Available player on ISS */ public PlayerInvitationPanel(Set<String> player) { initPanel(player); } void initPanel(Set<String> player) { this.setLayout(LayoutFactory.getMigLayout("fill")); //$NON-NLS-1$ this.firstPlayerGroup = new ButtonGroup(); this.secondPlayerGroup = new ButtonGroup(); // this.thirdPlayerGroup = new ButtonGroup(); for (String currPlayer : player) { addPlayerInvitationLabel(currPlayer); //$NON-NLS-1$ } } void addPlayerInvitationLabel(String playerName) { this.add(new JLabel(playerName)); JRadioButton firstButton = new JRadioButton(); firstButton.setActionCommand(playerName); this.firstPlayerGroup.add(firstButton); this.add(firstButton); JRadioButton secondButton = new JRadioButton(); secondButton.setActionCommand(playerName); this.secondPlayerGroup.add(secondButton); this.add(secondButton, "wrap"); //$NON-NLS-1$ // JRadioButton thirdButton = new JRadioButton(); // thirdButton.setActionCommand(playerName); // this.thirdPlayerGroup.add(thirdButton); // this.add(thirdButton, "wrap"); //$NON-NLS-1$ } /** * Gets the selected player names * * @return Selected player names */ public List<String> getPlayer() { List<String> result = new ArrayList<>(); if (this.firstPlayerGroup.getSelection() != null) { result.add(this.firstPlayerGroup.getSelection().getActionCommand()); } if (this.secondPlayerGroup.getSelection() != null) { result.add(this.secondPlayerGroup.getSelection().getActionCommand()); } // if (this.thirdPlayerGroup.getSelection() != null) { // result.add(this.thirdPlayerGroup.getSelection().getActionCommand()); // } return result; } }