0
votes
1answer
12 views

Drag Drop delegate for NSView could not set an attribute

I am using NSView delegate to read the dragged excel values. For this I have subclassed NSView. My code is like- @interface SSDragDropView : NSView { NSString *textToDisplay; } ...
0
votes
0answers
85 views

how to implement iphoto like animation while doing drag and drop on custom listview

i had developed the custom list view which is having NSView as a cell with variable sizes to represent the video clips in the timeline. and i had implemented the drag and drop for reordering ...
0
votes
1answer
41 views

drag and drop in PXListView is not working in the Demo App. how to fix it?

i am working with PXListView and i am testing with Demo App which came inside the PXListView...while doing the drag and drop it is not working properly... the drop is not working... i have added the ...
2
votes
1answer
172 views

NSView image corruption when dragging from scaled view

I have a custom subclass of NSView that implements drag/drop for copying the image in the view to another application. The relevant code in my class looks like this: #pragma mark - #pragma mark ...
0
votes
0answers
70 views

NSDragOperation is not working properly

I have main view and a NSTableView subView in it. I need to drag some folders into NSTableView or anywhere inside the main view. I have implemented NSDraggingDestination protocols in the mainView. ...
1
vote
2answers
259 views

NSView Drag Operation Error

I'm coding in Cocoa, on OS X. I'm trying to receive a file that is dragged and dropped onto my NSView subclass - which I can do; and get its contents and filename and display them - which I can do ...
5
votes
3answers
208 views

Superview as drag destination if subview rejects it

Consider a view (parent) with a subview (child). Both have registered for the dragged type NSFilenamesPboardType. parent is only interested in image files and child in audio files. If they detect a ...
0
votes
0answers
100 views

Core Animation: strange display errors during drag and drop after animation

I have a Cocoa app that uses a Core Animation for a variety of custom animations (rotation, perspective, etc.). The app lets the user drag files out of the application window on to the Desktop. Once ...
0
votes
3answers
369 views

Forwarding drag & drop event to parent view

I have an application where I have one custom view which is derived from NSView. Within this view, there are several custom subviews, which are also derived from NSView. I want to implement a drag ...
6
votes
1answer
235 views

-performDragOperation: not called when dragging from dock stack

Hi I have a custom view inside of a status item. I implemented a drag and drop and it all works but when dragging from a dock stack, all of the dragging methods are called except for ...
2
votes
1answer
376 views

NSView mouseEntered/mouseMoved not called during dragging operation (and vice versa)

I have a borderless window with a transparent NSView. When the mouse cursor enters the transparent view, a second view (the drop target) is supposed to appear allowing the user to drop a file. The ...
2
votes
1answer
792 views

How to call registerForDraggedTypes in NSViewController?

I have a MainViewController with a splitview in it. Next I have two viewcontroller to control each of the views in the splitview. I want to be able to drag and drop a file in one of those views. But ...
1
vote
1answer
752 views

Cocoa NSView subview blocking drag/drop

I have an NSView subclass which registers for drag files in init method like this: [self registerForDraggedTypes:[NSArray arrayWithObject:NSFilenamesPboardType]]; The drag drop works perfectly ...
3
votes
2answers
640 views

NSView Subviews interrupting drag operation

I have an NSView which is registered for a drag operation. In that view I have a subclassed NSScrollView, which in itself has an NSImageView in it. When dragging onto the original NSView, everything ...
4
votes
1answer
883 views

Cocoa NSTextField Drag & Drop Requires Subclass… Really?

Until today, I've never had occasion to use anything other than an NSWindow itself as an NSDraggingDestination. When using a window as a one-size-fits-all drag destination, the NSWindow will pass ...
0
votes
1answer
238 views

MouseDragged not released when dragging on other views

I have 2 subclasses of NSView that are subviews to a common superview. They dont overlap and they both intercept mousedragged calls. When I drag from one of the subclasses to the other the ...
2
votes
1answer
978 views

kCGErrorFailure while performing drag and drop in NSView

I have created a simple drag and drop application in which I am sometimes getting this exception msg, displayed in debugger console: kCGErrorRangeCheck: CGSNewWindowWithOpaqueShape: Cannot ...
0
votes
1answer
461 views

Simple drag and drop application not working

I am trying a simple drag and drop application: I am creating a CameraIconView (subclass of NSView, containing some image views, text fields and a pop-up button), at run time. This view is enclosed ...
0
votes
2answers
1k views

NSView Not updating?

Im working on a drag n' drop view and found some handlers for drag and drop actions on the web. I want to make it so it turns blue when the user drags a file over the drag and drop area and gray again ...
1
vote
1answer
426 views

Drag and Drop folder view cocoa

I need to make a drag and drop view in cocoa that will accept folders. I know it will use things like NSView and probably registerForDraggedTypes: (which I still am not sure how to go about using). ...
0
votes
1answer
311 views

Cocoa: Create draggable zones

How can I create draggable zones in cocoa and be able to drag and drop images between the two. Ex: Zone 1:no image Zone 2:image drag zone 2's image to zone 1, and be able to save (core data) the ...