Re: Matrix of NSImageCells, selection and dragging

2009-07-08 Thread Gideon King
It appears that the minimum image size for IKImageBrowserView is 40x40 (according to the setZoomValue documentation). I need to use 16x16 images. Is it easy to override this limitation? Any hints? Thanks Gideon ___ Cocoa-dev mailing list (Cocoa-de

Re: Matrix of NSImageCells, selection and dragging

2009-07-08 Thread Gideon King
Excellent, thanks. 10.5+ is fine. Gideon ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update

Re: Matrix of NSImageCells, selection and dragging

2009-07-08 Thread Graham Cox
On 08/07/2009, at 9:11 PM, Gideon King wrote: Is there already a component out there that does all or some of what I describe above? I wouldn't be surprised if others have needed to do similar things before. Check out IKImageBrowserView. It ticks all the boxes you mention, though it's 1

Matrix of NSImageCells, selection and dragging

2009-07-08 Thread Gideon King
Hi, I need do achieve the following scenario: - a matrix of images - multiple selection of the images (including discontiguous selection) - dragging the selected images out (but not dragging images in) My thought was that I could use an NSMatrix with NSImageCells, but my initial test by puttin