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
(Pseudo classes which can be used in CSS to style SWT widgets)
(Widget: Control)
Line 21: Line 21:
 
<td></td>
 
<td></td>
 
<td>border-color</td>
 
<td>border-color</td>
<td>Button { border-color: ##FF0000; }</td>
+
<td>Button { border-color: #FF0000; }</td>
 
</tr>
 
</tr>
 
<tr>
 
<tr>

Revision as of 18:09, 8 July 2009

Many SWT property setting methods can be accessed via CSS. These tables show the equivalent mapping from SWT method to CSS property. They also show pseudo selectors which can be used to choose styling based on widget state.

Mapping of SWT method to CSS property

Widget: Control

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

font-size
font-weight

font-family
Label { font-style: italic;

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

          font-family: "Terminal"; }
setForeground(Color) color Button { color: #FF0000 }


Widget: Button

SWT Method CSS Property Name CSS Example
setAlignment(int) alignment Label { alignment: up; } /* if pushbutton mode */


Widget: Label

SWT Method CSS Property Name CSS Example
setAlignment(int) alignment Label { alignment: center; }


Widget: CTabFolder

SWT Method CSS Property Name CSS Example
setBorderVisible(boolean) border-visible CTabFolder { border-visible: true }
setMaximized(boolean) maximized CTabFolder { maximized: true }
setMinimized(boolean) minimized CTabFolder { minimized: true }
setMaximizeVisible(boolean) maximize-visible CTabFolder { maximize-visible: true }
setMinimizeVisible(boolean) minimize-visible CTabFolder { minimize-visible: true }
setMRUVisible(boolean) mru-visible CTabFolder { mru-visible: true }
setShowClose(boolean) show-close CTabFolder { show-close: true }
setSimple(boolean) simple CTabFolder { simple: true }
setSingle(boolean) single CTabFolder { single: true }
setUnselectedCloseVisible(boolean) unselected-close-visible CTabFolder { unselected-close-visible: true }
setUnselectedImageVisible(boolean) unselected-image-visible CTabFolder { unselected-image-visible: true }


Widget: CTabItem

SWT Method CSS Property Name CSS Example
setShowClose(boolean) show-close CTabItem { show-close: true }


Pseudo classes which can be used in CSS to style SWT widgets

SWT Widgets CSS Pseudo Selector CSS Example
Control :focus CTabFolder:focus { background-color: #FF0000; }
Control :visible † Shell:visible { background-color: #FF0000; }
Control :enabled † Text:enabled { background-color: #FF0000; }
Control :disabled † Text:disabled { background-color: #FF0000; }
Shell :active Shell:active { background-color: #FF0000; }
Button :checked Button:checked { background-color: #FF0000; }
CTabFolder :selected CTabFolder:selected { background-color: #FF0000; }
CTabItem :selected CTabItem:selected { font-weight: bold; }


† As of yet styles are only applied when SWT UI is initially loaded, if widget state is changed afterwards, changes will not take effect

Back to the top