diff options
author | Christopher Michael <cp.michael@samsung.com> | 2013-02-19 10:59:47 +0000 |
---|---|---|
committer | Deon Thomas <PrinceAMD.Elive@gmail.com> | 2013-06-28 03:28:51 -0400 |
commit | 3b79dfada221a460b5994c5b1c2e9d2128f8ced5 (patch) | |
tree | 9de5baa6f1fd03b4112e3336c47437f6a48c7f47 /src/modules | |
parent | 08d80f1c7ded7b1c6bd4b5202e4cb42ca4fdcd35 (diff) | |
download | enlightenment-3b79dfada221a460b5994c5b1c2e9d2128f8ced5.tar.gz |
Backport: 86b27ba :: Start on monitor Changes.
Signed-off-by: Christopher Michael <cp.michael@samsung.com>
SVN revision: 84213
Signed-off-by: Deon Thomas <PrinceAMD.Elive@gmail.com>
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/conf_randr/e_smart_monitor.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/modules/conf_randr/e_smart_monitor.h b/src/modules/conf_randr/e_smart_monitor.h index d4d7c1a595..4c3189b876 100644 --- a/src/modules/conf_randr/e_smart_monitor.h +++ b/src/modules/conf_randr/e_smart_monitor.h @@ -3,6 +3,20 @@ # ifndef E_SMART_MONITOR_H # define E_SMART_MONITOR_H +typedef enum _E_Smart_Monitor_Changes E_Smart_Monitor_Changes; +enum _E_Smart_Monitor_Changes +{ + E_SMART_MONITOR_CHANGED_NONE = 0, + E_SMART_MONITOR_CHANGED_CRTC = (1 << 0), + E_SMART_MONITOR_CHANGED_MODE = (1 << 1), + E_SMART_MONITOR_CHANGED_POSITION = (1 << 2), + E_SMART_MONITOR_CHANGED_ROTATION = (1 << 3), + E_SMART_MONITOR_CHANGED_REFRESH = (1 << 4), + E_SMART_MONITOR_CHANGED_RESOLUTION = (1 << 5), + E_SMART_MONITOR_CHANGED_ENABLED = (1 << 6), + E_SMART_MONITOR_CHANGED_CLONED = (1 << 7), +}; + Evas_Object *e_smart_monitor_add(Evas *evas); void e_smart_monitor_crtc_set(Evas_Object *obj, Ecore_X_Randr_Crtc crtc, Evas_Coord cx, Evas_Coord cy, Evas_Coord cw, Evas_Coord ch); Ecore_X_Randr_Crtc e_smart_monitor_crtc_get(Evas_Object *obj); |