1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#include "check-visible.hpp"
#include "macros.hpp"
#include "timer.hpp"
#include "spinlock.hpp"
#include <QWidget>
#include <QDebug>
constexpr int visible_timeout = 1000;
constexpr int invisible_timeout = 250;
static Timer timer;
static std::atomic_flag lock = ATOMIC_FLAG_INIT;
static bool visible = true;
#if defined _WIN32
#include <windows.h>
void set_is_visible(const QWidget& w, bool force)
{
spinlock_guard l(lock);
HWND hwnd = (HWND)w.winId();
if (!force && timer.elapsed_ms() < (visible ? visible_timeout : invisible_timeout))
return;
timer.start();
if (RECT r; GetWindowRect(hwnd, &r))
{
const int x = r.left+1, y = r.top+1;
const int w = r.right - x - 1, h = r.bottom - y - 1;
const POINT xs[] {
{ x + w, y },
{ x, y + h },
{ x + w, h + y },
{ x, y },
{ x + w/2, y + h/2 },
};
visible = false;
for (const POINT& pt : xs)
if (WindowFromPoint(pt) == hwnd)
{
visible = true;
break;
}
}
else
{
eval_once(qDebug() << "check-visible: GetWindowRect failed");
visible = true;
}
}
#else
void set_is_visible(const QWidget&, bool)
{
}
void check_is_visible(bool)
{
}
#endif
bool check_is_visible()
{
spinlock_guard l(lock);
return visible;
}
|