I'm implementing Qt's drag and drop API across Windows and X. When I pick up an object in the app running on X and drag it, it leaves a white ghost trail of itself on the window underneath, as if the window underneath is being slow to repaint where the dragged object was previously obscuring part of itself.

I believe that this is symptomatic of the same problem that Qt has just solved with resizing windows causing flicker in child widgets on X windows - i.e. the dragged object is treated as a separate native window and therefore X handles the clipping from the dragged object to the window underneath. Since X does this in a different way to Qt, we get the ghosting effect.

Has anyone experienced the same problems? One solution that comes to mind is to use the same technique as detailed in the blog article linked above and stop the dragged object being treated as a native window, presumably at the cost of drag and drop being limited to my application only (I have no problem with this). Would anyone know how to force drag and drop operations to be internal only?


EDIT: I'm using QDrag::setPixmap to set the graphical representation of the dragged object - it is important that I retain this in favour of a standard drag cursor as this interface is being used on a touchscreen device and will hence have no visible cursor.

link|improve this question

2  
Good question, and sorry I can't help. One thing that's striking though, is that your actual question appears in the last line of your post. Try phrasing the title as your question, and explain the circumstances later. Might help with getting the right people take a look at your problem. Cheers! – Robin Nov 7 '11 at 14:47
Cheers @Robin, have followed your advice :) – sjwarner Nov 8 '11 at 10:40
feedback

2 Answers

An X11 window is only created for a drag operation if a QDrag::mimeData()->hasImage() is true. If you modify your code so it doesn't use an image then you will just get a drag cursor instead which won't trigger a repaint of the windows underneath.

You don't specify what kind of object you are dragging or how you are setting up the drag operation. Can you add some code to show that?

link|improve this answer
This interface will be used on a touchscreen without a cursor, so an image will be necessary I'm afraid. The object is irrelevant to be honest - I'm setting up the drag in the standard way (i.e. newing it off, setting mimeData, pixmap and hotSpot then calling QDrag::exec()). I hadn't thought of trying to setCursor rather than setPixmap though - I'll give that a go tomorrow. Cheers :) – sjwarner Nov 29 '11 at 18:52
If this is for an kiosk or appliance (rather than a general purpose application) you could try using a compositing window manager if the hardware supports it. – atomice Dec 1 '11 at 12:55
feedback
up vote 0 down vote accepted

I'm now of the opinion that short of editing and then compiling my own build of Qt (not an option for me), I can't force drag and drop operations to be internal only.

Equally, I can't find any way of getting rid of the ghost trail by tweaking my window manager settings or using a compositing window manager (thanks anyway though @atomice). Using OpenGL as the renderer increases the screen repaint speed slightly, but is not perfect and introduces its own problems (see Starting a Qt drag operation on X11 w/ OpenGL causes screen flicker). I would still be very interested to hear any ideas though.

I have, however, got a workaround for my problem which works on both Windows and X. Here's a simplified version:

void DoDrag()
{
  //Prepare the graphical representation of the drag
  mDragRepresenter = new QWidget(QApplication::activeWindow());
  mDragRepresenter->setAttribute(Qt::WA_TransparentForMouseEvents);
  mDragRepresenter->SetPixmap(GenerateDragPixmap());

  RepositionDragRepresenter();
  mDragRepresenter->show();

  QTimer UpdateTimer;
  connect(&UpdateTimer, SIGNAL(timeout()), this, SLOT(RepositionDragRepresenter()));
  UpdateTimer.start(40);

  //Start the drag (modal operation)
  Qt::DropAction ResultingAction = Drag->exec(Qt::CopyAction);

  UpdateTimer.stop();
  delete mDragRepresenter;
}

void RepositionDragRepresenter()
{
  mDragRepresenter->move(QApplication::activeWindow()->mapFromGlobal(QCursor::pos()) - mDragRepresenterHotSpot);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.