mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 00:03:52 +00:00
New icons (Silk icons)
All tags merged into one tree including AS3 classes
This commit is contained in:
@@ -23,7 +23,6 @@ import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import java.awt.event.WindowAdapter;
|
||||
import java.awt.event.WindowEvent;
|
||||
import javax.swing.ImageIcon;
|
||||
import javax.swing.JButton;
|
||||
import javax.swing.JFrame;
|
||||
import javax.swing.JLabel;
|
||||
@@ -46,18 +45,18 @@ public class ModeFrame extends JFrame implements ActionListener {
|
||||
setSize(350, 200);
|
||||
openButton.addActionListener(this);
|
||||
openButton.setActionCommand("OPEN");
|
||||
openButton.setIcon(new ImageIcon(View.loadImage("com/jpexs/decompiler/flash/gui/graphics/open24.png")));
|
||||
openButton.setIcon(View.getIcon("open24"));
|
||||
proxyButton.addActionListener(this);
|
||||
proxyButton.setActionCommand("PROXY");
|
||||
proxyButton.setIcon(new ImageIcon(View.loadImage("com/jpexs/decompiler/flash/gui/graphics/proxy24.png")));
|
||||
proxyButton.setIcon(View.getIcon("proxy24"));
|
||||
exitButton.addActionListener(this);
|
||||
exitButton.setActionCommand("EXIT");
|
||||
exitButton.setIcon(new ImageIcon(View.loadImage("com/jpexs/decompiler/flash/gui/graphics/exit24.png")));
|
||||
exitButton.setIcon(View.getIcon("exit24"));
|
||||
setResizable(false);
|
||||
Container cont = getContentPane();
|
||||
cont.setLayout(new GridLayout(4, 1));
|
||||
JLabel logoLabel = new JLabel();
|
||||
logoLabel.setIcon(new ImageIcon(View.loadImage("com/jpexs/decompiler/flash/gui/graphics/logo.png")));
|
||||
logoLabel.setIcon(View.getIcon("logo"));
|
||||
cont.add(logoLabel);
|
||||
cont.add(openButton);
|
||||
cont.add(proxyButton);
|
||||
|
||||
Reference in New Issue
Block a user