qt捕获全局windows消息

Posted xiang--liu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qt捕获全局windows消息相关的知识,希望对你有一定的参考价值。

mainwindow.h

 

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QAbstractNativeEventFilter>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow,public QAbstractNativeEventFilter
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = nullptr);
    ~MainWindow();
    bool nativeEventFilter(const QByteArray & eventType, void * message, long * result);


private:
    Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>

#include <windows.h>
#pragma comment(lib, "user32.lib")

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
}

MainWindow::~MainWindow()
{
    delete ui;
}

bool MainWindow::nativeEventFilter(const QByteArray & eventType, void * message, long * result)
{
    if (eventType == "windows_generic_MSG" || eventType == "windows_dispatcher_MSG")
    {
        MSG * pMsg = reinterpret_cast<MSG *>(message);

        if (pMsg->message == WM_NCMOUSEMOVE)
        {

            //获取到系统鼠标移动,可以做像qq一样的忙碌检测
            qDebug() << "nativeEventFilter:"<<pMsg->pt.x;
        }
    }

    return false;
}

 

main.cpp

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    a.installNativeEventFilter(&w);

    return a.exec();
}

以上是关于qt捕获全局windows消息的主要内容,如果未能解决你的问题,请参考以下文章

QT 捕获事件(全局拦截)

Qt怎样处理Windows消息

QEventfilter 类的全局事件捕获

C# - 从特定应用程序捕获 Windows 消息

Qt 视频捕获在 Windows 上不起作用。选项?

android全局异常捕获器UncaughtExceptionHandler的基本使用