Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

E4/CSS/SWT Mapping

< E4‎ | CSS
Revision as of 14:57, 25 February 2009 by Unnamed Poltroon (Talk)

SWT Widgets SWT Method CSS Property Name CSS Example
control setBackground(Color) background-color Button { background-color: #FF0000 }
control setBackgroundImage(Image) background-image Button { background-image: some url }
control border-color Label { font-style: italic;
font-size:12
control border-width Button { border-width: 3 }
control border-style Button { border-style: dotted }
control setCurosr(Cursor) cursor Shell { cursor:crosshair }
control setFont(Font) font-style

font-size
font-weight

font-family
Label { cursor:crosshair }

Back to the top