diff --git a/firestar/src/main/java/Rowlf.form b/firestar/src/main/java/Rowlf.form index 85cdfdd..ec2202c 100644 --- a/firestar/src/main/java/Rowlf.form +++ b/firestar/src/main/java/Rowlf.form @@ -35,7 +35,7 @@ - + diff --git a/firestar/src/main/java/WilkinsCoffee.form b/firestar/src/main/java/WilkinsCoffee.form index ad93762..111a65c 100644 --- a/firestar/src/main/java/WilkinsCoffee.form +++ b/firestar/src/main/java/WilkinsCoffee.form @@ -3,7 +3,7 @@ - + @@ -12,9 +12,9 @@ - + - + diff --git a/firestar/src/main/java/WilkinsCoffee.java b/firestar/src/main/java/WilkinsCoffee.java index ee66209..d52e017 100644 --- a/firestar/src/main/java/WilkinsCoffee.java +++ b/firestar/src/main/java/WilkinsCoffee.java @@ -82,7 +82,7 @@ public class WilkinsCoffee implements ActionListener { System.out.println("ERROR: Failed to find /resources/titleIcon.png. Window will not have an icon."); } try { - logo = ImageIO.read(Main.class.getResourceAsStream("/programIcon.png")).getScaledInstance(76, 76, Image.SCALE_SMOOTH); + logo = ImageIO.read(Main.class.getResourceAsStream("/programIcon.png")).getScaledInstance(96, 96, Image.SCALE_SMOOTH); picLabel.setIcon(new ImageIcon(logo));picLabel.setText(""); } catch (IOException e) { System.out.println("ERROR: Missing resource in Wilkins. Page will be without images."); @@ -158,6 +158,13 @@ public class WilkinsCoffee implements ActionListener { switch (page) { case INTRO: page = Pages.PSARC; + try { + logo = ImageIO.read(Main.class.getResourceAsStream("/setupIconPSARC.png")).getScaledInstance(96, 96, Image.SCALE_SMOOTH); + picLabel.setIcon(new ImageIcon(logo));picLabel.setText(""); + } catch (IOException e) { + System.out.println("ERROR: Missing resource in Wilkins. Page will be without images."); + picLabel.setText(""); + } if (!new File(Main.inpath + "psp2psarc.exe").exists()) { // we may have been here before // nag frame.setEnabled(false); @@ -204,6 +211,13 @@ public class WilkinsCoffee implements ActionListener { break; case PSARC: page = Pages.EXPORT_LOCATION; + try { + logo = ImageIO.read(Main.class.getResourceAsStream("/setupIconEXPORT.png")).getScaledInstance(96, 96, Image.SCALE_SMOOTH); + picLabel.setIcon(new ImageIcon(logo));picLabel.setText(""); + } catch (IOException e) { + System.out.println("ERROR: Missing resource in Wilkins. Page will be without images."); + picLabel.setText(""); + } contBtn.setEnabled(true); contBtn.setBackground(new Color(221, 88, 11)); //orange inputContainer.setVisible(false); @@ -228,6 +242,13 @@ public class WilkinsCoffee implements ActionListener { break; case EXPORT_LOCATION: page = Pages.DONE; + try { + logo = ImageIO.read(Main.class.getResourceAsStream("/setupIconDONE.png")).getScaledInstance(96, 96, Image.SCALE_SMOOTH); + picLabel.setIcon(new ImageIcon(logo));picLabel.setText(""); + } catch (IOException e) { + System.out.println("ERROR: Missing resource in Wilkins. Page will be without images."); + picLabel.setText(""); + } inputContainer2.setVisible(false); Main.outpath = outPathTemp + "/"; Main.repatch = true; diff --git a/firestar/src/main/resources/setupIconDONE.png b/firestar/src/main/resources/setupIconDONE.png new file mode 100644 index 0000000..3ac4248 Binary files /dev/null and b/firestar/src/main/resources/setupIconDONE.png differ diff --git a/firestar/src/main/resources/setupIconEXPORT.png b/firestar/src/main/resources/setupIconEXPORT.png new file mode 100644 index 0000000..85c0477 Binary files /dev/null and b/firestar/src/main/resources/setupIconEXPORT.png differ diff --git a/firestar/src/main/resources/setupIconPSARC.png b/firestar/src/main/resources/setupIconPSARC.png new file mode 100644 index 0000000..119fe54 Binary files /dev/null and b/firestar/src/main/resources/setupIconPSARC.png differ