Available Methods
- NONE
- BORDER
- V_SCROLL
- PUSH
- CHECK
- LEFT
- MULTI
- SINGLE
- READ_ONLY
- OK
- H_SCROLL
- FILL
- CENTER
- WRAP
- error ( )
- ICON_ERROR
- RIGHT
- NULL
- HORIZONTAL
- FULL_SELECTION
- BOLD
- SEPARATOR
- DEFAULT
- RADIO
- RESIZE
- FLAT
- VERTICAL
- TOP
- DROP_DOWN
- ITALIC
- NORMAL
- SAVE
- ICON_INFORMATION
- CTRL
- SHIFT
- NO_FOCUS
- APPLICATION_MODAL
- DIALOG_TRIM
- DOUBLE_BUFFERED
- OPEN
- CR
- ARROW_DOWN
- Selection ( )
- YES
- CANCEL
- BOTTOM
- NO_BACKGROUND
- NO
- CLOSE
- ICON_WARNING
- RIGHT_TO_LEFT
- LEFT_TO_RIGHT
- TOGGLE
- SHEET
- DOWN
- BEGINNING
- MAX
- ARROW_LEFT
- ARROW_RIGHT
- NO_TRIM
- END
- ON_TOP
- MIN
- ARROW_UP
- KeyDown ( )
- KeyUp ( )
- ICON_QUESTION
- Dispose ( )
- ALT
- CASCADE
- VIRTUAL
- SHADOW_ETCHED_IN
- PAGE_UP
- DEL
- FocusOut ( )
- Traverse ( )
- PASSWORD
- SHELL_TRIM
- ARROW
- Deactivate ( )
- BS
- FocusIn ( )
- ESC
- LEAD
- MouseUp ( )
- SMOOTH
- MouseDoubleClick ( )
- TRAVERSE_TAB_NEXT
- UP
- MouseDown ( )
- TITLE
- Paint ( )
- PAGE_DOWN
- Move ( )
- HOME
- SHADOW_IN
- TRAVERSE_TAB_PREVIOUS
- F2 ( )
- LINE_SOLID
- HIDE_SELECTION
- JOIN_BEVEL
- SHADOW_NONE
- Modify ( )
- BAR
- SEARCH
- COMMAND
- LINE_DASHDOT
- ICON_SEARCH
- TAB
- SHADOW_OUT
- LINE_DASH
- KEYPAD_CR
- LINE_DOT
- JOIN_ROUND
- MOD1 ( )
- TOOL
- MODIFIER_MASK
- CURSOR_ARROW
- IMAGE_GIF
- LF
- MouseEnter ( )
- MouseMove ( )
- TRAVERSE_ARROW_PREVIOUS
- UNDERLINE_LINK
- MODELESS
- CURSOR_HAND
- IMAGE_JPEG
- MouseHover ( )
- CURSOR_WAIT
- getPlatform ( )
- IMAGE_BMP
- PRIMARY_MODAL
- CAP_FLAT
- UNDERLINE_ERROR
- POP_UP
- CAP_ROUND
- SIMPLE
- DATE
- EraseItem ( )
- TRANSPARENT
- TIME
- CAP_SQUARE
- COLOR_DARK_GREEN
- FOREGROUND
- INHERIT_DEFAULT
- KEYPAD_SUBTRACT
- TRAVERSE_ARROW_NEXT
- Help ( )
- LINE_DASHDOTDOT
- TRAVERSE_ESCAPE
- MouseExit ( )
- JOIN_MITER
- NO_SCROLL
- Collapse ( )
- F9 ( )
- FILL_WINDING
- HIGH
- ERROR_NULL_ARGUMENT
- BORDER_DOT
- CAPS_LOCK
- ICON_CANCEL
- KEYPAD_4 ( )
- PATH_MOVE_TO
- MOD2 ( )
- INDETERMINATE
- NO_REDRAW_RESIZE
- INSERT
- DefaultSelection ( )
- SYSTEM_MODAL
- IMAGE_COPY
- CALENDAR
- BACKGROUND
- MOD4 ( )
Related Classes
- java.io.File
- org.eclipse.swt.widgets.Composite
- org.eclipse.swt.widgets.Display
- org.eclipse.swt.widgets.Button
- org.eclipse.swt.widgets.Label
- org.eclipse.swt.widgets.Shell
- org.eclipse.swt.layout.GridData
- org.eclipse.swt.widgets.Text
- org.eclipse.swt.layout.GridLayout
- org.eclipse.swt.events.SelectionEvent
- org.eclipse.swt.events.SelectionAdapter
- org.eclipse.swt.widgets.Control
- org.eclipse.swt.graphics.Image
- org.eclipse.swt.widgets.Group
- org.eclipse.swt.widgets.Event
- org.eclipse.swt.graphics.Point
- org.eclipse.swt.graphics.Color
- org.eclipse.ui.PlatformUI
- org.eclipse.swt.widgets.Listener
- org.eclipse.swt.events.SelectionListener
- org.eclipse.swt.events.ModifyListener
- org.eclipse.swt.widgets.Combo
- org.eclipse.swt.widgets.FileDialog
- org.eclipse.swt.events.ModifyEvent
- org.eclipse.jface.viewers.IStructuredSelection
Java Code Examples for org.eclipse.swt.SWT#FOREGROUND
The following examples show how to use
org.eclipse.swt.SWT#FOREGROUND .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CenteredContentCellPaint.java From ermasterr with Apache License 2.0 | 6 votes |
@Override public void handleEvent(final Event event) { if (event.index == colIndex) { if (event.type == SWT.EraseItem) { event.detail &= (Integer.MAX_VALUE ^ SWT.FOREGROUND); } else if (event.type == SWT.PaintItem) { final TableItem item = (TableItem) event.item; final Image img = item.getImage(colIndex); if (img != null) { final Rectangle size = img.getBounds(); final Table tbl = (Table) event.widget; event.gc.drawImage(img, event.x + (tbl.getColumn(colIndex).getWidth() - size.width) / 2, event.y + (tbl.getItemHeight() - size.height) / 2); } } } }
Example 2
Source File: CenteredContentCellPaint.java From erflute with Apache License 2.0 | 6 votes |
@Override public void handleEvent(Event event) { if (event.index == colIndex) { if (event.type == SWT.EraseItem) { event.detail &= (Integer.MAX_VALUE ^ SWT.FOREGROUND); } else if (event.type == SWT.PaintItem) { final TableItem item = (TableItem) event.item; final Image img = item.getImage(colIndex); if (img != null) { final Rectangle size = img.getBounds(); final Table tbl = (Table) event.widget; event.gc.drawImage(img, event.x + (tbl.getColumn(colIndex).getWidth() - size.width) / 2, event.y + (tbl.getItemHeight() - size.height) / 2); } } } }
Example 3
Source File: CenteredContentCellPaint.java From ermaster-b with Apache License 2.0 | 6 votes |
public void handleEvent(Event event) { if (event.index == colIndex) { if (event.type == SWT.EraseItem) { event.detail &= (Integer.MAX_VALUE ^ SWT.FOREGROUND); } else if (event.type == SWT.PaintItem) { TableItem item = (TableItem) event.item; Image img = item.getImage(colIndex); if (img != null) { Rectangle size = img.getBounds(); Table tbl = (Table) event.widget; event.gc.drawImage(img, event.x + (tbl.getColumn(colIndex).getWidth() - size.width) / 2, event.y + (tbl.getItemHeight() - size.height) / 2); } } } }
Example 4
Source File: TmfEventsTable.java From tracecompass with Eclipse Public License 2.0 | 4 votes |
@Override public void handleEvent(Event event) { TableItem item = (TableItem) event.item; List<?> styleRanges = (List<?>) item.getData(Key.STYLE_RANGES); GC gc = event.gc; Color background = item.getBackground(event.index); /* * Paint the background if it is not the default system color. In * Windows, if you let the widget draw the background, it will not * show the item's background color if the item is selected or hot. * If there are no style ranges and the item background is the * default system color, we do not want to paint it or otherwise we * would override the platform theme (e.g. alternating colors). */ if (styleRanges != null || !background.equals(item.getParent().getBackground())) { // we will paint the table item's background event.detail &= ~SWT.BACKGROUND; // paint the item's default background gc.setBackground(background); gc.fillRectangle(event.x, event.y, event.width, event.height); } /* * We will paint the table item's foreground. In Windows, if you * paint the background but let the widget draw the foreground, it * will override your background, unless the item is selected or * hot. */ event.detail &= ~SWT.FOREGROUND; // paint the highlighted background for all style ranges if (styleRanges != null) { Rectangle textBounds = item.getTextBounds(event.index); String text = item.getText(event.index); for (Object o : styleRanges) { if (o instanceof StyleRange) { StyleRange styleRange = (StyleRange) o; if (styleRange.data.equals(event.index)) { int startIndex = styleRange.start; int endIndex = startIndex + styleRange.length; int startX = gc.textExtent(text.substring(0, startIndex)).x; int endX = gc.textExtent(text.substring(0, endIndex)).x; gc.setBackground(styleRange.background); gc.fillRectangle(textBounds.x + startX, textBounds.y, (endX - startX), textBounds.height); } } } } }
Example 5
Source File: GamlAccessEntry.java From gama with GNU General Public License v3.0 | 4 votes |
/** * @param event */ public void erase(final Event event) { // We are only custom drawing the foreground. event.detail &= ~SWT.FOREGROUND; }