Tagged Questions
21
votes
3answers
911 views
Vista/7: How to get glass color?
How do you use DwmGetColorizationColor?
The documentation says it returns two values:
a 32-bit 0xAARRGGBB containing the color used for glass composition
a boolean parameter that is true "if the ...
3
votes
1answer
3k views
Handling WM_NCPAINT “breaks” DWM glass rendering on Vista/Aero
I am trying to make a window that alternates between having an Aero/Glass and a custom rendered frame (by handling WM_NCPAINT) based on a user setting. (Windows Vista).
DwmComposition is enabled. My ...
1
vote
3answers
53 views
Is there any mechanism in Windows that would allow for system-wide color-inversion (i.e. night mode)?
One of my favorite Mac OSX apps is Blacktree's Nocturne, which inverts the colors of the whole screen such that you end up with a black-on-white display systemwide that is easy on the eyes in a dark ...
1
vote
3answers
837 views
Is it possible to capture a window with windows 7 DWM thumbnail in it?
I am starting to believe that you can do nothing with Windows API.
I have two windows. One has a DWM thumbnail in it. What I want to do is, I want to be able to capture the screen of the window with ...
0
votes
1answer
437 views
Windows thumbnail preview with JNA (Java)
W32API.HWND targetHwnd = User32.INSTANCE.FindWindow('SunAwtFrame', 'Frame')
W32API.HWND sourceHwnd = User32.INSTANCE.FindWindow('triuiScreen', 'EVE')
W32API.HANDLE thumbnailH = new W32API.HANDLE()
...
0
votes
1answer
374 views
Why could DwmRegisterThumbnail fail?
I am trying to capture screen of a child window and render it on parent surface in Windows 7.
HTHUMBNAIL thumbnail = NULL;
HRESULT hr = S_OK;
hr = DwmRegisterThumbnail( hWnd, visualHwnd, ...
0
votes
1answer
497 views
Vista live thumbnail issue with SetWindowRgn
I know I am probably missing something, but I can't seem to get windows to show the live thumbnail preview correctly when using a window that has a region. When hitting the minimize button the ...