我想知道我的QMainWindow
当前是否可见,并且没有被其他应用程序的其他窗口重叠。
我需要为Windows,Linux和Mac实现这一目标。
答案 0 :(得分:6)
我稍后写了一个小图书馆,用于阅读Windows,Mac OS X和Linux中的前景或最顶层窗口信息,主要是窗口标题。你可以在这里找到源代码: https://github.com/pcmantinker/Qt-Window-Title-Reader
我使用Windows的原生Windows API,Linux的X11库和Mac OS X上的Cocoa。
以下是使用objective-C ++在Mac OS X中获取活动窗口的一小部分示例:
Mac.h
/*
Mac/Cocoa specific code for obtaining information about the frontmost window
*/
#ifndef MAC_H
#define MAC_H
#include <QtCore>
#include "windowinfo.h"
class Mac {
public:
Mac();
QList<WindowInfo> getActiveWindows();
};
#endif // MAC_H
Mac.mm
/*
Mac/Cocoa specific code for obtaining information about the frontmost window
*/
#include "mac.h"
#include "Cocoa/Cocoa.h"
Mac::Mac()
{
}
QList<WindowInfo> Mac::getActiveWindows()
{
QList<WindowInfo> windowTitles;
// get frontmost process for currently active application
ProcessSerialNumber psn = { 0L, 0L };
OSStatus err = GetFrontProcess(&psn);
CFStringRef processName = NULL;
err = CopyProcessName(&psn, &processName);
NSString *pname = (NSString *)processName;
// loop through all application windows
CFArrayRef windowList = CGWindowListCopyWindowInfo(kCGWindowListOptionOnScreenOnly | kCGWindowListExcludeDesktopElements, kCGNullWindowID);
for (NSMutableDictionary* entry in (NSArray*)windowList)
{
NSString* ownerName = [entry objectForKey:(id)kCGWindowOwnerName];
NSString *name = [entry objectForKey:@"kCGWindowName" ];
NSInteger ownerPID = [[entry objectForKey:(id)kCGWindowOwnerPID] integerValue];
NSInteger layer = [[entry objectForKey:@"kCGWindowLayer"] integerValue];
if(layer == 0)
{
if([ownerName isEqualToString:pname])
{
NSRange range;
range.location = 0;
range.length = [ownerName length];
unichar *chars = new unichar[range.length];
[ownerName getCharacters:chars range:range];
QString owner = QString::fromUtf16(chars, range.length);
range.length = [name length];
chars = new unichar[range.length];
[name getCharacters:chars range:range];
QString windowTitle = QString::fromUtf16(chars, range.length);
delete[] chars;
long pid = (long)ownerPID;
WindowInfo wi;
wi.setProcessName(owner);
wi.setWindowTitle(windowTitle);
wi.setPID(pid);
windowTitles.append(wi);
}
}
}
CFRelease(windowList);
CFRelease(processName);
return windowTitles;
}
请注意,在Cocoa中,没有直接获取最顶层窗口的方法。你得到一个窗口集合并循环遍历它们以找到你想要的那个
以下是Windows API的代码:
win.h
/*
Windows API specific code for obtaining information about the frontmost window
*/
#ifndef WIN_H
#define WIN_H
#include <QtCore>
#include "qt_windows.h"
#include "psapi.h"
#include "windowinfo.h"
class win : public QObject
{
Q_OBJECT
public:
win();
QList<WindowInfo> getActiveWindows();
private:
TCHAR buf[255];
};
#endif // WIN_H
win.cpp
#include "win.h"
win::win()
{
}
QList<WindowInfo> win::getActiveWindows()
{
QList<WindowInfo> windowTitles;
HWND foregroundWindow = GetForegroundWindow();
DWORD* processID = new DWORD;
GetWindowText(foregroundWindow, buf, 255);
GetWindowThreadProcessId(foregroundWindow, processID);
DWORD p = *processID;
HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION |
PROCESS_VM_READ,
FALSE, p);
TCHAR szProcessName[MAX_PATH];
if (NULL != hProcess )
{
HMODULE hMod;
DWORD cbNeeded;
if ( EnumProcessModules( hProcess, &hMod, sizeof(hMod),
&cbNeeded) )
{
GetModuleBaseName( hProcess, hMod, szProcessName,
sizeof(szProcessName)/sizeof(TCHAR) );
}
}
CloseHandle(hProcess);
long pid = (long)p;
QString windowTitle, processName;
#ifdef UNICODE
windowTitle = QString::fromUtf16((ushort*)buf);
processName = QString::fromUtf16((ushort*)szProcessName);
#else
windowTitle = QString::fromLocal8Bit(buf);
processName = QString::fromLocal8Bit(szProcessName);
#endif
WindowInfo wi;
wi.setPID(pid);
wi.setWindowTitle(windowTitle);
wi.setProcessName(processName);
windowTitles.append(wi);
return windowTitles;
}
这是Linux / X11的代码:
的 linux_x11.h 强>
/*
Linux/X11 specific code for obtaining information about the frontmost window
*/
#ifndef LINUX_X11_H
#define LINUX_X11_H
#include <QtCore>
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include "windowinfo.h"
class linux_x11
{
public:
linux_x11();
QList<WindowInfo> getActiveWindows();
private:
Window* active(Display *disp, unsigned long *len);
char *name (Display *disp, Window win);
int *pid(Display *disp, Window win);
QString processName(long pid);
};
#endif // LINUX_X11_H
<强> linux_x11.cpp 强>
/*
Linux/X11 specific code for obtaining information about the frontmost window
*/
#include "linux_x11.h"
#include <sstream>
#include <stdlib.h>
#include <stdio.h>
linux_x11::linux_x11()
{
}
/**
* Returns the window name for a specific window on a display
***/
char *linux_x11::name (Display *disp, Window win) {
Atom prop = XInternAtom(disp,"WM_NAME",False), type;
int form;
unsigned long remain, len;
unsigned char *list;
if (XGetWindowProperty(disp,win,prop,0,1024,False,AnyPropertyType, &type,&form,&len,&remain,&list) != Success)
return NULL;
return (char*)list;
}
/**
* Returns the pid for a specific window on a display
***/
int* linux_x11::pid(Display *disp, Window win) {
Atom prop = XInternAtom(disp,"_NET_WM_PID",False), type;
int form;
unsigned long remain, len;
unsigned char *list;
if (XGetWindowProperty(disp,win,prop,0,1024,False,AnyPropertyType, &type,&form,&len,&remain,&list) != Success)
return NULL;
return (int*)list;
}
/**
* Returns the active window on a specific display
***/
Window * linux_x11::active (Display *disp, unsigned long *len) {
Atom prop = XInternAtom(disp,"_NET_ACTIVE_WINDOW",False), type;
int form;
unsigned long remain;
unsigned char *list;
if (XGetWindowProperty(disp,XDefaultRootWindow(disp),prop,0,1024,False,XA_WINDOW, &type,&form,len,&remain,&list) != Success)
return NULL;
return (Window*)list;
}
/**
* Returns process name from pid (processes output from /proc/<pid>/status)
***/
QString linux_x11::processName(long pid)
{
// construct command string
QString command = "cat /proc/" + QString("%1").arg(pid) + "/status";
// capture output in a FILE pointer returned from popen
FILE * output = popen(command.toStdString().c_str(), "r");
// initialize a buffer for storing the first line of the output
char buffer[1024];
// put the contents of the buffer into a QString
QString line = QString::fromUtf8(fgets(buffer, sizeof(buffer), output));
// close the process pipe
pclose(output);
// take right substring of line returned to get process name
return line.right(line.length() - 6).replace("\n", "");
}
QList<WindowInfo> linux_x11::getActiveWindows()
{
QList<WindowInfo> windowTitles;
unsigned long len;
Display *disp = XOpenDisplay(NULL);
Window *list;
char *n;
int* p;
list = (Window*)active(disp,&len);
if((int)len > 0)
{
for (int i=0;i<(int)len;i++) {
n = name(disp,list[i]);
p = pid(disp, list[i]);
long p_id = 0;
QString pName;
QString windowTitle;
if(p!=NULL)
{
p_id = *p; // dereference pointer for obtaining pid
pName = processName(p_id);
}
if(n!=NULL)
windowTitle = QString::fromUtf8(n);
WindowInfo wi;
wi.setWindowTitle(windowTitle);
wi.setProcessName(pName);
wi.setPID(p_id);
windowTitles.append(wi);
delete n;
delete p;
}
}
delete list;
XCloseDisplay (disp);
return windowTitles;
}
X11代码可能会变得非常丑陋且难以理解,但这应该可以帮助您入门。自从我直接处理X11以来已经有一段时间了,所以我无法准确地告诉你现在每个辅助方法的作用。
我抽象代码使得代码的每个平台特定部分具有相同的方法签名。然后我检查它是否在Mac OS X,Windows或Linux上编译并实例化正确的类。以下是它们的结合方式:
#include "windowtitlereader.h"
WindowTitleReader::WindowTitleReader()
{
qDebug() << "WindowTitleReader::WindowTitleReader()";
// refresh window reading every 10ms
timer = new QTimer(this);
timer->setInterval(10);
timer->start();
connect(timer, SIGNAL(timeout()), this, SLOT(getWindowTitle()));
}
WindowTitleReader::~WindowTitleReader()
{
delete timer;
delete m_pid;
delete m_processName;
}
void WindowTitleReader::getWindowTitle()
{
qDebug() << "WindowTitleReader::getWindowTitle()";
#ifdef Q_WS_WIN
win w;
m_activeWindows = w.getActiveWindows();
#endif
#ifdef Q_WS_MACX
Mac m;
m_activeWindows = m.getActiveWindows();
#endif
#ifdef Q_WS_X11
linux_x11 l;
m_activeWindows = l.getActiveWindows();
#endif
for(int i = 0; i < m_activeWindows.count(); i++)
qDebug() << "PID: " << m_activeWindows[i].getPID() << " Process Name: " << m_activeWindows[i].getProcessName() << " Window Title: " << m_activeWindows[i].getWindowTitle();
}
如果需要,您可以将刷新率更改为较慢的刷新率,但我每隔10毫秒运行一次更新,以便在窗口聚焦上获得近实时更新。
我主要编写这个库来阅读网页浏览器和视频游戏的窗口标题,这样我就可以估算人们在电脑上玩某些游戏的时间。我把它写成了我正在构建的游戏指标应用程序的一部分。