qt获取显示器鼠标的位置c++
时间: 2023-10-11 07:11:56 浏览: 81
获取鼠标在当前屏幕的坐标
5星 · 资源好评率100%
在Qt中,可以使用QCursor类获取当前鼠标的位置,可以使用QDesktopWidget类获取当前显示器的信息。下面是一个简单的示例代码:
```c++
#include <QApplication>
#include <QDesktopWidget>
#include <QCursor>
#include <QDebug>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// 获取当前显示器的信息
QDesktopWidget *desktop = QApplication::desktop();
QRect rect = desktop->screenGeometry();
qDebug() << "Screen width:" << rect.width();
qDebug() << "Screen height:" << rect.height();
// 获取当前鼠标的位置
QPoint pos = QCursor::pos();
qDebug() << "Mouse x:" << pos.x();
qDebug() << "Mouse y:" << pos.y();
return a.exec();
}
```
在上面的代码中,首先使用QDesktopWidget类获取当前显示器的信息,然后使用QCursor类获取当前鼠标的位置。最后将获取到的信息输出到控制台中。
阅读全文