- DEVANAGARI - Static variable in class ej.microui.display.Font
-
Constant for devanagari font identifier.
- dispatchButton(int, ButtonEventHandler) - Static method in class ej.microui.event.controller.DispatchHelper
-
Dispatch button events.
- dispatchEvent(int, EventGeneratorsHandler) - Static method in class ej.microui.event.controller.DispatchHelper
-
Dispatch MicroUI events.
- DispatchEventHandler - Class in ej.microui.event.controller
-
Dispatches events by event type (defined
Event
) and data (event type specific).
- DispatchEventHandler() - Constructor for class ej.microui.event.controller.DispatchEventHandler
-
Creates a dispatch event handler.
- DispatchHelper - Class in ej.microui.event.controller
-
Helps dispatch some sorts of events.
- dispatchPointer(int, PointerEventHandler) - Static method in class ej.microui.event.controller.DispatchHelper
-
Dispatch pointer events.
- Display - Class in ej.microui.display
-
A Display
object represents a pixelated screen in the platform, and there is a display for each such
pixelated screen.
- Display() - Constructor for class ej.microui.display.Display
-
- DISPLAY - Static variable in class ej.microui.event.generator.Command
-
The "display" command constant.
- Displayable - Class in ej.microui.display
-
Displayable
is an abstract class which defines the very objects that can be shown on a
Display
.
A Displayable
object is built for a specific Display
which can not be changed afterwards.
- Displayable(Display) - Constructor for class ej.microui.display.Displayable
-
The newly created displayable is built for the given display and is hidden.
- DisplayPermission - Class in ej.microui.display
-
Permission to access a Display.
- DisplayPermission(Display) - Constructor for class ej.microui.display.DisplayPermission
-
Creates a display permission for the given display with null
as name.
- DOTTED - Static variable in class ej.microui.display.GraphicsContext
-
Constant for the DOTTED
stroke style.
- DOUBLE_CLICKED - Static variable in class ej.microui.event.generator.Buttons
-
The "double clicked" action.
- doubleClickEnabled(int) - Method in class ej.microui.event.generator.Buttons
-
Returns true
if the generator should send a double click event.
- DOWN - Static variable in class ej.microui.event.generator.Command
-
The "down" command constant.
- DRAGGED - Static variable in class ej.microui.event.generator.Pointer
-
The "dragged" action.
- draw(GraphicsContext, int, int, int) - Method in class ej.microui.display.RenderableString
-
Draws the string using the font and given graphics context color.
- draw(GraphicsContext, Image, int[], int, int, int) - Method in class ej.microui.display.transform.ImageDeformation
-
Draws a deformed image at the given anchor point.
The image anchor point is at position @{code (x,y)}.
- draw(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageFlip
-
- draw(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageScale
-
- drawBilinear(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageRotation
-
Draws the given
Image
applying the current rotation.
- drawBilinear(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageScale
-
Draw the
Image
in the
GraphicsContext
at given anchor position and using the current scaling
factor.
- drawChar(char, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a character using the current font and color.
The text anchor point is at position (x,y)
.
- drawChars(char[], int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws some characters using the current font and color.
The text anchor point is at position (x,y)
.
- drawCircle(int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a circle covering the rectangle specified by its diameter, using the current color and
stroke style.
- drawCircle(GraphicsContext, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Draws the outline of a circle covering the rectangle specified by its diameter, using the
GraphicsContext
's current color.
The center of the circle is defined as the center of the rectangle whose origin is at
(x,y)
(upper-left corner) and whose dimension is given by
diameter
.
If
diameter
is negative, nothing is drawn.
- drawCircleArc(int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a circular arc covering the specified square, using the current color and stroke style.
- drawCircleArc(GraphicsContext, int, int, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Draws the outline of a circular arc covering the specified square, using the current color, stroke style and caps
The arc is drawn from startAngle
up to arcAngle
degrees.
- drawEllipse(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a ellipse covering the specified rectangle, using the current color and stroke style.
- drawEllipse(GraphicsContext, int, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Draws the outline of a ellipse covering the specified rectangle, using the
GraphicsContext
's current
color.
The center of the ellipse is defined as the center of the rectangle whose origin is at
(x,y)
(upper-left corner) and whose dimension is given by
width
and
height
.
If either
width
or
height
is negative, nothing is drawn.
- drawEllipseArc(int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a elliptical arc covering the specified rectangle, using the current color and stroke style.
- drawHorizontalLine(int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws an horizontal line from (x,y)
to (x+width,y)
using the current color and stroke
style.
- drawImage(Image, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws an image at the given anchor point.
- drawImage(Image, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws an image at the given anchor point.
- drawLine(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a line from (x1,y1)
to (x2,y2)
using the current color and stroke style.
- drawLine(GraphicsContext, int, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Draws a line from
(x1,y1)
to
(x2,y2)
using the
GraphicsContext
's current color.
- drawNearestNeighbor(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageRotation
-
Draws the given
Image
applying the current rotation.
- drawNearestNeighbor(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageScale
-
Draw the
Image
in the
GraphicsContext
at given anchor position and using the current scaling
factor.
- drawPixel(int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a pixel at (x,y)
using the current color.
- drawPoint(GraphicsContext, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
- drawPolygon(int[]) - Method in class ej.microui.display.GraphicsContext
-
Draws the closed polygon which is defined by the array of integer coordinates, using the current color and stroke
style.
- drawPolygon(int[], int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the closed polygon which is defined by the array of integer coordinates, using the current color and stroke
style.
- drawRect(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of the specified rectangle using the current color and stroke style.
- drawRegion(Image, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of an image.
- drawRegion(Image, int, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of an image.
- drawRegion(Display, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of a display.
- drawRegion(Display, int, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of a display.
- drawRoundRect(int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of the specified rounded corner rectangle using the current color and stroke style.
- drawString(String, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the string using the current font and color.
The text anchor point is at position (x,y)
.
- drawSubstring(String, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the string from offset
to offset+length
using the current font and color.
- drawVerticalLine(int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a vertical line from (x,y)
to (x,y+height-1)
using the current color and stroke
style.
- dropOnFull() - Method in class ej.microui.event.generator.Keyboard
-
Subclasses should override this method to specify their policy.