Lines Matching refs:expose
2610 * This routine processes all "expose region" XEvents. In general, its job
2623 XRectangle expose, cursor;
2627 expose.x = event->xexpose.x;
2628 expose.y = event->xexpose.y;
2629 expose.width = event->xexpose.width;
2630 expose.height = event->xexpose.height;
2633 expose.x = event->xgraphicsexpose.x;
2634 expose.y = event->xgraphicsexpose.y;
2635 expose.width = event->xgraphicsexpose.width;
2636 expose.height = event->xgraphicsexpose.height;
2643 need_to_draw = TranslateExposeRegion(ctx, &expose);
2651 UpdateTextInRectangle(ctx, &expose);
2653 if (RectanglesOverlap(&cursor, &expose)) {
3005 * Routines for handling the copy area expose queue.
3058 * Description: Translates the expose that came into
3061 * expose - a Rectangle, who's region currently
3062 * contains the expose event location.
3069 TranslateExposeRegion(ctx, expose)
3071 XRectangle * expose;
3084 x = expose->x;
3085 y = expose->y;
3086 width = expose->width;
3087 height = expose->height;
3127 expose->x = x;
3128 expose->y = y;
3129 expose->width = width;
3130 expose->height = height;
3501 /* expose */ ProcessExposeRegion,