X-Git-Url: https://git.piment-noir.org/?p=Persons_Comparator.git;a=blobdiff_plain;f=src%2FMainWindowsView.java;h=065c90d8050f0deb9203ce7733bb26b49b64c029;hp=f4f837f6bbea7f512696dc7f5e1df9daa356caee;hb=089fcbfccd75b77daf843b22e128beeee1d1dc07;hpb=609718730ad9bc6d18491cf164360b4a44db5f52 diff --git a/src/MainWindowsView.java b/src/MainWindowsView.java index f4f837f..065c90d 100644 --- a/src/MainWindowsView.java +++ b/src/MainWindowsView.java @@ -1,18 +1,32 @@ import javax.swing.*; +import java.awt.*; +import java.util.ArrayList; public class MainWindowsView extends JFrame { MainWindowsView(String title) { //Create and set up the window. setTitle(title); + setSize(300, 300); + setLocationRelativeTo(null); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel panel = new PersonView(); - //TODO: Add content to the panel - //JLabel label = new JLabel("Hello World"); - //panel.add(label); + //Get all Swing/AWT primitive components in the views and add them to the panel. + ArrayList components = new ArrayList<>(); + for (int i = 0; i < panel.getComponentCount(); i++) { + if ((panel.getComponent(i) instanceof Container)) { + Container subContainer = (Container) panel.getComponent(i); + for (int j = 0; j < subContainer.getComponentCount(); j++) { + components.add(subContainer.getComponent(j)); + } + } + } + for (Component component : components) { + panel.add(component); + } - getContentPane().add(panel); + setContentPane(panel); } /** @@ -23,7 +37,7 @@ public class MainWindowsView extends JFrame { public void showGUI() { //Display the window. - this.pack(); + //this.pack(); this.setVisible(true); }