Home | History | Annotate | Download | only in qt

Lines Matching defs:exposeEvent

260     XGraphicsExposeEvent& exposeEvent = xevent.xgraphicsexpose;
261 exposeEvent.type = GraphicsExpose;
262 exposeEvent.display = 0;
263 exposeEvent.drawable = reinterpret_cast<XID>(&imageExpose);
264 exposeEvent.x = exposedRect.x();
265 exposeEvent.y = exposedRect.y();
266 exposeEvent.width = exposedRect.width();
267 exposeEvent.height = exposedRect.height();
321 XGraphicsExposeEvent& exposeEvent = xevent.xgraphicsexpose;
322 exposeEvent.type = GraphicsExpose;
323 exposeEvent.display = QX11Info::display();
324 exposeEvent.drawable = qtDrawable.handle();
325 exposeEvent.x = exposedRect.x();
326 exposeEvent.y = exposedRect.y();
327 exposeEvent.width = exposedRect.x() + exposedRect.width(); // flash bug? it thinks width is the right in transparent mode
328 exposeEvent.height = exposedRect.y() + exposedRect.height(); // flash bug? it thinks height is the bottom in transparent mode