Tagged Questions
21
votes
3answers
914 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 ...
18
votes
2answers
816 views
Aero: How to draw solid (opaque) colors on glass?
Using GDI+ to draw various colors:
brush = new SolidBrush(color);
graphics.FillRectangle(brush, x, y, width, height);
You'll notice that no opaque color shows properly on glass:
How do i draw ...
4
votes
0answers
493 views
What is the API to “create applications like Flip3D”
i am trying to figure out how to use DWM to render a copy of a Window into my own desired location. The only thing i can find to tell DWM to render somewhere is with the thumbnail APIs.
But MSDN's ...
3
votes
3answers
362 views
Wait for disable aero to complete
My app has an option to disable aero by calling DwmEnableComposition(0) before capturing a screen image. As you know, disabling aero makes the screen go black then return to normal afterwards. On ...
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 ...
2
votes
1answer
222 views
use DWM to distort a window under Windows 7
Windows 7 has in DWM function to distort a window. I am looking for information about how to use these functions (undocumented) to distort any window.
Thanks in advance for your help,
Regards,
1
vote
2answers
918 views
Checking if DWM/Aero is enabled, and having that code live in the same binary for 2000/XP/Vista/7
I know the title makes little sense, mostly because it's hard to explain in just one line. So here's the situation:
I have a program who's binary is targeted at Windows 2000 and newer. Now, I went ...
0
votes
0answers
27 views
Full-screened app shows as black rectangle in Windows Flip 3D (pressing Win+TAB)
We have a DirectX application which can switch to full-screen mode. While in full-screen mode, pressing Win+TAB brings up the Aero Flip 3D interface, but the thumbnail for the application is a black ...
0
votes
1answer
129 views
Using DwmIsCompositionEnabled (JwaDwmApi) on pre-vista causes error
Been trying to use the following code in order to check if Windows Aero is enabled:
function AeroEnabled: boolean;
var
enabled: bool;
begin
// Function from the JwaDwmapi unit (JEDI Windows Api ...