Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread douglas welton
Sandeep, Sorry, I misread your question. I have an application that implements dragging from an IKImageBrowserView and when I was testing it initially, I experienced a similar issue (no dragging being initiated on mouse down) when I forgot to connect the datasource outlet on my IKImageBrow

Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread Thomas Goossens
Sandeep, If your datasource returns paths, your view should be automatically a drag source. If your datasource returns images, I think the only thing you have to do is to implement - (NSUInteger) imageBrowser:(IKImageBrowserView *) aBrowser writeItemsAtIndexes:(NSIndexSet *) itemIndexes t

Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread Sandeep Chayapathi
I did try the -setDraggingDestinationDelegate: , but it is meant for a drag destination and not drag source. From the documentation (here: http://developer.apple.com/documentation/Cocoa/Conceptual/DragandDrop/Concepts/dragsource.html#//apple_ref/doc/uid/2976-CJBFBADF ) I have to implement dr

Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread douglas welton
Sandeep, Did you set the dragging destination delegate using - setDraggingDestinationDelegate:? more info here: regar

IKImageBrowserView and mouseDragged event

2008-11-27 Thread Sandeep Chayapathi
Greetings, In my app I have an IKImageBrowserView, and I want to make this an drag source. I have followed thedragging source docs but to no avail. In my view class the mous