Class Win7EmptyColumnHeaderRenderer
java.lang.Object
org.eclipse.nebula.widgets.grid.AbstractRenderer
org.eclipse.nebula.widgets.grid.internal.win7.Win7EmptyColumnHeaderRenderer
- All Implemented Interfaces:
IRenderer
public class Win7EmptyColumnHeaderRenderer extends AbstractRenderer
Empty column header renderer which emulates a default Win7 L&F. This
implementation does not take into account any theme(s) applied to the OS and
only used a pre-defined set of normalColors that seem to "mostly" match the
default theme of Win7 normalColors.
-
Constructor Summary
Constructors Constructor Description Win7EmptyColumnHeaderRenderer(Win7PaletteProvider palette)
-
Method Summary
Modifier and Type Method Description org.eclipse.swt.graphics.Point
computeSize(org.eclipse.swt.graphics.GC gc, int wHint, int hHint, java.lang.Object value)
Returns the size of the given value's visual representation.void
paint(org.eclipse.swt.graphics.GC gc, java.lang.Object value)
Paints the visual representation of the given value on the given GC.void
setDisplay(org.eclipse.swt.widgets.Display d)
Set the display for the rendererMethods inherited from class org.eclipse.nebula.widgets.grid.AbstractRenderer
getBounds, getDisplay, getSize, isExpanded, isFocus, isHover, isMouseDown, isSelected, setBounds, setBounds, setExpanded, setFocus, setHover, setLocation, setLocation, setMouseDown, setSelected, setSize, setSize
-
Constructor Details
-
Win7EmptyColumnHeaderRenderer
- Parameters:
palette
-
-
-
Method Details
-
computeSize
public org.eclipse.swt.graphics.Point computeSize(org.eclipse.swt.graphics.GC gc, int wHint, int hHint, java.lang.Object value)Returns the size of the given value's visual representation.- Parameters:
gc
- convenience GC for string and text extentswHint
- given width (or SWT.DEFAULT)hHint
- given height (or SWT.DEFAULT)value
- value to be sized- Returns:
- the size
-
setDisplay
public void setDisplay(org.eclipse.swt.widgets.Display d)Set the display for the renderer- Specified by:
setDisplay
in interfaceIRenderer
- Overrides:
setDisplay
in classAbstractRenderer
- Parameters:
d
- Display
-
paint
public void paint(org.eclipse.swt.graphics.GC gc, java.lang.Object value)Paints the visual representation of the given value on the given GC. The actual class of the value object is determined by the use of the implementing class.Implementors need to respect the bounds values that may have been specified. The bounds values may affect the x and y values for all drawing operations as well as the width and heights. Implementors may use a
Transform
to translate the coordinates of all the drawing operations, otherwise they will need to offset each draw.- Parameters:
gc
- GC to paint withvalue
- the value being painted
-