MCPcopy Create free account
hub / github.com/ElementsProject/elements / isObscured

Function isObscured

src/qt/guiutil.cpp:399–406  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397}
398
399bool isObscured(QWidget *w)
400{
401 return !(checkPoint(QPoint(0, 0), w)
402 && checkPoint(QPoint(w->width() - 1, 0), w)
403 && checkPoint(QPoint(0, w->height() - 1), w)
404 && checkPoint(QPoint(w->width() - 1, w->height() - 1), w)
405 && checkPoint(QPoint(w->width() / 2, w->height() / 2), w));
406}
407
408void bringToFront(QWidget* w)
409{

Callers 2

createTrayIconMenuMethod · 0.85
showNormalIfMinimizedMethod · 0.85

Calls 3

checkPointFunction · 0.85
QPointClass · 0.85
heightMethod · 0.45

Tested by

no test coverage detected