Re: Set view in bottom right corner of NSTableView

2008-05-17 Thread [EMAIL PROTECTED]
The PlacardScrollView subclass at http://cocoa.karelia.com/AppKit_Classes/PlacardScrollView__.m demonstrates this technique well. On 16 May 2008, at 18:15, Kyle Sluder wrote: On Fri, May 16, 2008 at 10:49 AM, Stéphane <[EMAIL PROTECTED]> wrote: This might not be that easily possible as the po

Re: Set view in bottom right corner of NSTableView

2008-05-16 Thread [EMAIL PROTECTED]
Once again Kyle, thanks. This looks like just the ticket. On 16 May 2008, at 18:15, Kyle Sluder wrote: On Fri, May 16, 2008 at 10:49 AM, Stéphane <[EMAIL PROTECTED]> wrote: This might not be that easily possible as the positions of the views inside the scrollview are recomputed quite often an

Re: Set view in bottom right corner of NSTableView

2008-05-16 Thread Kyle Sluder
On Fri, May 16, 2008 at 10:49 AM, Stéphane <[EMAIL PROTECTED]> wrote: > This might not be that easily possible as the positions of the views inside > the scrollview are recomputed quite often and your bottom corner view would > be ignored by this code. So this would require subclassing some code in

Re: Set view in bottom right corner of NSTableView

2008-05-16 Thread [EMAIL PROTECTED]
Thanks for the reply Stéphane. I was thinking that it might be tricky. One of those things that could unexpectedly consume a lot of time. It's a small feature but it would solve the problem that one of my views can get dragged out of view and there's no splitter visible to drag it back with

Re: Set view in bottom right corner of NSTableView

2008-05-16 Thread Stéphane
On May 16, 2008, at 3:58 PM, [EMAIL PROTECTED] wrote: Hello List I have been using NSTableView -setCornerView: to provide additional drag thumb image views for tables embedded in splitviews. Has anyone found it possible to do the same thing in the bottom right hand corner of a table as o