aboutsummaryrefslogtreecommitdiffstats
path: root/src/DocumentWindowController.h
AgeCommit message (Collapse)Author
2023-09-29Remove `DocumentWindowController`Teddy Wing
This subclass ended up not being needed. I ended up using a regular `NSWindowController`.
2023-09-16Make a document-based applicationTeddy Wing
Add the basic necessities for a document-based application. This is what I came up with on 2023-09-10. The `DocumentWindowController` was just an initial idea and doesn't do anything: we create the required window controller in `Document`. The `CFBundleDocumentTypes` entry enables us to interact with text files. This confirms that the "Open Recent" menu does get added automatically below the "Open" menu.