RrAppearance *a_text;
RrAppearance *a_icon;
- RrPixel32 *hilite_rgba;
-
gboolean mapped;
};
void focus_cycle_popup_startup(gboolean reconfig)
{
XSetWindowAttributes attrib;
+ RrPixel32 *p;
single_popup = icon_popup_new();
popup.a_icon->texture[1].data.rgba.width = ICON_SIZE;
popup.a_icon->texture[1].data.rgba.height = ICON_SIZE;
popup.a_icon->texture[1].data.rgba.alpha = 0xff;
- popup.hilite_rgba = g_new(RrPixel32, ICON_SIZE * ICON_SIZE);
- popup.a_icon->texture[1].data.rgba.data = popup.hilite_rgba;
+ p = g_new(RrPixel32, ICON_SIZE * ICON_SIZE);
+ popup.a_icon->texture[1].data.rgba.data = p;
/* create the hilite under the target icon */
{
a = 0x22;
}
- popup.hilite_rgba[o++] =
- color + (a << RrDefaultAlphaOffset);
+ p[o++] = color + (a << RrDefaultAlphaOffset);
}
}
-
stacking_add(INTERNAL_AS_WINDOW(&popup));
window_add(&popup.bg, INTERNAL_AS_WINDOW(&popup));
}
popup.targets = g_list_delete_link(popup.targets, popup.targets);
}
- g_free(popup.hilite_rgba);
- popup.hilite_rgba = NULL;
-
XDestroyWindow(obt_display, popup.bg);
RrAppearanceFree(popup.a_icon);