您的位置:首页 > 编程语言 > Qt开发

Windows下,Qt激活指定句柄的窗口

2014-02-10 13:55 3511 查看
最近在用Qt写一个gui程序,其中有个置顶QWidget需要响应鼠标移动事件以激活自身,在linux下使用activateWindow()就可以达到目的。但是windows下就没这么简单了,windows不允许应用程序中断用户正在操作的其它应用,也就意味着activateWindow()失效了。那么就真的没有办法了吗?经上网搜索,发现可以使用win32 API的几个函数实现,下面分享下我的解决办法:

1.声明需要使用的函数指针变量

/*user32.dll*/
typedef unsigned int (_stdcall*GetWindowThreadProcessId)(WId id, unsigned int *lpdwProcessId);
GetWindowThreadProcessId getWindowThreadProcessId;
typedef WId (_stdcall*GetForegroundWindow)();
GetForegroundWindow getForegroundWindow;
typedef bool (_stdcall*SetForegroundWindow)(WId id);
SetForegroundWindow setForegroundWindow;
typedef WId (_stdcall*SetFocus)(WId id);
SetFocus setFocus;
typedef bool (_stdcall*AttachThreadInput)(unsigned int idAttach, unsigned int idAttachTo, bool fAttach);
AttachThreadInput attachThreadInput;
/*kernel32.dll*/
typedef unsigned int (_stdcall*GetCurrentThreadId)();
GetCurrentThreadId getCurrentThreadId;


2.获取函数地址

QLibrary user32("user32");
user32.load();
getWindowThreadProcessId = (GetWindowThreadProcessId)user32.resolve("GetWindowThreadProcessId");
getForegroundWindow = (GetForegroundWindow)user32.resolve("GetForegroundWindow");
setForegroundWindow = (SetForegroundWindow)user32.resolve("SetForegroundWindow");
setFocus = (SetFocus)user32.resolve("SetFocus");
attachThreadInput = (AttachThreadInput)user32.resolve("AttachThreadInput");

QLibrary kernel32("kernel32");
kernel32.load();
getCurrentThreadId = (GetCurrentThreadId)kernel32.resolve("GetCurrentThreadId");


3.调用函数激活指定句柄的窗口

void GlobalScrollBar::activateMsWindow(WId id)const
{
attachThreadInput(getWindowThreadProcessId(getForegroundWindow(), NULL), getCurrentThreadId(), true);
setForegroundWindow(id);
setFocus(id);
attachThreadInput(getWindowThreadProcessId(getForegroundWindow(), NULL), getCurrentThreadId(), false);
}


这种方法核心是使用AttachThreadInput函数,它可以连接当前激活窗口的输入队列,并使其共享,如此一来才能调用SetForegroundWindow()函数激活指定窗口到前台,否则会无效。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: