I have a document based application, that so far simply edits documents with a new window for each document.

I'm now adding the ability to create a project, which is a document in itself. That project will contain a list of files that can be edited using (hopefully) the same code as my existing NSDocument subclass, with the exception that the document editor will be embedded into the project window, not opened in a new window.

How does Xcode, for example, open each file in the editor pane, without using a new window per document? I assume it uses the document-based architecture since it behaves much like any other document-based application with the exception of the single window thing.

Since an NSDocument must (according to the documentation) have it's own window controller, is it possible to "embed" that window inside another window (i.e. inside my project window), making the chrome invisible to give the effect of a single window?

EDIT: This discussion on CocoaDev looks really useful: http://www.cocoadev.com/index.pl?DocumentBasedAppWithOneWindowForAllDocuments

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.