16

I'm trying to add an external icon from an *.ico file to a window that I'm creating using the WindowBuilder design window. I can select the shell, which brings up an "image" properties field. alt text That brings up the image chooser dialog box: alt text

How do I make my icon show up in this menu as a classpath resource? The image works if an absolute path is given, but I don't want to use that option in my application.

Thanks!

Zoot
  • 2,217
  • 4
  • 29
  • 47

6 Answers6

29

To easily add an icon to my classpath, I found my desired icon, right clicked it, selected "copy", then went to one of the packages of my project in Eclipse, right clicked, and selected "paste". The next time I brought up the image chooser dialog box, my local package had the icon listed as an available classpath resource, and I chose it. image chooser

I was able to export the project to a runnable JAR, and the icon still worked.

Zoot
  • 2,217
  • 4
  • 29
  • 47
  • 1
    I was able to get the image files to successfully show up as a classpath resource, but if I selected them for my JLabel icon, it wouldn't appear. If I selected the image as an absolute path, it appears. I've confirmed the files exist in their package. What could be the issue? – MultiGuy Jun 09 '14 at 22:22
  • @MultiGuy It worked fine with me, and the image could be set for my JLabel icon – Accountant م Jun 10 '20 at 15:47
  • It worked. After doing this, I changed the source removing the path to the image and deleted the copy. It is now using the original. – Jonathan Rosenne Jun 14 '20 at 19:33
6

The solution I find to be working is to create a jar containing your images and add it to your class path. Then you will be able to choose them from the dialog in your second screen shot.

I remember this used to work with directories that are in your build path. Now it seems to be forced to be in a jar package.

Bahadır Yağan
  • 5,577
  • 3
  • 35
  • 39
3

To add any kind of supported image to your project, just right click on 'src' folder of your project and New... Package... and under Name give, for example, 'resources'. After that you only need to copy your images there. When you export the project to a runable JAR, all resources go together and Runs fine.

Jagoliveira
  • 515
  • 3
  • 5
2

I don't know how to do this in WindowBuilder, but you can specify an Image resource while building the Shell via setImage() or setImages(). I suggest using the latter, because it provides the platform with various resolution icons, including the window's control box, the Windows taskbar, and alt+tab list.

Take a look at this snippet.

To load it from a resource:

final Image small = new Image(shell.getDisplay(),
        "resources/images/icon_16.png");
final Image large = new Image(shell.getDisplay(),
        "resources/images/icon_32.png");
final Image[] images = new Image[] { small, large };
shell.setImages(images);

In this example, I have a subfolder "resources", containing "images", then two PNGs. Specifying a resource JAR should work in a similar way, although I haven't tried it.

Paul Lammertsma
  • 37,593
  • 16
  • 136
  • 187
1

In my case, WindowBuilder recognized the *.ico format but didn't replace the default Java icon with my custom icon. It was only when I converted the *.ico to *.png (through this handy online tool) that WindowBuilder finally changed the default Java icon to my custom "icon", even though it's really a PNG. I expected WindowBuilder to be able to recognize the ICO format.

Jason
  • 6,878
  • 5
  • 41
  • 55
0

In Eclipse Juno 4.2. the Image chooser often doesn't show the resource folder (e.g. from a Maven-structured project: src/main/resources. Presumably that is a bug.

If you remove and then add the resource folder explicitly with the include option in the Java Build Path Window (Source Tab), it will pop up. Even after removing the "include" option and setting it back to "All", it will still show.

Of course, you may remove and add directly from the context menu, when right-clicking the src/main/resources folder.

feder
  • 1,775
  • 5
  • 25
  • 36