SWT « Icon Image « Java Swing Q&A





1. IllegalArgumentException when setting Image in Jigloo    stackoverflow.com

I am trying to make GUIs in SWT using Jigloo and when I want to set images to Labels or Buttons, I can see them in the preview pane. However, when ...

2. SWT for tray icon in Swing application    stackoverflow.com

The tray icon implementation in Java 1.6 has its limitations, e.g. no support for the alpha channel in the graphic icons. Did anybody tried to use SWT to support a native ...

3. SWT: How to load images?    coderanch.com

Hi, I am a young developper for SWT. Like ACDSee, when clicking the folder on TreeMenu, some pix stored in those folders appears. My questions: (1)How to load images from the storage, the place where I save the images, to the application? (2) How to display the image to the application? Is it concerned to array or selectIndex? (3) Is there ...

4. Converting an AWT image into SWT    coderanch.com

5. SWT and SVG    coderanch.com

8. Can't load images in SWT/Eclipse    coderanch.com

I'm writing an Eclipse plugin (following an example I found on the net) and try to load small icons in a table. In my LabelProvider class I have this: static { String iconPath = "icons/"; imageRegistry.put( CHECKED_IMAGE, ImageDescriptor.createFromFile( EbbTableViewer.class, iconPath + CHECKED_IMAGE + ".gif")); ... more the same... } and here's the method that gets the image: private Image getImage(boolean isSelected) ...

9. SWT, Swing draw image performance    coderanch.com

Hi, Our client application displays several video streams at the same time. There's a native decoder which decodes the pictures into a BufferedImage using ((DataBufferByte)fBufferedImage.getRaster().getDataBuffer()).getData() to acquire the address of the image data. Basically the second most important(the first one is the decoding speed) performance factor of our application is the drawing speed. We would like to reimplement our client's UI, ...





10. SWT standard icons    coderanch.com

11. SWT tableitem, image not displaying properly.    coderanch.com

I have a tableItem in an swtTable where I use an image in the first cell *with indent*. A few problems - first, I discovered the table background color bug, where the background behind my image is reverting to the *table* bgColor, and not the table *item* bgColor (result is that even though my row is blue, the image column has ...