PDA

View Full Version : setting Cursor for one operation



keshab
22nd December 2006, 07:36
Hello All,
Can i set one cursortype for all applications and operations . During drag the cursor changes from arrow type to arrow+cross. i want only arrow cursor during dragmove, dragcopy and draglin operation. am using Qt's textdrag class and calling dragCopy operation. solve this issue please?

rajesh
22nd December 2006, 09:09
use
setCursor(Qt::ArrowCursor);
in your drag class
OR

set
setCursor(Qt::ArrowCursor);
in Drag and Drop API.