blob: 196477f1b92468d2861b9bdbdfd23f2d261e0d5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package ui;
import javax.swing.JPanel;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import models.ComboBoxUser;
import models.User;
import models.UserListWrapper;
import javax.swing.JTextArea;
import java.awt.SystemColor;
import java.awt.Font;
import java.awt.BorderLayout;
import java.awt.Color;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import java.awt.event.ActionListener;
import java.beans.XMLDecoder;
import java.io.ByteArrayInputStream;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import java.util.ArrayList;
import java.util.List;
import java.awt.event.ActionEvent;
public class ChooseOpponentPanel extends JPanel {
JButton btnSendGameRequest;
JComboBox comboBox;
public ChooseOpponentPanel() {
setLayout(null);
btnSendGameRequest = new JButton("Send Game Request");
btnSendGameRequest.setBounds(134, 153, 166, 23);
add(btnSendGameRequest);
comboBox = new JComboBox();
comboBox.setBounds(134, 101, 166, 22);
add(comboBox);
}
}
|