vote up 2 vote down star
1

This is pretty simple, I come from a swing/awt background.

I'm just wondering what the proper way to set the background color for a SWT widget is?

I've been trying:

widget.setBackGround( );

Except I have no idea how to create the color Object in SWT?

Thanks, Brian Gianforcaro

flag

79% accept rate

3 Answers

vote up 5 vote down check

To create a color, try this:

Device device = Display.getCurrent ();
Color red = new Color (device, 255, 0, 0);
link|flag
That worked. Thanks, your the man. I just couldn't find where to get current device from. – Brian Gianforcaro Sep 8 '08 at 17:10
Make sure you don't forget to dispose of this Color! Otherwise you will leak native resources. – Eddie Jan 27 at 4:47
vote up 8 vote down

For standard colors (including common colors and default colors used by the operating system) Use Display.getSystemColor(int), and pass in the SWT.COLOR_* constant for the color you want.

Display display = Display.getCurrent();
Color blue = display.getSystemColor(SWT.COLOR_BLUE);
Color listBackground = display.getSystemColor(SWT.COLOR_LIST_BACKGROUND);

Note that you do not need to dispose these colors because SWT created them.

link|flag
This should be your standard for any color supported in the SWT.COLOR_* set. As stated, you do not need to remember to dispose of colors created in this fashion. – James Van Huis Oct 30 '08 at 22:46
vote up 4 vote down

Remember that in SWT you must explicitly dispose any resources that you create when you are done with them. This includes widgets, fonts, colors, images, displays, printers, and GCs. If you do not dispose these resources, eventually your application will reach the resource limit of your operating system and the application will cease to run.

See also: SWT: Managing Operating System Resources

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.