changed icons
@@ -45,13 +45,13 @@ public class ModeFrame extends JFrame implements ActionListener {
|
||||
setSize(350, 200);
|
||||
openButton.addActionListener(this);
|
||||
openButton.setActionCommand("OPEN");
|
||||
openButton.setIcon(View.getIcon("open24"));
|
||||
openButton.setIcon(View.getIcon("open32"));
|
||||
proxyButton.addActionListener(this);
|
||||
proxyButton.setActionCommand("PROXY");
|
||||
proxyButton.setIcon(View.getIcon("proxy24"));
|
||||
proxyButton.setIcon(View.getIcon("proxy32"));
|
||||
exitButton.addActionListener(this);
|
||||
exitButton.setActionCommand("EXIT");
|
||||
exitButton.setIcon(View.getIcon("exit24"));
|
||||
exitButton.setIcon(View.getIcon("exit32"));
|
||||
setResizable(false);
|
||||
Container cont = getContentPane();
|
||||
cont.setLayout(new GridLayout(4, 1));
|
||||
|
||||
|
Before Width: | Height: | Size: 587 B After Width: | Height: | Size: 727 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 944 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -154,10 +154,8 @@ public class ProxyFrame extends JFrame implements ActionListener, CatchedListene
|
||||
}
|
||||
});
|
||||
java.util.List<Image> images = new ArrayList<Image>();
|
||||
images.add(View.loadImage("proxy16"));
|
||||
images.add(View.loadImage("proxy24"));
|
||||
images.add(View.loadImage("proxy32"));
|
||||
images.add(View.loadImage("proxy48"));
|
||||
images.add(View.loadImage("proxy16"));
|
||||
images.add(View.loadImage("proxy32"));
|
||||
setIconImages(images);
|
||||
}
|
||||
|
||||
|
||||