How can I get cursor shape when application minimized?

on hotkey I call:
Qt Code:
  1. qDebug() << "mouse (" << QCursor::pos().x() << "x" << QCursor::pos().y() << ")" << this->cursor().shape();
To copy to clipboard, switch view to plain text mode 

QCursor::pos() - is right, but cursor().shape() - always return "ArrowCursor" (even within the application).

How can I get real shape or cursor pixmap (Windows, MacOS)?