changed icons

This commit is contained in:
Jindra Pet��k
2013-04-20 14:32:16 +02:00
parent bdec49f8d2
commit b4adf93945
10 changed files with 5 additions and 7 deletions
@@ -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));
Binary file not shown.

Before

Width:  |  Height:  |  Size: 587 B

After

Width:  |  Height:  |  Size: 727 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 722 B

After

Width:  |  Height:  |  Size: 944 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

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);
}