应用程序窗口嵌入桌面

发布于 2022-08-30 08:11:13 字数 2360 浏览 16 评论 0

Ap的窗口可以嵌入桌面,这样Win+D键的时候就可以看到,很方便。在网上搜索了一下,原理就是将窗口的父窗口设置成桌面。
这个父窗口在Xp下通过FindWindow("rogram manager","progman"找到,但是在win7下这个方法找到的父窗口就不好用了。用spy++看了之后,写了下面一段代码findDesktopIconWnd(),在xp和win7下都可以找到这个父窗口。子窗口再调用SetParent(child,parent)就可以在桌面上看到了。

main.cpp
#include <windows.h>

#include <QtCore>

#include <QtGui/QApplication>
#include "dialog.h"
static BOOL enumUserWindowsCB(HWND hwnd,LPARAM lParam)
{
long wflags = GetWindowLong(hwnd, GWL_STYLE);
if(!(wflags & WS_VISIBLE)) return TRUE;
HWND sndWnd;
if( !(sndWnd=FindWindowEx(hwnd, NULL, L"SHELLDLL_DefView", NULL)) ) return TRUE;
HWND targetWnd;
if( !(targetWnd=FindWindowEx(sndWnd, NULL, L"SysListView32", L"FolderView") ) return TRUE;
HWND* resultHwnd = (HWND*)lParam;
*resultHwnd = targetWnd;
return FALSE;
}
HWND findDesktopIconWnd()
{
HWND resultHwnd = NULL;
EnumWindows((WNDENUMPROC)enumUserWindowsCB, (LPARAM)&resultHwnd);
return resultHwnd;
}
int main(int argc,char *argv[])
{
QApplication a(argc,argv);
Dialog w;
HWND desktopHwnd = findDesktopIconWnd();
//HWND desktopHwnd = FindWindow();
if (desktopHwnd)
SetParent(w.winId(),desktopHwnd);
w.setAttribute(Qt::WA_TranslucentBackground,true);
w.show();
return a.exec();
}
dialog.cpp
#include "dialog.h"
Dialog:ialog(QWidget *parent)Dialog(parent)
{
//创建个LineEdit用来测试焦点
QLineEdit* le = new QLineEdit(this );
}
void Dialog::paintEvent(QPaintEvent *e)
{
QPainter p(this);
p.fillRect(this->rect(),QColor(0,0xff,0,30));
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文