Re: re-ordering the layers of NSView's subviews

2010-03-23 Thread Dave Carpeneto
Graham Cox wrote: On 24/03/2010, at 11:30 AM, Dave Carpeneto wrote: Hi all - I've got the following situation: * A 'parent' NSView, which in turn has a number of subviews * These subviews have been added via the [NSView addSubview:newView positioned:NSWindowAbove relativeTo:nil] method (s

Re: re-ordering the layers of NSView's subviews

2010-03-23 Thread Graham Cox
On 24/03/2010, at 11:30 AM, Dave Carpeneto wrote: > Hi all - I've got the following situation: > > * A 'parent' NSView, which in turn has a number of subviews > > * These subviews have been added via the [NSView addSubview:newView > positioned:NSWindowAbove relativeTo:nil] method (so each time

re-ordering the layers of NSView's subviews

2010-03-23 Thread Dave Carpeneto
Hi all - I've got the following situation: * A 'parent' NSView, which in turn has a number of subviews * These subviews have been added via the [NSView addSubview:newView positioned:NSWindowAbove relativeTo:nil] method (so each time a user adds a subview it's @ the top of the viewing list) *