gpt4 book ai didi

c++ - 在 C++ 中绘制 Windows 10 壁纸

转载 作者:可可西里 更新时间:2023-11-01 14:08:42 29 4
gpt4 key购买 nike

有没有办法在 C++ 中获取 Windows 墙纸(图标后面)的句柄以便在上面绘制?这将允许制作事件桌面(在 Windows XP 之后停产)等价物、Wallpaper Engine 等价物或任何其他类似工具。 (在我的案例中,墙纸上的温度和资源使用情况监控)。

注意:GetDesktopWindow() 返回的句柄返回桌面图标级别的窗口,而不是在它后面。

来自 similar questions 的解决方案不适合我。具体来说,我尝试了 VLC 媒体播放器的 wallpaper mode代码。

关键代码是:

hwnd = FindWindow( _T("Progman"), NULL );
if( hwnd ) hwnd = FindWindowEx( hwnd, NULL, _T("SHELLDLL_DefView"), NULL );
if( hwnd ) hwnd = FindWindowEx( hwnd, NULL, _T("SysListView32"), NULL );
if( !hwnd )
{
msg_Warn( p_vout, "couldn't find \"SysListView32\" window, "
"wallpaper mode not supported" );
return;
}

但它不会在墙纸上绘制。

最佳答案

致谢 draw behind desktop icons C#页面作为引用。这篇文章解释了解决方案背后的理论,无论使用何种编程语言,该理论都适用。

长话短说,您在 Windows 10 上看到的更改墙纸时平滑的渐变动画是通过创建一个完全符合您要求的新窗口(在图标下方绘制)实现的。该窗口实现了新墙纸的淡入效果,由程序管理器创建。

在上述文章中,您可以看到与 C# 实现一起对每个步骤的解释。在这里,我将编写一个 C++ 等价物,保留来自源的注释。

BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam)
{
HWND p = FindWindowEx(hwnd, NULL, L"SHELLDLL_DefView", NULL);
HWND* ret = (HWND*)lParam;

if (p)
{
// Gets the WorkerW Window after the current one.
*ret = FindWindowEx(NULL, hwnd, L"WorkerW", NULL);
}
return true;
}

HWND get_wallpaper_window()
{
// Fetch the Progman window
HWND progman = FindWindow(L"ProgMan", NULL);
// Send 0x052C to Progman. This message directs Progman to spawn a
// WorkerW behind the desktop icons. If it is already there, nothing
// happens.
SendMessageTimeout(progman, 0x052C, 0, 0, SMTO_NORMAL, 1000, nullptr);
// We enumerate all Windows, until we find one, that has the SHELLDLL_DefView
// as a child.
// If we found that window, we take its next sibling and assign it to workerw.
HWND wallpaper_hwnd = nullptr;
EnumWindows(EnumWindowsProc, (LPARAM)&wallpaper_hwnd);
// Return the handle you're looking for.
return wallpaper_hwnd;
}

根据您的编码偏好,类 C 的转换可以替换为 reinterpret_cast


一个注释,文章中没有提到:由于在更改壁纸时会生成一个新的 WorkerW 窗口以实现淡入淡出效果,如果用户在您的程序正在主动绘制和刷新您的 WorkerW 实例时尝试更改壁纸,则用户设置的背景将放置在您的绘图之上,开始淡入直到达到 100% 不透明度,最后被销毁,让您的 WorkerW 仍在运行。

关于c++ - 在 C++ 中绘制 Windows 10 壁纸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56132584/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com