MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / isObscured

Function isObscured

src/qt/guiutil.cpp:351–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349}
350
351bool isObscured(QWidget *w)
352{
353 return !(checkPoint(QPoint(0, 0), w)
354 && checkPoint(QPoint(w->width() - 1, 0), w)
355 && checkPoint(QPoint(0, w->height() - 1), w)
356 && checkPoint(QPoint(w->width() - 1, w->height() - 1), w)
357 && checkPoint(QPoint(w->width() / 2, w->height() / 2), w));
358}
359
360void openDebugLogfile()
361{

Callers 1

showNormalIfMinimizedMethod · 0.85

Calls 2

checkPointFunction · 0.85
heightMethod · 0.80

Tested by

no test coverage detected