This commit is contained in:
朱子楚\zhuzi
2023-12-20 21:58:59 +08:00
parent 0b7358af41
commit 1c67f2a41b
4 changed files with 29 additions and 10 deletions

View File

@ -179,3 +179,18 @@ qint64 FluTools::currentTimestamp(){
QIcon FluTools::windowIcon(){
return QGuiApplication::windowIcon();
}
int FluTools::cursorScreenIndex(){
int screenIndex = 0;
int screenCount = qApp->screens().count();
if (screenCount > 1) {
QPoint pos = QCursor::pos();
for (int i = 0; i < screenCount; ++i) {
if (qApp->screens().at(i)->geometry().contains(pos)) {
screenIndex = i;
break;
}
}
}
return screenIndex;
}