--- /dev/null
+import javax.imageio.ImageIO;
+import javax.swing.*;
+import java.awt.*;
+import java.io.File;
+import java.io.IOException;
+
+public class LeftPersonPanel extends JPanel {
+ private JLabel leftLabel = new JLabel();
+ private Image personImage;
+
+ LeftPersonPanel() {
+ leftLabel.setText("Current person");
+ add(leftLabel);
+ try {
+ this.personImage = ImageIO.read(new File("data/personImage.png"));
+ } catch (IOException e) {
+ System.out.println(e.getStackTrace());
+ }
+ }
+
+ public Image getPersonImage() {
+ return personImage;
+ }
+
+ public void paintComponent(Graphics g) {
+ super.paintComponent(g);
+
+ // Draw
+ g.setColor(Color.black);
+ Graphics2D g2d = (Graphics2D) g;
+ int imageWidth = 120;
+ int imageHeight = 180;
+ g2d.drawImage(this.personImage.getScaledInstance(imageWidth / 2, imageHeight / 2, Image.SCALE_SMOOTH), imageWidth / 4, imageHeight / 4, this);
+ }
+}
System.out.println("Created GUI on EDT? " +
SwingUtilities.isEventDispatchThread());
//Display the window.
- //this.pack();
+ this.pack();
this.setVisible(true);
}
}
\ No newline at end of file
-import javax.imageio.ImageIO;
import javax.swing.*;
-import java.awt.*;
-import java.awt.geom.Ellipse2D;
-import java.awt.geom.Point2D;
-import java.io.File;
-import java.io.IOException;
public class PersonPanel extends JPanel {
- private boolean debug = true;
- private String titleText = new String();
- private JLabel personLabel = new JLabel();
- private String contentText = new String();
- private Image personImage;
+ private LeftPersonPanel leftPanel = new LeftPersonPanel();
+ private RightPersonPanel rightPanel = new RightPersonPanel();
- public PersonPanel(String title) {
- setTitleText(title);
- personLabel.setText(this.getTitleText());
- add(personLabel);
- try {
- this.personImage = ImageIO.read(new File("data/personImage.png"));
- } catch (IOException e) {
- System.out.println(e.getStackTrace());
- }
+ public PersonPanel() {
+ setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));
+ add(leftPanel);
+ add(rightPanel);
}
- public void setTitleText(String titleText) {
- this.titleText = titleText;
- }
-
- public String getTitleText() {
- return titleText;
- }
-
- public void setContentText(String contentText) {
- this.contentText = contentText;
- }
-
- public String getContentText() {
- return contentText;
- }
-
- public void paintComponent(Graphics g) {
- super.paintComponent(g);
-
- // Draw
- g.setColor(Color.black);
- if (debug)
- // Below the JLabel
- g.drawString(this.getContentText(), 5, 35);
- Graphics2D g2d = (Graphics2D) g;
- g2d.drawImage(this.personImage.getScaledInstance(getWidth() / 2, getHeight() / 2, Image.SCALE_SMOOTH), getWidth() / 4, getHeight() / 4, this);
- }
-
- private static Ellipse2D getCircleByCenter(Point2D center, double radius) {
- Ellipse2D.Double myCircle = new Ellipse2D.Double(center.getX() - radius, center.getY() - radius, 2 * radius, 2 * radius);
- return myCircle;
+ public void setRightContentText(String rightContentText) {
+ this.rightPanel.setContentText(rightContentText);
}
}
import java.util.ArrayList;
public class PersonView extends JComponent implements ActionListener {
- private int width = 800;
- private int height = 500;
+ private int width = 600;
+ private int height = 600;
private Person personObj;
private ArrayList<Person> personArrayList;
private FirstnameView firstnameView;
private JPanel southPanel = new JPanel();
private JPanel eastPanel = new JPanel();
private JPanel westPanel = new JPanel();
- private PersonPanel personPanel = new PersonPanel("Person comparison");
+ private PersonPanel personPanel = new PersonPanel();
private JButton compareButton = new JButton("Compare");
PersonView(Person personObj, ArrayList<Person> personArrayList) {
setPersonObj(personObj);
- setFirstnameView(new FirstnameView(15, this.personObj.getFirstname()));
+ setFirstnameView(new FirstnameView(14, this.personObj.getFirstname()));
setOriginView(new OriginView(this.personObj.getOrigin()));
setSizeView(new SizeView(this.personObj.getPersonSize()));
setWeightView(new WeightView(this.personObj.getWeight()));
northPanel.add(firstnameView);
southPanel.setBorder(BorderFactory.createRaisedSoftBevelBorder());
southPanel.add(compareButton);
- eastPanel.setLayout(new BoxLayout(this.eastPanel, BoxLayout.Y_AXIS));
+ eastPanel.setLayout(new BoxLayout(this.eastPanel, BoxLayout.PAGE_AXIS));
eastPanel.setBorder(BorderFactory.createRaisedSoftBevelBorder());
eastPanel.add(sizeView);
eastPanel.add(weightView);
eastPanel.add(eyeView);
- westPanel.setLayout(new BoxLayout(this.westPanel, BoxLayout.Y_AXIS));
+ westPanel.setLayout(new BoxLayout(this.westPanel, BoxLayout.PAGE_AXIS));
westPanel.setBorder(BorderFactory.createRaisedSoftBevelBorder());
westPanel.add(originView);
}
personArrayList.sort(getPersonObj());
//Utils.displayArrayList(personArrayList);
Person closestPerson = personArrayList.get(personArrayList.indexOf(this.getPersonObj()) + 1);
- personPanel.setContentText(closestPerson.toString());
+ personPanel.setRightContentText(closestPerson.getFirstname().getFirstname() + " at distance " + closestPerson.getDistanceFromReference());
}
}
}
--- /dev/null
+import javax.imageio.ImageIO;
+import javax.swing.*;
+import java.awt.*;
+import java.io.File;
+import java.io.IOException;
+
+public class RightPersonPanel extends JPanel {
+ private JLabel rightLabel = new JLabel();
+ private String contentText = new String();
+ private Image personImage;
+
+ RightPersonPanel() {
+ rightLabel.setText("Closest person found");
+ add(rightLabel);
+ try {
+ this.personImage = ImageIO.read(new File("data/personImage.png"));
+ } catch (IOException e) {
+ System.out.println(e.getStackTrace());
+ }
+ }
+
+ public void setContentText(String contentText) {
+ this.contentText = contentText;
+ }
+
+ public String getContentText() {
+ return contentText;
+ }
+
+ public Image getPersonImage() {
+ return personImage;
+ }
+
+ public void paintComponent(Graphics g) {
+ super.paintComponent(g);
+
+ // Draw
+ g.setColor(Color.black);
+ g.drawString(getContentText(), 5, 35);
+ Graphics2D g2d = (Graphics2D) g;
+ int imageWidth = 120;
+ int imageHeight = 180;
+ g2d.drawImage(this.personImage.getScaledInstance(imageWidth / 2, imageHeight / 2, Image.SCALE_SMOOTH), imageWidth / 4, imageHeight / 4, this);
+ }
+}