- Cleaned up objc runtime/headers so that the differences between the KVO implementation for Cocotron vs. Apple runtime are a much smaller.
- Fixed issue 20 for pointer and non-retained object NSValue's.
- Fixed issue 19, NSSelectorFromString so that it registers unknown selectors
- Added Dirk Theisen's concrete NSDirectoryEnumerator and NSClassDescription implementation
- added more NSURL* methods.
- moved some control drawing into a new class NSGraphicsStyle which is responsible for control drawing in the current theme. NSGraphicsStyle implements the default theme and subclasses draw whatever look they want.
- preliminary support for the XP and above UxTheme API in the class NSGraphicsStyle_uxtheme, some controls will do native themed drawing now. Layout/highlighting is not perfect.
- Added axial shaders via CGShading/CGFunction interface
- Added clipping to path
- Added ApplicationServices project for header compatibility if you use CoreGraphics
- Fixed problem with nib connections which do not have : at end
- Fixed problem with system images not appearing in check boxes loaded from nib
- CGWindow, NSCustomView, NSDrawer, NSWindow, NSWindowController, Win32Window fixes from Issues 10-17 submitted by Rolf Jansen.
- NSFileWrapper implementation submitted by Dirk Theisen.
- Added stubs to NSAssertionHandler, NSDirectoryEnumerator, NSFileManager for methods needed by NSFileWrapper addition.
- Added FlateDecode filter derived from a public domain implementation (not zlib) by Sean Barrett to the PDF system.
- Added ImageIO directory and starting point files.
- Added more starting point code in KoreGraphics and clean up in KG and Win32. Added KG(Mutable)Path.
- First pass at NSPDFImageRep hooks into underlying KG classes.
NSConnection subproject - added a lot of empty methods
Introduction of KoreGraphics (KG prefix) classes to the AppKit project. This is primarily a first pass at PDF parsing and rendering. It is not integrated with the rest of the AppKit, it is simply there and compiles.
NSAssertionHandler - header added for NSFileWrapper
The various NSStream concrete classes have a first pass implementation: NSInputStream_socket, NSOutputStream_socket, NSInputStream_data, NSOutputStream_data , NSOutputStream_buffer, NSInputStream_file, NSOutputStream_file
The socket monitor/callback system has been overhauled to fix known problems going forward with socket based streams and distributed objects. This consists mainly of decoupling the select() management from the callback management allowing for accurate select() status across run loop mode changes and multiple callback monitors per socket. The major platform differences (windows vs. unix) were separated into their own files instead of the previous #ifdef mess. The NSInputSource system in the run loop was cleaned up to accommodate the new socket system and future additions.
These classes were deleted: NSSocketSet, NSSocketMonitorSet, NSSocketDescriptor, NSSocketMonitor, NSSocketMonitorSet_Windows, NSSocketInputSource_windows, NSSocketMonitorSet_Unix
And were replaced with: NSSocket, NSSocket_windows, NSSocket_bsd, NSSelectSet, NSSelectSet_windows, NSSelectSet_bsd , NSSelectInputSourceSet, NSSelectInputSource
NSTask and NSFileHandle on Linux/Solaris are affected by this as they were using the old socket monitoring system to look for background events and have been upgraded to the new one.
NSHandleMonitorSet_win32 upgraded with NSInputSource upgrade.
NSError - first pass implemented to assist with NSStream implementation.
-[NSMutableSet setSet:] - implemented
Cleared up some of the Linux/Solaris compiler warnings