MCPcopy Create free account
hub / github.com/dillo-browser/dillo / getWidgetOOFAtPoint

Method getWidgetOOFAtPoint

dw/oofawarewidget.cc:526–538  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

524}
525
526Widget *OOFAwareWidget::getWidgetOOFAtPoint (int x, int y,
527 GettingWidgetAtPointContext
528 *context)
529{
530 Widget *widgetAtPoint = NULL;
531
532 for (int i = NUM_OOFM -1; widgetAtPoint == NULL && i >= 0; i--) {
533 if(outOfFlowMgr[i])
534 widgetAtPoint = outOfFlowMgr[i]->getWidgetAtPoint (x, y, context);
535 }
536
537 return widgetAtPoint;
538}
539
540void OOFAwareWidget::removeChild (Widget *child)
541{

Callers

nothing calls this directly

Calls 1

getWidgetAtPointMethod · 0.45

Tested by

no test coverage detected