0
votes
0answers
51 views

DragImage and View Based NSTableView

I have a problem with the dragImage of view based tableViews with multiple columns. While cell based tableViews provide the whole visible row as the dragImage a view based tableView would just use the ...
0
votes
0answers
47 views

Drag and drop doesn't get implemented only for the first row

I am fairly new to cocoa dev and I am writing an application that mimics some of iTunes functionalities. My UI consists of a split view with two table views, each one connected to an array controller ...
1
vote
1answer
28 views

NSImage is 'retained' between drag operations

Hi I have implemented: - (NSImage *)dragImageForRowsWithIndexes:(NSIndexSet *)dragRows tableColumns:(NSArray *)tableColumns event:(NSEvent *)dragEvent offset:(NSPointPointer)dragImageOffset { ...
2
votes
1answer
57 views

Nstableview: validate sender and receiver when dragging and dropping

I am implementing drag and drop between two NSTableViews. So far I have managed to get the drag and drop to work just fine. However, my specific need is to be able to validate who is initiating the ...
0
votes
1answer
412 views

Drag & Drop Reordering in NSTableView of CoreData object doesn't work

I'm trying to implement a simple table, where I can put an object parent into a user definable order. I bound a parentTableView to a parentArrayController and set the sortDescriptor to the key "order" ...
0
votes
1answer
234 views

Promising files from my view-based NSTableView

I'm writing a Mac app with a view-based table view. It's a list of images, which I intend for the user to be able to drag to the Finder to save each image to a file. The data source owns an array of ...
0
votes
0answers
127 views

Drag an item from NSTableView to a NSView

I have an NSTableView containing some custom NSTableCellView , which contains an image and two textfields Now, I want to drag an item from NSTableCellView (that corresponds to one object in my array ...
1
vote
1answer
48 views

Handling dragging files from Finder into a limited-index NSTableView

I have an existing NSTableView set up to accept filename dragging from finder. I need to limit the TableView to 10 entries max. If a user drags in more files than the available slots, should I accept ...
2
votes
1answer
241 views

Dragging URLs into my app

I posted this question about dragging content from OS X Finder into an NSTableView. This all works nicely now. However, if I want to drag URLs from a browser address bar into my app, I first need to ...
17
votes
3answers
1k views

Opening a gap in NSTableView during drag and drop

I've got a simple, single-column, view-based NSTableView with items in it that can be dragged to reorder them. During drag and drop, I'd like to make it so that a gap for the item-to-be-dropped opens ...
1
vote
2answers
777 views

Dragging out of NSTableView to Remove

I have an NSTableView that contains a number of items. I'd like to implement dragging from inside and dropping outside of the NSTableView to delete the dragged item. (Kind of like how Safari 'poofs' ...
0
votes
1answer
269 views

Drag rows out of iTunes into Cocoa App

How does one accept dragged rows from iTunes in a Cocoa Application ? I have two objects in my application that accept Drag and Drop: an NSTableView and a custom view. Both recognize files dragged ...
0
votes
1answer
235 views

Can NSTableView handle normal drag-and-drop methods?

I'd like to use NSTableView without the NSTableViewDataSource Methods but just like a normal view. draggingEntered: and draggingExited: are being called but when I return NSDragOperationCopy, I don't ...
0
votes
3answers
2k views

Implementing drag and drop in NSTableView

Can anyone help me to implement drag and drop in an NSTableView? I used this code below, but these methods are not getting called during execution. - (BOOL)tableView:(NSTableView *)tv ...
1
vote
0answers
201 views

NSTableView Drag & Drop not working inside of an NSCollectionViewItem

I have a NSCollectionView and inside of the NSCollectionViewItems there is a label and a NSTableView. The NSTableViews are working properly EXCEPT for the drag & drop methods ...
2
votes
0answers
308 views

cocoa: drag files from my app (file paths contained in NSTableView) to other app (finder, mail, etc)

My app has an array of file paths contained in a subclass of NSTableView, I would like to be able to drag those files (and folders) from my app to other applications. I followed this article: ...
0
votes
1answer
349 views

How do you customize the drop highlight for a NSTableView?

The highlighting I want is for it to draw the drop indicator between rows and to never highlight an entire row. How can I do this with the 10.5 SDK? Since I am using the 10.5 SDK, I don't have access ...
1
vote
1answer
518 views

NSOutline View Drag-n-Drop Problem

Dear All, I am fighting with NSOutline View to perform drag-n-drop within the table since last 2-3 day but couldn't get what i am doing wrong, This is what i have done so far, Requirement, 1 -- I ...
1
vote
1answer
647 views

NSTableView Drop App File, Whats Going Wrong?

I have the following code to support dropping an app file into a table view. The problem is that I don't even see the green + when I drag and drop. I think it has something to do with the ...
0
votes
1answer
265 views

NSOutlineView: Hot To Avoid Yellow Border When Dragging Items?

When I drag rows from an NSTableView to another NSOutlineView, the NSOutlineView gets a yellow highlighting border. How do I avoid that? To be precise, this happens only if I drag the rows from the ...
2
votes
1answer
571 views

Drop on NSTableView Behavior

I have an NSTableView and I have successfully implemented both tableView:validateDrop:proposedRow:proposedDropOperation: and tableView:acceptDrop:row:dropOperation:. I don't need ...
2
votes
1answer
1k views

Drag & Drop Reorder Rows on NSTableView

I was just wondering if there was an easy way to set an NSTableView to allow it to reorder its rows without writing any pasteboard code. I only need it to be able to do this internally, within one ...
4
votes
1answer
2k views

Drag'n'Drop Support for NSTableView with CoreData Storage

I have to NSTableViews in my application both display the data which is being stored as "CoreData". The TableViews are pretty basic, as the whole programm is. The right TableView shows a list of ...
7
votes
3answers
3k views

NSTableView and NSOutlineView drag-and-drop

I have an NSTableView and an NSOutlineView, both with their content provided by bindings, that I'd like to have some drag-and-drop functionality: Drag rows from Table A onto a row of Outline B, ...