Re: prevent drag from QTMovieView

2010-05-10 Thread Rainer Standke
That is a very good idea, and it works, thank you. I have also tried this on the QTMovie: [newMovie setDraggable:NO]; and that works too. However, there is no real telling what setting a private iVar will do, so I am glad you told me about a cleaner way of this. R. On May 8, 2010, at 13:28 ,

Re: prevent drag from QTMovieView

2010-05-08 Thread douglas welton
did you try overriding the -mouseDragged: method in your subclass? On May 8, 2010, at 1:15 AM, Rainer Standke wrote: > Hello, > > I have a Collection View whose prototype view includes a QTMovieView. I need > the collection view to be a drag source, and that works fine. > > I need the QTMovieV

prevent drag from QTMovieView

2010-05-07 Thread Rainer Standke
Hello, I have a Collection View whose prototype view includes a QTMovieView. I need the collection view to be a drag source, and that works fine. I need the QTMovieView to not be a drag source, so I subclassed it with a method that looks like this: - (NSDragOperation)draggingSourceOperationMas