Home | History | Annotate | Download | only in gtk

Lines Matching full:exposedrect

199     IntRect exposedRect(rect);
200 exposedRect.intersect(frameRect());
201 exposedRect.move(-frameRect().x(), -frameRect().y());
228 cairo_rectangle(cr.get(), exposedRect.x(), exposedRect.y(),
229 exposedRect.width(), exposedRect.height());
239 exposeEvent.x = exposedRect.x();
240 exposeEvent.y = exposedRect.y();
241 exposeEvent.width = exposedRect.x() + exposedRect.width(); // flash bug? it thinks width is the right in transparent mode
242 exposeEvent.height = exposedRect.y() + exposedRect.height(); // flash bug? it thinks height is the bottom in transparent mode
255 frameRect().x() + exposedRect.x(), frameRect().y() + exposedRect.y(),
256 exposedRect.width(), exposedRect.height());