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 125: Line 125:
 
<td>unselectedImageVisible</td>
 
<td>unselectedImageVisible</td>
 
<td>CTabFolder { unselectedImageVisible: true }</td>
 
<td>CTabFolder { unselectedImageVisible: true }</td>
 +
</tr>
 +
</table>
 +
<p>
 +
<table>
 +
<tr>
 +
<th>SWT Widgets</th>
 +
<th>SWT Method</th>
 +
<th>CSS Pseudo Selector</th>
 +
<th>CSS Example</th>
 
</tr>
 
</tr>
 
</table>
 
</table>

Revision as of 15:28, 25 February 2009

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

font-size
font-weight

font-family
Label { font-style: italic;

          font-size: 12;
          font-weight: bold;

          font-family: "Terminal"; }
any control setForeground(Color) color Button { color: #FF0000 }
CTabFolder setBorderVisible(Boolean) borderVisible CTabFolder { borderVisible: true }
CTabFolder setMaximized(Boolean) maximized CTabFolder { maximized: true }
CTabFolder setMinimized(Boolean) minimized CTabFolder { minimized: true }
CTabFolder setMaximizeVisible(Boolean) maximizeVisible CTabFolder { maximizeVisible: true }
CTabFolder setMinimizeVisible(Boolean) minimizeVisible CTabFolder { minimizeVisible: true }
CTabFolder setMRUVisible(Boolean) mruVisible CTabFolder { mruVisible: true }
CTabFolder setShowClose(Boolean) showClose CTabFolder { showClose: true }
CTabFolder setSimple(Boolean) simple CTabFolder { simple: true }
CTabFolder setSingle(Boolean) single CTabFolder { single: true }
CTabFolder setUnselectedCloseVisible(Boolean) unselectedCloseVisible CTabFolder { unselectedCloseVisible: true }
CTabFolder setUnselectedImageVisible(Boolean) unselectedImageVisible CTabFolder { unselectedImageVisible: true }

SWT Widgets SWT Method CSS Pseudo Selector CSS Example

Back to the top