├── .gitattributes ├── .gitignore ├── AppKit ├── AppKit.h ├── NSApplication.h ├── NSApplication.m ├── NSBox.h ├── NSBox.m ├── NSButton.h ├── NSButton.m ├── NSColor.h ├── NSColor.m ├── NSCursor.h ├── NSCursor.m ├── NSDefaultButtonOutline.h ├── NSDefaultButtonOutline.m ├── NSEvent.h ├── NSEvent.m ├── NSGeometry.h ├── NSGeometry.m ├── NSGraphicsContext.h ├── NSGraphicsContext.m ├── NSIconFamilyImageRep.h ├── NSIconFamilyImageRep.m ├── NSImage.h ├── NSImage.m ├── NSMenu.h ├── NSMenu.m ├── NSMenuItem.h ├── NSMenuItem.m ├── NSProgressIndicator.h ├── NSProgressIndicator.m ├── NSResponder.h ├── NSResponder.m ├── NSTabView.h ├── NSTabView.m ├── NSTextField.h ├── NSTextField.m ├── NSView.h ├── NSView.m ├── NSWindow.h ├── NSWindow.m ├── ToolboxHider.c └── ToolboxHider.h ├── AppKitForClassic.mcp ├── AppKitForClassic.rsrc ├── CheapVersionControl.sit ├── Foundation ├── Foundation.h ├── NSArchiver.h ├── NSArchiver.m ├── NSArray.h ├── NSArray.m ├── NSAutoreleasePool.h ├── NSAutoreleasePool.m ├── NSByteStream.h ├── NSByteStream.m ├── NSCoder.h ├── NSCoder.m ├── NSData.h ├── NSData.m ├── NSDate.h ├── NSDate.m ├── NSDictionary.h ├── NSDictionary.m ├── NSDictionaryImpl.cpp ├── NSDictionaryImpl.h ├── NSEnumerator.h ├── NSEnumerator.m ├── NSMiniRuntime.h ├── NSMiniRuntime.m ├── NSNumber.h ├── NSNumber.m ├── NSObjCRuntime.h ├── NSObjCuntime.m ├── NSString.h ├── NSString.m ├── NSStringPrivate.h ├── NSTimer.h ├── NSTimer.m ├── ObjCFileConsole.c ├── Runtime.h ├── qsort_context.c └── qsort_context.h ├── README.md ├── main.m └── readme_screenshot.png /.gitattributes: -------------------------------------------------------------------------------- 1 | *.mcp binary 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .finf/ 2 | .rsrc/ 3 | .DS_Store 4 | Icon\r 5 | 6 | -------------------------------------------------------------------------------- /AppKit/AppKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/AppKit.h -------------------------------------------------------------------------------- /AppKit/NSApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSApplication.h -------------------------------------------------------------------------------- /AppKit/NSApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSApplication.m -------------------------------------------------------------------------------- /AppKit/NSBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSBox.h -------------------------------------------------------------------------------- /AppKit/NSBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSBox.m -------------------------------------------------------------------------------- /AppKit/NSButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSButton.h -------------------------------------------------------------------------------- /AppKit/NSButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSButton.m -------------------------------------------------------------------------------- /AppKit/NSColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSColor.h -------------------------------------------------------------------------------- /AppKit/NSColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSColor.m -------------------------------------------------------------------------------- /AppKit/NSCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSCursor.h -------------------------------------------------------------------------------- /AppKit/NSCursor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSCursor.m -------------------------------------------------------------------------------- /AppKit/NSDefaultButtonOutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSDefaultButtonOutline.h -------------------------------------------------------------------------------- /AppKit/NSDefaultButtonOutline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSDefaultButtonOutline.m -------------------------------------------------------------------------------- /AppKit/NSEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSEvent.h -------------------------------------------------------------------------------- /AppKit/NSEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSEvent.m -------------------------------------------------------------------------------- /AppKit/NSGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSGeometry.h -------------------------------------------------------------------------------- /AppKit/NSGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSGeometry.m -------------------------------------------------------------------------------- /AppKit/NSGraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSGraphicsContext.h -------------------------------------------------------------------------------- /AppKit/NSGraphicsContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSGraphicsContext.m -------------------------------------------------------------------------------- /AppKit/NSIconFamilyImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSIconFamilyImageRep.h -------------------------------------------------------------------------------- /AppKit/NSIconFamilyImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSIconFamilyImageRep.m -------------------------------------------------------------------------------- /AppKit/NSImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSImage.h -------------------------------------------------------------------------------- /AppKit/NSImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSImage.m -------------------------------------------------------------------------------- /AppKit/NSMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSMenu.h -------------------------------------------------------------------------------- /AppKit/NSMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSMenu.m -------------------------------------------------------------------------------- /AppKit/NSMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSMenuItem.h -------------------------------------------------------------------------------- /AppKit/NSMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSMenuItem.m -------------------------------------------------------------------------------- /AppKit/NSProgressIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSProgressIndicator.h -------------------------------------------------------------------------------- /AppKit/NSProgressIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSProgressIndicator.m -------------------------------------------------------------------------------- /AppKit/NSResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSResponder.h -------------------------------------------------------------------------------- /AppKit/NSResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSResponder.m -------------------------------------------------------------------------------- /AppKit/NSTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSTabView.h -------------------------------------------------------------------------------- /AppKit/NSTabView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSTabView.m -------------------------------------------------------------------------------- /AppKit/NSTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSTextField.h -------------------------------------------------------------------------------- /AppKit/NSTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSTextField.m -------------------------------------------------------------------------------- /AppKit/NSView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSView.h -------------------------------------------------------------------------------- /AppKit/NSView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSView.m -------------------------------------------------------------------------------- /AppKit/NSWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSWindow.h -------------------------------------------------------------------------------- /AppKit/NSWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/NSWindow.m -------------------------------------------------------------------------------- /AppKit/ToolboxHider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/ToolboxHider.c -------------------------------------------------------------------------------- /AppKit/ToolboxHider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKit/ToolboxHider.h -------------------------------------------------------------------------------- /AppKitForClassic.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKitForClassic.mcp -------------------------------------------------------------------------------- /AppKitForClassic.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/AppKitForClassic.rsrc -------------------------------------------------------------------------------- /CheapVersionControl.sit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/CheapVersionControl.sit -------------------------------------------------------------------------------- /Foundation/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/Foundation.h -------------------------------------------------------------------------------- /Foundation/NSArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSArchiver.h -------------------------------------------------------------------------------- /Foundation/NSArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSArchiver.m -------------------------------------------------------------------------------- /Foundation/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSArray.h -------------------------------------------------------------------------------- /Foundation/NSArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSArray.m -------------------------------------------------------------------------------- /Foundation/NSAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSAutoreleasePool.h -------------------------------------------------------------------------------- /Foundation/NSAutoreleasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSAutoreleasePool.m -------------------------------------------------------------------------------- /Foundation/NSByteStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSByteStream.h -------------------------------------------------------------------------------- /Foundation/NSByteStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSByteStream.m -------------------------------------------------------------------------------- /Foundation/NSCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSCoder.h -------------------------------------------------------------------------------- /Foundation/NSCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSCoder.m -------------------------------------------------------------------------------- /Foundation/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSData.h -------------------------------------------------------------------------------- /Foundation/NSData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSData.m -------------------------------------------------------------------------------- /Foundation/NSDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSDate.h -------------------------------------------------------------------------------- /Foundation/NSDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSDate.m -------------------------------------------------------------------------------- /Foundation/NSDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSDictionary.h -------------------------------------------------------------------------------- /Foundation/NSDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSDictionary.m -------------------------------------------------------------------------------- /Foundation/NSDictionaryImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSDictionaryImpl.cpp -------------------------------------------------------------------------------- /Foundation/NSDictionaryImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSDictionaryImpl.h -------------------------------------------------------------------------------- /Foundation/NSEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSEnumerator.h -------------------------------------------------------------------------------- /Foundation/NSEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSEnumerator.m -------------------------------------------------------------------------------- /Foundation/NSMiniRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSMiniRuntime.h -------------------------------------------------------------------------------- /Foundation/NSMiniRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSMiniRuntime.m -------------------------------------------------------------------------------- /Foundation/NSNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSNumber.h -------------------------------------------------------------------------------- /Foundation/NSNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSNumber.m -------------------------------------------------------------------------------- /Foundation/NSObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSObjCRuntime.h -------------------------------------------------------------------------------- /Foundation/NSObjCuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSObjCuntime.m -------------------------------------------------------------------------------- /Foundation/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSString.h -------------------------------------------------------------------------------- /Foundation/NSString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSString.m -------------------------------------------------------------------------------- /Foundation/NSStringPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSStringPrivate.h -------------------------------------------------------------------------------- /Foundation/NSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSTimer.h -------------------------------------------------------------------------------- /Foundation/NSTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/NSTimer.m -------------------------------------------------------------------------------- /Foundation/ObjCFileConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/ObjCFileConsole.c -------------------------------------------------------------------------------- /Foundation/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/Runtime.h -------------------------------------------------------------------------------- /Foundation/qsort_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/qsort_context.c -------------------------------------------------------------------------------- /Foundation/qsort_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/Foundation/qsort_context.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/README.md -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/main.m -------------------------------------------------------------------------------- /readme_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uliwitness/AppKitForClassic/HEAD/readme_screenshot.png --------------------------------------------------------------------------------