Re: printing a different representation than what is on the screen

2011-01-22 Thread Matt Neuburg
On Thu, 20 Jan 2011 09:24:03 -0500, Dave Reed said: >or do I somehow create an off screen view that I "draw" the text and grid >lines into? Yes - not just a view, but a view with subviews (with subviews etc.) all of which know how to draw themselves. In other words, do this in an object-orient

Re: printing a different representation than what is on the screen

2011-01-20 Thread David Reed
On Jan 20, 2011, at 10:03 AM, Sherm Pendley wrote: > On Thu, Jan 20, 2011 at 9:24 AM, Dave Reed wrote: >> I'm working on a document-based application that has a couple tabs. Most of >> the tabs contain NSTableViews, NSTextFields, etc. >> >> I want to provide a way for the user to print the dat

Re: printing a different representation than what is on the screen

2011-01-20 Thread Sherm Pendley
On Thu, Jan 20, 2011 at 9:24 AM, Dave Reed wrote: > I'm working on a document-based application that has a couple tabs. Most of > the tabs contain NSTableViews, NSTextFields, etc. > > I want to provide a way for the user to print the data contained in them > (just text, possibly with some grid l

printing a different representation than what is on the screen

2011-01-20 Thread Dave Reed
I'm working on a document-based application that has a couple tabs. Most of the tabs contain NSTableViews, NSTextFields, etc. I want to provide a way for the user to print the data contained in them (just text, possibly with some grid lines), but not the actual table view. I've read through (a