modal session before NSApplicationMain is invoked.

2008-03-06 Thread Adhamh Findlay
Hello, Under certain circumstances the application I am working on will launch a modal session before NSApplicationMain is invoked. The session displays a window and is dismissed by the user. This all works great, except the document window does not appear after NSApplicationMain is star

Re: Charting API?

2008-03-02 Thread Adhamh Findlay
On Mar 1, 2008, at 8:53 PM, David Adalsteinsson wrote: I don't know exactly what the GraphKit API looks like, or which Apple applications actually use it. The graphs don't quite look consistent between KeyNote, Shark, XRay and Activity monitor. KeyNote uses its on classes, Shark, Chud, A

Re: Private Methods

2008-02-22 Thread Adhamh Findlay
On Feb 22, 2008, at 5:23 AM, [EMAIL PROTECTED] wrote: In MyObj.m @interface MyObj(PrivateStuff) -(void) aPrivateMethod; @end; @implementation MyObj -(void) aPrivateMethod { // Do something } -(void) onePublicMethod { [self aPrivateMethod]; } @end Not to be too picky, but there's an extra

Re: Preventing an NSBox from expanding?

2008-02-21 Thread Adhamh Findlay
On Feb 21, 2008, at 1:10 PM, Kyle Sluder wrote: On Thu, Feb 21, 2008 at 2:04 PM, Adhamh Findlay <[EMAIL PROTECTED]> wrote: I've tried setting autoResizeMask to NSViewNotSizable, and turned off all the automatic sizing options in IB, but the box still expands. Is there a way to

Preventing an NSBox from expanding?

2008-02-21 Thread Adhamh Findlay
Greetings, I've got an NSBox that I am trying to install into a tab view item. Here's the code: NSBox *boxView = [foo theBox]; [[tabView selectedTabViewItem] setView: boxView]; This works great as all the controls in the box appear, but the boxView expands to take up the full frame of th