Go to the source code of this file.
Classes | |
class | YDisplay |
class | YDisplayLayer |
Macros | |
#define | _Y_ALIGN |
#define | _Y_DISPLAYTYPE_ENUM |
#define | _Y_ENABLED_ENUM |
#define | _Y_ORIENTATION_ENUM |
#define | Y_BRIGHTNESS_INVALID (YAPI_INVALID_UINT) |
#define | Y_COMMAND_INVALID (YAPI_INVALID_STRING) |
#define | Y_DISPLAYHEIGHT_INVALID (YAPI_INVALID_UINT) |
#define | Y_DISPLAYWIDTH_INVALID (YAPI_INVALID_UINT) |
#define | Y_LAYERCOUNT_INVALID (YAPI_INVALID_UINT) |
#define | Y_LAYERHEIGHT_INVALID (YAPI_INVALID_UINT) |
#define | Y_LAYERWIDTH_INVALID (YAPI_INVALID_UINT) |
#define | Y_STARTUPSEQ_INVALID (YAPI_INVALID_STRING) |
Typedefs | |
typedef void(* | YDisplayValueCallback) (YDisplay *func, const string &functionValue) |
Functions | |
YDisplay * | yFindDisplay (const string &func) |
YDisplay * | yFirstDisplay (void) |
#define _Y_ALIGN |
Definition at line 93 of file yocto_display.h.
#define _Y_DISPLAYTYPE_ENUM |
Definition at line 73 of file yocto_display.h.
#define _Y_ENABLED_ENUM |
Definition at line 55 of file yocto_display.h.
#define _Y_ORIENTATION_ENUM |
Definition at line 63 of file yocto_display.h.
#define Y_BRIGHTNESS_INVALID (YAPI_INVALID_UINT) |
Definition at line 82 of file yocto_display.h.
#define Y_COMMAND_INVALID (YAPI_INVALID_STRING) |
Definition at line 88 of file yocto_display.h.
#define Y_DISPLAYHEIGHT_INVALID (YAPI_INVALID_UINT) |
Definition at line 84 of file yocto_display.h.
#define Y_DISPLAYWIDTH_INVALID (YAPI_INVALID_UINT) |
Definition at line 83 of file yocto_display.h.
#define Y_LAYERCOUNT_INVALID (YAPI_INVALID_UINT) |
Definition at line 87 of file yocto_display.h.
#define Y_LAYERHEIGHT_INVALID (YAPI_INVALID_UINT) |
Definition at line 86 of file yocto_display.h.
#define Y_LAYERWIDTH_INVALID (YAPI_INVALID_UINT) |
Definition at line 85 of file yocto_display.h.
#define Y_STARTUPSEQ_INVALID (YAPI_INVALID_STRING) |
Definition at line 81 of file yocto_display.h.
typedef void(* YDisplayValueCallback) (YDisplay *func, const string &functionValue) |
Definition at line 53 of file yocto_display.h.
enum Y_ALIGN |
Definition at line 94 of file yocto_display.h.
enum Y_DISPLAYTYPE_enum |
Enumerator | |
---|---|
Y_DISPLAYTYPE_MONO | |
Y_DISPLAYTYPE_GRAY | |
Y_DISPLAYTYPE_RGB | |
Y_DISPLAYTYPE_INVALID |
Definition at line 74 of file yocto_display.h.
enum Y_ENABLED_enum |
Definition at line 56 of file yocto_display.h.
enum Y_ORIENTATION_enum |
Enumerator | |
---|---|
Y_ORIENTATION_LEFT | |
Y_ORIENTATION_UP | |
Y_ORIENTATION_RIGHT | |
Y_ORIENTATION_DOWN | |
Y_ORIENTATION_INVALID |
Definition at line 64 of file yocto_display.h.
|
inline |
Retrieves a display for a given identifier. The identifier can be specified using several formats:
This function does not require that the display is online at the time it is invoked. The returned object is nevertheless valid. Use the method YDisplay.isOnline() to test if the display is indeed online at a given time. In case of ambiguity when looking for a display by logical name, no error is notified: the first instance found is returned. The search is performed first by hardware name, then by logical name.
If a call to this object's is_online() method returns FALSE although you are certain that the matching device is plugged, make sure that you did call registerHub() at application initialization time.
func | : a string that uniquely characterizes the display |
Definition at line 1101 of file yocto_display.h.
|
inline |
Starts the enumeration of displays currently accessible. Use the method YDisplay.nextDisplay() to iterate on next displays.
Definition at line 1112 of file yocto_display.h.