@ColorCodes(value={"paint.line","paint.divider","paint.insertion"}) public class EclipseStationPaint extends java.lang.Object implements StationPaint
Constructor and Description |
---|
EclipseStationPaint() |
Modifier and Type | Method and Description |
---|---|
void |
drawDivider(java.awt.Graphics g,
DockStation station,
java.awt.Rectangle bounds)
Draws a divider between two elements.
|
void |
drawInsertion(java.awt.Graphics g,
DockStation station,
java.awt.Rectangle stationBounds,
java.awt.Rectangle dockableBounds)
Paints some markings when a
Dockable is added to a DockStation . |
void |
drawInsertionLine(java.awt.Graphics g,
DockStation station,
int x1,
int y1,
int x2,
int y2)
Paints a single line from x1/y1 to x2/y2.
|
void |
drawRemoval(java.awt.Graphics g,
DockStation station,
java.awt.Rectangle stationBounds,
java.awt.Rectangle dockableBounds)
Paints some markings when a
Dockable is removed from a DockStation . |
public void drawInsertionLine(java.awt.Graphics g, DockStation station, int x1, int y1, int x2, int y2)
StationPaint
drawInsertionLine
in interface StationPaint
g
- the graphics context used for paintingstation
- the station on which to paintx1
- the x-coordinate of the first end of the liney1
- the y-coordinate of the first end of the linex2
- the x-coordinate of the second end of the liney2
- the y-coordinate of the second end of the linepublic void drawDivider(java.awt.Graphics g, DockStation station, java.awt.Rectangle bounds)
StationPaint
drawDivider
in interface StationPaint
g
- the graphics context used for paintingstation
- the station on which to paintbounds
- the rectangle which marks the whole dividerpublic void drawInsertion(java.awt.Graphics g, DockStation station, java.awt.Rectangle stationBounds, java.awt.Rectangle dockableBounds)
StationPaint
Dockable
is added to a DockStation
.drawInsertion
in interface StationPaint
g
- the graphics context used for paintingstation
- the station on which to paintstationBounds
- the area on the station which will be affected by the insertiondockableBounds
- the bounds that the new child will havepublic void drawRemoval(java.awt.Graphics g, DockStation station, java.awt.Rectangle stationBounds, java.awt.Rectangle dockableBounds)
StationPaint
Dockable
is removed from a DockStation
.drawRemoval
in interface StationPaint
g
- the graphics context used for paintingstation
- the station on which to paintstationBounds
- the area on the station which will be affected by the removaldockableBounds
- the bounds that the old child currently has