In my application I want to have native Windows cursors icons instead of loaded/built from qt resources.
For example Qt::SplitVCursor/Qt::SplitHCursor which differs from standard Windows.
In my application I want to have native Windows cursors icons instead of loaded/built from qt resources.
For example Qt::SplitVCursor/Qt::SplitHCursor which differs from standard Windows.
Copyright © 2021 Jogjafile Inc.

Looking at the sources of
qwindowscursor.cpp:and then
Looks like Qt uses it's own bitmap for V/HSplit cursors. So the short answer is "impossible". The long answer is you have to modify the mentioned lines and recompile Qt. I doubt though that you can get the cursor you've mentioned from windows as it seems non-standard and the bitmap in Qt is there for a reason. Good luck, commit if you make it :)