* Source/NSMenuItemCell.m: encode menu item in encodeWithCoder:

method.
	* Source/NSMenu.m: Add code to handle NSNoAutoenable
	* Source/NSPopUpButtonCell.m: Decode/encode selected index
	* Source/NSPrintInfo.m: Set orientation after the page size is 
	known, since it has no effect when done earlier.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27568 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-01-10 03:49:43 +00:00
parent 2d97996e15
commit 864092095d
5 changed files with 62 additions and 16 deletions

View file

@ -1408,7 +1408,20 @@ static BOOL menuBarVisible = YES;
if ([aDecoder allowsKeyedCoding])
{
dAuto = YES;
//
// NSNoAutoenable is present when the "Autoenable" option is NOT checked.
// NO = Autoenable menus, YES = Don't auto enable menus. We, therefore,
// have to invert the values of this flag in order to get the value of
// dAuto.
//
if ([aDecoder containsValueForKey: @"NSNoAutoenable"])
{
dAuto = ([aDecoder decodeBoolForKey: @"NSNoAutoenable"] == NO) ? YES : NO;
}
else
{
dAuto = NO;
}
dTitle = [aDecoder decodeObjectForKey: @"NSTitle"];
dItems = [aDecoder decodeObjectForKey: @"NSMenuItems"];
}