|
From: Enlightenment C. <no...@cv...> - 2007-03-03 16:42:41
|
Enlightenment CVS committal
Author : urandom
Project : e17
Module : apps/e
Dir : e17/apps/e/src/bin
Modified Files:
e_gadcon.c e_gadcon.h
Log Message:
a new function to return the correct geometry and position of the gcc regardless of the shelf layer
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_gadcon.c,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -3 -r1.74 -r1.75
--- e_gadcon.c 7 Jan 2007 21:06:03 -0000 1.74
+++ e_gadcon.c 3 Mar 2007 22:42:37 -0000 1.75
@@ -1128,6 +1128,22 @@
}
}
+EAPI int
+e_gadcon_client_geometry_get(E_Gadcon_Client *gcc, int *x, int *y, int *w, int *h)
+{
+ int gx = 0, gy = 0;
+
+ E_OBJECT_CHECK(gcc);
+ E_OBJECT_TYPE_CHECK(gcc, E_GADCON_CLIENT_TYPE);
+ if (!e_gadcon_canvas_zone_geometry_get(gcc->gadcon, &gx, &gy, NULL, NULL)) return 0;
+
+ evas_object_geometry_get(gcc->o_base, x, y, w, h);
+ if (x) *x += gx;
+ if (y) *y += gy;
+
+ return 1;
+}
+
static void
_e_gadcon_client_cb_menu_style_plain(void *data, E_Menu *m, E_Menu_Item *mi)
{
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_gadcon.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -3 -r1.36 -r1.37
--- e_gadcon.h 7 Jan 2007 16:32:57 -0000 1.36
+++ e_gadcon.h 3 Mar 2007 22:42:37 -0000 1.37
@@ -197,6 +197,7 @@
EAPI void e_gadcon_client_autoscroll_update(E_Gadcon_Client *gcc, int mx, int my);
EAPI void e_gadcon_client_autoscroll_cb_set(E_Gadcon_Client *gcc, void (*func)(void *data), void *data);
EAPI void e_gadcon_client_resizable_set(E_Gadcon_Client *gcc, int resizable);
+EAPI int e_gadcon_client_geometry_get(E_Gadcon_Client *gcc, int *x, int *y, int *w, int *h);
EAPI void e_gadcon_client_util_menu_items_append(E_Gadcon_Client *gcc, E_Menu *menu, int flags);
EAPI void e_gadcon_client_util_menu_attach(E_Gadcon_Client *gcc);
|