Modifiy crtc_set function to also take the current crtc coordinates

(this saves us a round-trip function call to ecore_x_randr as we
already have the coordinates from the randr widget).

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 84159
This commit is contained in:
Christopher Michael 2013-02-19 10:57:12 +00:00 committed by Christopher Michael
parent 54a0fa16ae
commit 457c302e92
2 changed files with 7 additions and 9 deletions

View File

@ -104,10 +104,9 @@ e_smart_monitor_add(Evas *evas)
}
void
e_smart_monitor_crtc_set(Evas_Object *obj, Ecore_X_Randr_Crtc crtc)
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)
{
E_Smart_Data *sd;
Ecore_X_Window root = 0;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
@ -117,12 +116,11 @@ e_smart_monitor_crtc_set(Evas_Object *obj, Ecore_X_Randr_Crtc crtc)
/* set the crtc config */
sd->crtc = crtc;
/* get the root window */
root = ecore_x_window_root_first_get();
/* get the geometry of this crtc and record it */
ecore_x_randr_crtc_geometry_get(root, crtc,
&sd->cx, &sd->cy, &sd->cw, &sd->ch);
/* record the crtc geometry */
sd->cx = cx;
sd->cy = cy;
sd->cw = cw;
sd->ch = ch;
/* set monitor position text */
_e_smart_monitor_position_set(sd, sd->cx, sd->cy);

View File

@ -4,7 +4,7 @@
# define E_SMART_MONITOR_H
Evas_Object *e_smart_monitor_add(Evas *evas);
void e_smart_monitor_crtc_set(Evas_Object *obj, Ecore_X_Randr_Crtc crtc);
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);
void e_smart_monitor_output_set(Evas_Object *obj, Ecore_X_Randr_Output output);
void e_smart_monitor_grid_set(Evas_Object *obj, Evas_Object *grid);
void e_smart_monitor_background_set(Evas_Object *obj, Evas_Coord dx, Evas_Coord dy);