summaryrefslogtreecommitdiff
path: root/alf/alfpriv.h
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2020-04-18 17:34:55 +0200
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2020-04-18 17:34:55 +0200
commit479d1226faaa937ef6820b14f36099ef3f575883 (patch)
tree10e5560fb8bae6c317ca06564c9609c3c498503e /alf/alfpriv.h
parent4054b17c661d2e709895e8235e9dce6edaa61e4f (diff)
implement background color
reduce flickering by keeping pixels if we know the background didn't change panel text is now gone, it would require us to redraw every transparent widget on top, which is a bad tradeoff since that panel text isn't very useful anyway.
Diffstat (limited to 'alf/alfpriv.h')
-rw-r--r--alf/alfpriv.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/alf/alfpriv.h b/alf/alfpriv.h
index d539baf..90a4e9f 100644
--- a/alf/alfpriv.h
+++ b/alf/alfpriv.h
@@ -42,3 +42,6 @@ ALF_BuildUniqueName(TCHAR *buf, const TCHAR *prefix, ULONG_PTR uniquifier);
BOOL
ALF_ShouldMessageBubble(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
+
+void
+ALF_FillRect(HDC dc, const RECT *rc, ALFColor color);