Better variable name(s).

SVN revision: 50862
This commit is contained in:
Christopher Michael 2010-08-06 15:15:32 +00:00
parent bdc2bec1e3
commit bfe14a9dff
3 changed files with 46 additions and 30 deletions

View File

@ -323,9 +323,10 @@ struct _E_Illume_Quickpanel
Ecore_X_Window clickwin;
Ecore_Event_Handler *mouse_hdl;
double start, len;
struct {
int sz, isz, adjust, adjust_start, adjust_end, dir;
} vert, horiz;
struct
{
int size, isize, adjust, adjust_start, adjust_end, dir;
} vert, horiz;
unsigned char visible : 1;
/**< flag to indicate if the quickpanel is currently visible */
};

View File

@ -223,7 +223,8 @@ _e_mod_kbd_cb_client_message(void *data __UNUSED__, int type __UNUSED__, void *e
Ecore_X_Event_Client_Message *ev;
ev = event;
if (ev->win != ecore_x_window_root_first_get()) return ECORE_CALLBACK_PASS_ON;
if (ev->win != ecore_x_window_root_first_get())
return ECORE_CALLBACK_PASS_ON;
/* legacy illume 1 code */
if ((ev->message_type == ecore_x_atom_get("_MB_IM_INVOKER_COMMAND")) ||
@ -256,7 +257,8 @@ _e_mod_kbd_cb_border_remove(void *data __UNUSED__, int type __UNUSED__, void *ev
}
/* try to find the keyboard for this border */
if (!(kbd = _e_mod_kbd_by_border_get(ev->border))) return ECORE_CALLBACK_PASS_ON;
if (!(kbd = _e_mod_kbd_by_border_get(ev->border)))
return ECORE_CALLBACK_PASS_ON;
if ((kbd->border) && (kbd->border == ev->border))
{
@ -347,15 +349,18 @@ _e_mod_kbd_cb_border_property(void *data __UNUSED__, int type __UNUSED__, void *
ev = event;
/* only interested in vkbd state changes here */
if (ev->atom != ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_STATE) return ECORE_CALLBACK_PASS_ON;
if (ev->atom != ECORE_X_ATOM_E_VIRTUAL_KEYBOARD_STATE)
return ECORE_CALLBACK_PASS_ON;
/* make sure we have a border */
if (!(bd = e_border_find_by_client_window(ev->win))) return ECORE_CALLBACK_PASS_ON;
if (!(bd = e_border_find_by_client_window(ev->win)))
return ECORE_CALLBACK_PASS_ON;
// printf("Kbd Border Property Change: %s\n", bd->client.icccm.name);
/* if it's not focused, we don't care */
if ((!bd->focused) || (_e_mod_kbd_by_border_get(bd))) return ECORE_CALLBACK_PASS_ON;
if ((!bd->focused) || (_e_mod_kbd_by_border_get(bd)))
return ECORE_CALLBACK_PASS_ON;
/* NB: Not sure why, but we seem to need to fetch kbd state here. This could
* be a result of filtering the container_hook_layout. Not real happy
@ -366,7 +371,8 @@ _e_mod_kbd_cb_border_property(void *data __UNUSED__, int type __UNUSED__, void *
if ((_focused_border) && (_focused_border == bd))
{
/* if focused state is the same, get out */
if (_focused_state == bd->client.vkbd.state) return ECORE_CALLBACK_PASS_ON;
if (_focused_state == bd->client.vkbd.state)
return ECORE_CALLBACK_PASS_ON;
}
/* set our variables */

View File

@ -113,7 +113,7 @@ e_mod_quickpanel_show(E_Illume_Quickpanel *qp)
/* grab the height of the indicator */
cz = e_illume_zone_config_get(qp->zone->id);
qp->vert.isz = cz->indicator.size;
qp->vert.isize = cz->indicator.size;
/* check animation duration */
if (duration <= 0)
@ -122,7 +122,7 @@ e_mod_quickpanel_show(E_Illume_Quickpanel *qp)
E_Border *bd;
int ny = 0;
ny = qp->vert.isz;
ny = qp->vert.isize;
if (qp->vert.dir == 1) ny = 0;
/* if we are not animating, just show the borders */
@ -201,8 +201,10 @@ _e_mod_quickpanel_cb_client_message(void *data __UNUSED__, int type __UNUSED__,
E_Border *bd;
E_Illume_Quickpanel *qp;
if (!(bd = e_border_find_by_client_window(ev->win))) return ECORE_CALLBACK_PASS_ON;
if (!(qp = e_illume_quickpanel_by_zone_get(bd->zone))) return ECORE_CALLBACK_PASS_ON;
if (!(bd = e_border_find_by_client_window(ev->win)))
return ECORE_CALLBACK_PASS_ON;
if (!(qp = e_illume_quickpanel_by_zone_get(bd->zone)))
return ECORE_CALLBACK_PASS_ON;
_e_mod_quickpanel_position_update(qp);
}
@ -231,7 +233,8 @@ _e_mod_quickpanel_cb_border_add(void *data __UNUSED__, int type __UNUSED__, void
int iy;
ev = event;
if (!ev->border->client.illume.quickpanel.quickpanel) return ECORE_CALLBACK_PASS_ON;
if (!ev->border->client.illume.quickpanel.quickpanel)
return ECORE_CALLBACK_PASS_ON;
zone = ev->border->zone;
@ -248,7 +251,8 @@ _e_mod_quickpanel_cb_border_add(void *data __UNUSED__, int type __UNUSED__, void
if (!zone) zone = e_util_container_zone_number_get(con->num, 0);
}
if (!(qp = e_illume_quickpanel_by_zone_get(zone))) return ECORE_CALLBACK_PASS_ON;
if (!(qp = e_illume_quickpanel_by_zone_get(zone)))
return ECORE_CALLBACK_PASS_ON;
/* set position and zone */
e_illume_border_indicator_pos_get(zone, NULL, &iy);
@ -260,7 +264,7 @@ _e_mod_quickpanel_cb_border_add(void *data __UNUSED__, int type __UNUSED__, void
/* hide this border */
e_illume_border_hide(ev->border);
qp->vert.sz += ev->border->h;
qp->vert.size += ev->border->h;
/* add this border to QP border collection */
qp->borders = eina_list_append(qp->borders, ev->border);
@ -278,7 +282,8 @@ _e_mod_quickpanel_cb_border_remove(void *data __UNUSED__, int type __UNUSED__, v
E_Border *bd;
ev = event;
if (!ev->border->client.illume.quickpanel.quickpanel) return ECORE_CALLBACK_PASS_ON;
if (!ev->border->client.illume.quickpanel.quickpanel)
return ECORE_CALLBACK_PASS_ON;
zone = ev->border->zone;
@ -295,14 +300,15 @@ _e_mod_quickpanel_cb_border_remove(void *data __UNUSED__, int type __UNUSED__, v
if (!zone) zone = e_util_container_zone_number_get(con->num, 0);
}
if (!(qp = e_illume_quickpanel_by_zone_get(zone))) return ECORE_CALLBACK_PASS_ON;
if (!(qp = e_illume_quickpanel_by_zone_get(zone)))
return ECORE_CALLBACK_PASS_ON;
/* add this border to QP border collection */
qp->borders = eina_list_remove(qp->borders, ev->border);
qp->vert.sz = 0;
qp->vert.size = 0;
EINA_LIST_FOREACH(qp->borders, l, bd)
qp->vert.sz += bd->h;
qp->vert.size += bd->h;
return ECORE_CALLBACK_PASS_ON;
}
@ -316,12 +322,14 @@ _e_mod_quickpanel_cb_border_resize(void *data __UNUSED__, int type __UNUSED__, v
E_Border *bd;
ev = event;
if (!ev->border->client.illume.quickpanel.quickpanel) return ECORE_CALLBACK_PASS_ON;
if (!(qp = e_illume_quickpanel_by_zone_get(ev->border->zone))) return ECORE_CALLBACK_PASS_ON;
if (!ev->border->client.illume.quickpanel.quickpanel)
return ECORE_CALLBACK_PASS_ON;
if (!(qp = e_illume_quickpanel_by_zone_get(ev->border->zone)))
return ECORE_CALLBACK_PASS_ON;
qp->vert.sz = 0;
qp->vert.size = 0;
EINA_LIST_FOREACH(qp->borders, l, bd)
qp->vert.sz += bd->h;
qp->vert.size += bd->h;
return ECORE_CALLBACK_PASS_ON;
}
@ -384,11 +392,11 @@ _e_mod_quickpanel_slide(E_Illume_Quickpanel *qp, int visible, double len)
qp->vert.adjust_end = 0;
if (qp->vert.dir == 0)
{
if (visible) qp->vert.adjust_end = qp->vert.sz;
if (visible) qp->vert.adjust_end = qp->vert.size;
}
else
{
if (visible) qp->vert.adjust_end = -qp->vert.sz;
if (visible) qp->vert.adjust_end = -qp->vert.size;
}
if (!qp->animator)
@ -450,7 +458,8 @@ _e_mod_quickpanel_cb_animate(void *data)
else
t = qp->len;
qp->vert.adjust = (qp->vert.adjust_end * v) + (qp->vert.adjust_start * (1.0 - v));
qp->vert.adjust = ((qp->vert.adjust_end * v) +
(qp->vert.adjust_start * (1.0 - v)));
if (qp->vert.dir == 0) _e_mod_quickpanel_animate_down(qp);
else _e_mod_quickpanel_animate_up(qp);
@ -487,7 +496,7 @@ _e_mod_quickpanel_position_update(E_Illume_Quickpanel *qp)
e_border_move(bd, qp->zone->x, iy);
qp->vert.dir = 0;
if ((iy + qp->vert.isz + qp->vert.sz) > qp->zone->h) qp->vert.dir = 1;
if ((iy + qp->vert.isize + qp->vert.size) > qp->zone->h) qp->vert.dir = 1;
}
static void
@ -497,7 +506,7 @@ _e_mod_quickpanel_animate_down(E_Illume_Quickpanel *qp)
E_Border *bd;
int pbh = 0;
pbh = (qp->vert.isz - qp->vert.sz);
pbh = (qp->vert.isize - qp->vert.size);
EINA_LIST_FOREACH(qp->borders, l, bd)
{
/* don't adjust borders that are being deleted */
@ -530,7 +539,7 @@ _e_mod_quickpanel_animate_up(E_Illume_Quickpanel *qp)
E_Border *bd;
int pbh = 0;
pbh = qp->vert.sz;
pbh = qp->vert.size;
EINA_LIST_FOREACH(qp->borders, l, bd)
{
/* don't adjust borders that are being deleted */