Index: NSColor.m =================================================================== RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSColor.m,v retrieving revision 1.48 diff -u -r1.48 NSColor.m --- NSColor.m 30 Jan 2004 19:49:00 -0000 1.48 +++ NSColor.m 20 Aug 2004 17:38:58 -0000 @@ -214,6 +214,10 @@ lightGray, @"windowBackgroundColor", black, @"windowFrameColor", white, @"windowFrameTextColor", + black, @"rowTextColor", + black, @"selectedRowTextColor", + lightGray, @"rowBackgroundColor", + white, @"selectedRowBackgroundColor", //gray, @"windowFrameColor", //black, @"windowFrameTextColor", nil]; @@ -2627,3 +2631,32 @@ } @end + +// +// Implementation of rows colors keys +// + address@hidden NSColor (rows) + ++ (NSColor*) rowBackgroundColor +{ + return systemColorWithName(@"rowBackgroundColor"); +} + ++ (NSColor*) rowTextColor +{ + return systemColorWithName(@"rowTextColor"); +} + ++ (NSColor*) selectedRowBackgroundColor +{ + return systemColorWithName(@"selectedRowBackgroundColor"); +} + ++ (NSColor*) selectedRowTextColor +{ + return systemColorWithName(@"selectedRowTextColor"); +} + address@hidden +