Package | Description |
---|---|
com.sun.glass.ui | |
com.sun.glass.ui.delegate | |
com.sun.glass.ui.ios | |
com.sun.glass.ui.monocle | |
com.sun.glass.ui.swt | |
com.sun.prism | |
com.sun.prism.impl |
Modifier and Type | Method and Description |
---|---|
protected abstract Pixels |
Robot._getScreenCapture(int x,
int y,
int width,
int height,
boolean isHiDPI) |
abstract Pixels |
Application.createPixels(int width,
int height,
ByteBuffer data) |
abstract Pixels |
Application.createPixels(int width,
int height,
IntBuffer data) |
abstract Pixels |
Application.createPixels(int width,
int height,
IntBuffer data,
float scale) |
Pixels |
Clipboard.getPixelsForRawImage(byte[] rawimage) |
Pixels |
Robot.getScreenCapture(int x,
int y,
int width,
int height)
Returns a capture of the specified area of the screen.
|
Pixels |
Robot.getScreenCapture(int x,
int y,
int width,
int height,
boolean isHiDPI)
Returns a capture of the specified rectangular area of the screen.
|
Modifier and Type | Method and Description |
---|---|
protected abstract long |
Cursor._createCursor(int x,
int y,
Pixels pixels) |
protected abstract void |
Window._setIcon(long ptr,
Pixels pixels) |
protected abstract void |
View._uploadPixels(long ptr,
Pixels pixels) |
abstract Cursor |
Application.createCursor(int x,
int y,
Pixels pixels) |
MenuItem |
Application.createMenuItem(String title,
MenuItem.Callback callback,
int shortcutKey,
int shortcutModifiers,
Pixels pixels) |
void |
Window.setIcon(Pixels pixels) |
boolean |
MenuItem.setPixels(Pixels pixels) |
boolean |
Menu.setPixels(Pixels pixels) |
void |
View.uploadPixels(Pixels pixels)
This method dumps the pixels on to the view.
|
Constructor and Description |
---|
Cursor(int x,
int y,
Pixels pixels) |
MenuItem(String title,
MenuItem.Callback callback,
int shortcutKey,
int shortcutModifiers,
Pixels pixels) |
Modifier and Type | Method and Description |
---|---|
boolean |
MenuItemDelegate.createMenuItem(String title,
MenuItem.Callback callback,
int shortcutKey,
int shortcutModifiers,
Pixels pixels,
boolean enabled,
boolean checked) |
boolean |
MenuItemDelegate.setPixels(Pixels pixels) |
boolean |
MenuDelegate.setPixels(Pixels pixels) |
Modifier and Type | Method and Description |
---|---|
Pixels |
IosApplication.createPixels(int width,
int height,
ByteBuffer data) |
Pixels |
IosApplication.createPixels(int width,
int height,
IntBuffer data) |
Pixels |
IosApplication.createPixels(int width,
int height,
IntBuffer data,
float scale) |
Modifier and Type | Method and Description |
---|---|
Cursor |
IosApplication.createCursor(int x,
int y,
Pixels pixels) |
Modifier and Type | Method and Description |
---|---|
Pixels |
MonocleApplication.createPixels(int width,
int height,
ByteBuffer data) |
Pixels |
MonocleApplication.createPixels(int width,
int height,
IntBuffer data) |
Pixels |
MonocleApplication.createPixels(int width,
int height,
IntBuffer data,
float scale) |
Modifier and Type | Method and Description |
---|---|
Cursor |
MonocleApplication.createCursor(int x,
int y,
Pixels pixels) |
Modifier and Type | Method and Description |
---|---|
Pixels |
SWTApplication.createPixels(int width,
int height,
ByteBuffer data) |
Pixels |
SWTApplication.createPixels(int width,
int height,
IntBuffer data) |
Pixels |
SWTApplication.createPixels(int width,
int height,
IntBuffer data,
float scale) |
Modifier and Type | Method and Description |
---|---|
Cursor |
SWTApplication.createCursor(int x,
int y,
Pixels pixels) |
Modifier and Type | Method and Description |
---|---|
Pixels |
PixelSource.getLatestPixels()
Gets the next "latest" set of
Pixels to be processed or displayed. |
Modifier and Type | Method and Description |
---|---|
void |
PixelSource.doneWithPixels(Pixels used)
Indicates that the specified non-null
Pixels object which was
obtained from PixelSource.getLatestPixels() is done being processed and
can be reused for future pixel deliveries if needed. |
Modifier and Type | Method and Description |
---|---|
Pixels |
QueuedPixelSource.getLatestPixels() |
Pixels |
QueuedPixelSource.getUnusedPixels(int w,
int h,
float scale)
Return an unused Pixels with the indicated dimensions and scale.
|
Modifier and Type | Method and Description |
---|---|
void |
QueuedPixelSource.doneWithPixels(Pixels used) |
void |
QueuedPixelSource.enqueuePixels(Pixels pixels)
Place the indicated
Pixels object into the enqueued state,
replacing any other objects that are currently enqueued but not yet
being used by the consumer. |
Copyright © 2020. All rights reserved.