Panther's TextEdit to Open MS Word Files
2muchcoffeeman writes "Further signs that Jobs and Gates probably won't be vacationing together anytime soon: New Damage has what looks to be screenshot proof of Panther's TextEdit.app opening a Microsoft Word .DOC file. Panther beta users who have tried this report at MacSlash that it works, to a point. So what's next? Is Apple now going to bring back the late, great MacWrite Pro?"
Because when you use shift-cmd-3 (full-screen) or shift-cmd-4 (area) to take a screengrab, Mac OS X uses PDF for its output.
PDF is the default screen capture format in Mac OS X (10.2), and I assume in Panther as well.
Here's a link to a freeware app that already enables Cocoa applications to do a similar thing, but with text only: AntiWord Service. It works on Mac OS X 10.1.5 and higher.
A good slashdotter would peek in the file and notice this:
Producer: Mac OS X 10.3 Quartz PDFContext
It would have been kind of cool if the window would be rendered in vector graphics, in the reality, and directly displayed to PDF. A vector desktop still seems to be a dream, or did I get something wrong?
-Kvorg
Word/Excel formats didn't change in Office XP.
Powerpoint formats haven't changed since Office 97
The Quartz Extreme Rendering Engine original Display Postscript for Openstep now takes advantage of Postscript Primitives in PDF, plus direct hardware rendering to the GPU via other custom APIs to produce an advanced UI that renders line by line in real-time, smoothly with anti-aliasing built-in, plus never a loss of window viewing when one is moving them around the desktop.
I had no idead EPS could manage and update Postscript coordinate points from Global to Local, on the fly?
Safari was just an excuse. MSFT was planning on discontinuing IE for the mac for a long time now and Apple knew it. MSFT will use a backwards version of the tactic they used to oust netscape from the browser market. They will use their browser monopoly and IE features integrated into Longhorn OS to marginalise the OS market. You'll need Longhorn to access web services (banking, bill payment, etc.) that Microsoft plans to make "essential" and exclusive to windows users. That way they attack Apple and any other OS rivals simultaneously. Damn those MSFT busienss strategists are smart...
Why? Because it makes sense.
When I read the parent, it occurred to me that this is much more than TextEdit being able to read Word files.
/Developer/Examples/AppKit/TextEdit
TextEdit is a very simple program. Apple even supply the full source for it in the developer tools under
All the real work is done by standard Cocoa classes NSTextView and NSTextStorage. If TextEdit understands Word files, it means that they have added the support to these standard classes. That means that *ALL* cocoa applications will inherit this functionality.
I went one better for you. I compiled and ran the version of TextEdit supplied as example code with XCode on Panther. It was able to open a .doc file. I can confirm that it is using NSTextView and NSTextStorage (not custom subclasses) to do this. So it looks like all Cocoa apps using text views will be able to provide basic .doc file handling for free. Very nice :)