Re: Hiding the Window Content View

2010-01-08 Thread David Blanton
Thanks for references and tips. I think I will be able to achieve the results I am looking for from all who have commented! - db On Jan 8, 2010, at 4:39 PM, Alastair Houghton wrote: On 8 Jan 2010, at 20:46, David Blanton wrote: I am just trying to find the best way to do rapid drawing with

Re: Hiding the Window Content View

2010-01-08 Thread Alastair Houghton
On 8 Jan 2010, at 20:46, David Blanton wrote: > I am just trying to find the best way to do rapid drawing with no flicker. The answer to that question depends rather on what you mean by "rapid" and on what you're trying to draw. The fastest way to draw on Mac OS X is generally OpenGL; it's also

Re: Hiding the Window Content View

2010-01-08 Thread Paul Sanders
). You could also subclass the content view if you want to (you can do this in Interface Builder) and draw directly into that. Paul Sanders. - Original Message - From: "David Blanton" To: "Kyle Sluder" Cc: "cocoa-dev List" Sent: Friday, January 08, 2010 8

Re: Hiding the Window Content View

2010-01-08 Thread David Blanton
I am just trying to find the best way to do rapid drawing with no flicker. I don't see an override on background drawing so I was wanting to eliminate the backgroud of the content view. On Jan 8, 2010, at 1:30 PM, Kyle Sluder wrote: On Fri, Jan 8, 2010 at 12:01 PM, David Blanton wrote: W

Re: Hiding the Window Content View

2010-01-08 Thread Kyle Sluder
On Fri, Jan 8, 2010 at 12:01 PM, David Blanton wrote: > When the content view of a window has setHidden:YES called on it the result > is a Title Bar, Size Control and a "body" (for lack of a better term).  Is > it possible to get rid of this "body" leaving just the Title Bar and Size > Control.  T