| Package | Description |
|---|---|
| ej.microui.display |
Contains classes to implement a MicroUI Display and to implement MicroUI Painter drawings.
|
| Modifier and Type | Method and Description |
|---|---|
MicroUIImageFormat |
LLUIDisplay.getDisplayFormat()
Gets the display format.
|
MicroUIImageFormat |
MicroUIImage.getFormat()
Returns the MicroUI Image format.
|
MicroUIImageFormat |
DisplayDrawer.handledFormat() |
MicroUIImageFormat |
UIDrawing.handledFormat()
Gets the supported buffered image format.
|
MicroUIImageFormat |
UIImageDrawing.handledFormat()
Gets the supported custom image format.
|
static MicroUIImageFormat |
MicroUIImageFormat.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MicroUIImageFormat[] |
MicroUIImageFormat.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
BufferedImageProvider |
LLUIDisplay.getBufferedImageProvider(MicroUIImageFormat format)
Gets the buffered image provider used to create images with the given format.
|
UIDrawing |
LLUIDisplay.getUIDrawer(MicroUIImageFormat format)
Gets the drawer used to draw with the given format.
|
UIImageDrawing |
LLUIDisplay.getUIImageDrawer(MicroUIImageFormat format)
Gets the image drawer used to draw the images with the given format.
|
boolean |
LLUIDisplay.isCustomFormat(MicroUIImageFormat format)
Tells if format is a custom format or not.
|
boolean |
LLUIDisplay.isDisplayFormat(MicroUIImageFormat format)
Tells if format is the display format or not.
|
void |
LLUIDisplay.unregisterBufferedImageProvider(MicroUIImageFormat format)
Unregisters the buffered image provider registered for a specific format.
|
void |
LLUIDisplay.unregisterUIDrawer(MicroUIImageFormat format)
Unregisters the drawer registered for the given format.
|
void |
LLUIDisplay.unregisterUIImageDrawer(MicroUIImageFormat format)
Unregisters the drawer registered for the given format.
|