Functions | |
EAPI int | ecore_x_dpms_query (void) |
Checks if the X DPMS extension is available on the server. | |
EAPI int | ecore_x_dpms_capable_get (void) |
Checks if the X server is capable of DPMS. | |
EAPI int | ecore_x_dpms_enabled_get (void) |
Checks the DPMS state of the display. | |
EAPI void | ecore_x_dpms_enabled_set (int enabled) |
Sets the DPMS state of the display. | |
EAPI void | ecore_x_dpms_timeouts_get (unsigned int *standby, unsigned int *suspend, unsigned int *off) |
Gets the timeouts. | |
EAPI int | ecore_x_dpms_timeouts_set (unsigned int standby, unsigned int suspend, unsigned int off) |
Sets the timeouts. | |
EAPI unsigned int | ecore_x_dpms_timeout_standby_get () |
Returns the amount of time of inactivity before standby mode is invoked. | |
EAPI unsigned int | ecore_x_dpms_timeout_suspend_get () |
Returns the amount of time of inactivity before the second level of power saving is invoked. | |
EAPI unsigned int | ecore_x_dpms_timeout_off_get () |
Returns the amount of time of inactivity before the third and final level of power saving is invoked. | |
EAPI void | ecore_x_dpms_timeout_standby_set (unsigned int new_timeout) |
Sets the standby timeout (in unit of seconds). | |
EAPI void | ecore_x_dpms_timeout_suspend_set (unsigned int new_timeout) |
Sets the suspend timeout (in unit of seconds). | |
EAPI void | ecore_x_dpms_timeout_off_set (unsigned int new_timeout) |
Sets the off timeout (in unit of seconds). |
EAPI int ecore_x_dpms_capable_get | ( | void | ) |
Checks if the X server is capable of DPMS.
1
if the X server is capable of DPMS, 0
otherwise. EAPI int ecore_x_dpms_enabled_get | ( | void | ) |
Checks the DPMS state of the display.
1
if DPMS is enabled, 0
otherwise. EAPI void ecore_x_dpms_enabled_set | ( | int | enabled | ) |
Sets the DPMS state of the display.
enabled | 0 to disable DPMS characteristics of the server, enable it otherwise. |
EAPI int ecore_x_dpms_query | ( | void | ) |
Checks if the X DPMS extension is available on the server.
1
if the X DPMS extension is available, 0
otherwise. EAPI unsigned int ecore_x_dpms_timeout_off_get | ( | ) |
Returns the amount of time of inactivity before the third and final level of power saving is invoked.
EAPI void ecore_x_dpms_timeout_off_set | ( | unsigned int | new_timeout | ) |
Sets the off timeout (in unit of seconds).
off | Amount of time of inactivity before the monitor is shut off. |
EAPI unsigned int ecore_x_dpms_timeout_standby_get | ( | ) |
Returns the amount of time of inactivity before standby mode is invoked.
EAPI void ecore_x_dpms_timeout_standby_set | ( | unsigned int | new_timeout | ) |
Sets the standby timeout (in unit of seconds).
new_standby | Amount of time of inactivity before standby mode will be invoked. |
EAPI unsigned int ecore_x_dpms_timeout_suspend_get | ( | ) |
Returns the amount of time of inactivity before the second level of power saving is invoked.
EAPI void ecore_x_dpms_timeout_suspend_set | ( | unsigned int | new_timeout | ) |
Sets the suspend timeout (in unit of seconds).
suspend | Amount of time of inactivity before the screen is placed into suspend mode. |
EAPI void ecore_x_dpms_timeouts_get | ( | unsigned int * | standby, | |
unsigned int * | suspend, | |||
unsigned int * | off | |||
) |
Gets the timeouts.
The values are in unit of seconds.
standby | Amount of time of inactivity before standby mode will be invoked. | |
suspend | Amount of time of inactivity before the screen is placed into suspend mode. | |
off | Amount of time of inactivity before the monitor is shut off. |
EAPI int ecore_x_dpms_timeouts_set | ( | unsigned int | standby, | |
unsigned int | suspend, | |||
unsigned int | off | |||
) |
Sets the timeouts.
The values are in unit of seconds.
standby | Amount of time of inactivity before standby mode will be invoked. | |
suspend | Amount of time of inactivity before the screen is placed into suspend mode. | |
off | Amount of time of inactivity before the monitor is shut off. |