Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "E4/CSS/SWT Mapping"

< E4‎ | CSS
Line 22: Line 22:
 
<td></td>
 
<td></td>
 
<td>border-color</td>
 
<td>border-color</td>
<td>Button { border-color: ##FF0000 }</td>
+
<td>Label { font-style: italic;<br>
 +
        font-size:12</td>
 
</tr>
 
</tr>
 
<tr>
 
<tr>

Revision as of 14:57, 25 February 2009

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