Re: Fixed width of left pane in NSSplitView

2008-12-08 Thread Brandon Walkin
Feel free to use the -splitView:resizeSubviewsWithOldSize: delegate method implementation from this class: http://www.bitbucket.org/bwalkin/bwtoolkit/src/tip/BWAnchoredButtonBar.m It keeps all views except the right most view at a constant width when the window is resized. To incorporate th

Re: Fixed width of left pane in NSSplitView

2008-12-08 Thread Jushin
Could you tell me more in detail? It makes me more confusing :( Sorry for novice question. On Mon, Dec 8, 2008 at 3:29 AM, Benjamin Dobson <[EMAIL PROTECTED]> wrote: > > On 8 Dec 2008, at 08:03:51, Jushin wrote: > >> However, I have no idea how to do this. Should I create a subclass of >> NSSplitV

Re: Fixed width of left pane in NSSplitView

2008-12-08 Thread Benjamin Dobson
On 8 Dec 2008, at 08:03:51, Jushin wrote: However, I have no idea how to do this. Should I create a subclass of NSSplitView? No. Just wire up a different object as the delegate for your split view. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.

Fixed width of left pane in NSSplitView

2008-12-08 Thread Jushin
I would like to have fixed with of the left pane in NSSplitView when I resize the window, and I found this code from google search. http://www.cocoabuilder.com/archive/message/cocoa/2008/3/28/202614 It says, === Your split view delegate should implement the following method: -(void)splitView:(NS