Class DefaultColumnFooterRenderer
java.lang.Object
org.eclipse.nebula.widgets.grid.AbstractRenderer
org.eclipse.nebula.widgets.grid.AbstractInternalWidget
org.eclipse.nebula.widgets.grid.GridFooterRenderer
org.eclipse.nebula.widgets.grid.internal.DefaultColumnFooterRenderer
- All Implemented Interfaces:
IInternalWidget,IRenderer
public class DefaultColumnFooterRenderer extends GridFooterRenderer
The column footer renderer.
- Since:
- 2.0.0
-
Field Summary
Fields Modifier and Type Field Description (package private) intarrowMargin(package private) intbottomMargin(package private) intimageSpacing(package private) intleftMargin(package private) intrightMargin(package private) inttopMarginFields inherited from interface org.eclipse.nebula.widgets.grid.IInternalWidget
LeftMouseButtonDown, MouseMove -
Constructor Summary
Constructors Constructor Description DefaultColumnFooterRenderer() -
Method Summary
Modifier and Type Method Description org.eclipse.swt.graphics.PointcomputeSize(org.eclipse.swt.graphics.GC gc, int wHint, int hHint, java.lang.Object value)Returns the size of the given value's visual representation.org.eclipse.swt.graphics.RectanglegetTextBounds(java.lang.Object value, boolean preferred)Returns the bounds of the text in the cell.booleannotify(int event, org.eclipse.swt.graphics.Point point, java.lang.Object value)Mechanism used to notify the light weight widgets that an event occurred that it might be interested in.voidpaint(org.eclipse.swt.graphics.GC gc, java.lang.Object value)Paints the visual representation of the given value on the given GC.Methods inherited from class org.eclipse.nebula.widgets.grid.GridFooterRenderer
getTruncationStyle, setTruncationStyleMethods inherited from class org.eclipse.nebula.widgets.grid.AbstractInternalWidget
getHoverDetail, setHoverDetailMethods inherited from class org.eclipse.nebula.widgets.grid.AbstractRenderer
getBounds, getDisplay, getSize, isExpanded, isFocus, isHover, isMouseDown, isSelected, setBounds, setBounds, setDisplay, setExpanded, setFocus, setHover, setLocation, setLocation, setMouseDown, setSelected, setSize, setSizeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.eclipse.nebula.widgets.grid.IRenderer
setBounds, setBounds, setDisplay, setExpanded, setFocus, setHover, setLocation, setLocation, setMouseDown, setSelected, setSize, setSize
-
Field Details
-
leftMargin
int leftMargin -
rightMargin
int rightMargin -
topMargin
int topMargin -
bottomMargin
int bottomMargin -
arrowMargin
int arrowMargin -
imageSpacing
int imageSpacing
-
-
Constructor Details
-
DefaultColumnFooterRenderer
public DefaultColumnFooterRenderer()
-
-
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
-
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
Transformto 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
-
notify
public boolean notify(int event, org.eclipse.swt.graphics.Point point, java.lang.Object value)Mechanism used to notify the light weight widgets that an event occurred that it might be interested in.- Parameters:
event- Event type.point- Location of event.value- New value.- Returns:
- widget handled the event.
-
getTextBounds
public org.eclipse.swt.graphics.Rectangle getTextBounds(java.lang.Object value, boolean preferred)Returns the bounds of the text in the cell. This is used when displaying in-place tooltips. Ifnullis returned here, in-place tooltips will not be displayed. If thepreferredargument istruethen the returned bounds should be large enough to show the entire text. Ifpreferredisfalsethen the returned bounds should be be relative to the current bounds.- Overrides:
getTextBoundsin classGridFooterRenderer- Parameters:
value- the object being rendered.preferred- true if the preferred width of the text should be returned.- Returns:
- bounds of the text.
-