* Headers/AppKit/NSSegmentedCell.h: Added rect ivar to cache frame.

* Source/NSBundleAdditions.m: Minor formatting changes.
	* Source/NSController.m: Added ivars to encodeWithCoder:.
	* Source/NSNibBindingConnector.m: Added ivars to encodeWithCoder:.
	* Source/NSSegmentedCell.m: Changes to fully implement rendering
	of the cell.
	* Source/NSSegmentedControl.m: Changes to fully implement
	control.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25900 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
gcasa 2008-01-09 03:37:59 +00:00
parent f84948848a
commit efdf40b451
7 changed files with 120 additions and 16 deletions

View file

@ -53,7 +53,14 @@
- (void) encodeWithCoder: (NSCoder *)aCoder
{
// TODO
if([aCoder allowsKeyedCoding])
{
[aCoder encodeObject: _declared_keys forKey: @"NSDeclaredKeys"];
}
else
{
[aCoder encodeObject: _declared_keys];
}
}
- (id) initWithCoder: (NSCoder *)aDecoder