-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGUI.java
111 lines (95 loc) · 2.97 KB
/
GUI.java
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* This is my first serious foray in GUIs.
* I have put comments explaining almost
* everything to help me (and others if curious)
* to learn and fully understand the code!
* */
package finalproject;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class GUI implements ActionListener{
//declare variables to be in method scope
private int count = 0;
private JFrame frame;
private JPanel panel;
private JButton searchButton;
private JLabel label;
private JTextField searchField;
private static SearchEngine searchEngine;
public GUI() {
//initialize frame + panel
frame = new JFrame();
panel = new JPanel();
//set panel to the frame
panel.setBorder(BorderFactory.createEmptyBorder(300,600,300,600));
panel.setLayout(new GridLayout(0, 1));
//SEARCH BAR:
searchField = new JTextField("Enter your search here");
panel.add(searchField);
//BUTTON:
searchButton = new JButton("Search");
searchButton.addActionListener(this);
//change size/position
searchButton.setLocation(10,10);
//add to panel
panel.add(searchButton);
//add panel to frame
frame.add(panel, BorderLayout.CENTER);
//set what happens when panel closed
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//set title of window
frame.setTitle("Welcome to Sebastien's Internet!");
//set window to match certain size
frame.pack();
//center JFrame
frame.setLocationRelativeTo(null);
//set window to be visible and in focus
frame.setVisible(true);
}
public static void main(String[] args) {
new GUI();
try {
searchEngine = new SearchEngine("test.xml");
searchEngine.crawlAndIndex("www.cs.mcgill.ca");
} catch (Exception e) {
e.printStackTrace();
}
}
public void actionPerformed(ActionEvent e) {
String userSearchText = searchField.getText();
ArrayList<String> results = searchEngine.getResults(userSearchText);
//check results working
System.out.println(results);
//get rid of everything (in order to get rid of old results)
panel.removeAll();
//put basic elements back
panel.add(searchField);
panel.add(searchButton);
//make ArrayList of buttons so i can iterate through them and operate upon them
ArrayList<JButton> buttons = new ArrayList<>();
//create button for each element
for(String url: results) {
buttons.add(new JButton(url));
panel.add(new JButton(url));
}
if(buttons.isEmpty()) {
JLabel noResults = new JLabel("There were no search results, please search again.");
noResults.setPreferredSize(new Dimension(150, 30));
panel.add(noResults);
}
//check ArrayList of buttons working
System.out.println(buttons.toString());
//update the GUI
panel.revalidate();
panel.repaint();
}
}