Progress decoding rows/columns

This commit is contained in:
Gregory John Casamento 2021-01-14 02:54:54 -05:00
parent 200d325d94
commit 5ce0b46a4a
2 changed files with 15 additions and 1 deletions

View file

@ -202,7 +202,9 @@ static NSArray *XmlBoolDefaultYes = nil;
@"NSMutableArray", @"allowedToolbarItems",
@"NSMutableArray", @"defaultToolbarItems",
@"NSMutableArray", @"rowTemplates",
@"NSMutableArray", @"constraints",
@"NSMutableArray", @"constraints",
@"NSMutableArray", @"rows",
@"NSMutableArray", @"columns",
@"NSSegmentItem", @"segment",
@"NSCell", @"customCell",
@"NSCustomObject5", @"customObject",
@ -300,6 +302,8 @@ static NSArray *XmlBoolDefaultYes = nil;
@"height", @"NSGrid_heighth",
@"xPlacement", @"NSGrid_xPlacement",
@"yPlacement", @"NSGrid_yPlacement",
@"rows", @"NSGrid_rows",
@"columns", @"NSGrid_columns",
nil];
RETAIN(XmlKeyMapTable);

View file

@ -236,6 +236,7 @@
- (instancetype) initWithCoder: (NSCoder *)coder
{
self = [super initWithCoder: coder];
NSLog(@"%@ %@",NSStringFromClass([self class]), NSStringFromSelector(_cmd));
if ([coder allowsKeyedCoding])
{
if ([coder containsValueForKey: @"NSGrid_alignment"])
@ -249,6 +250,7 @@
if ([coder containsValueForKey: @"NSGrid_columns"])
{
ASSIGN(_columns, [coder decodeObjectForKey: @"NSGrid_columns"]);
NSLog(@"_columns = %@", _columns);
}
if ([coder containsValueForKey: @"NSGrid_rowSpacing"])
{
@ -257,6 +259,7 @@
if ([coder containsValueForKey: @"NSGrid_rows"])
{
ASSIGN(_rows, [coder decodeObjectForKey: @"NSGrid_rows"]);
NSLog(@"_rows = %@", _columns);
}
if ([coder containsValueForKey: @"NSGrid_xPlacement"])
{
@ -386,6 +389,9 @@
- (instancetype) initWithCoder: (NSCoder *)coder
{
self = [super init];
NSLog(@"%@ %@",NSStringFromClass([self class]), NSStringFromSelector(_cmd));
if ([coder allowsKeyedCoding])
{
if ([coder containsValueForKey: @"NSGrid_content"])
@ -534,6 +540,9 @@
- (instancetype) initWithCoder: (NSCoder *)coder
{
self = [super init];
NSLog(@"%@ %@",NSStringFromClass([self class]), NSStringFromSelector(_cmd));
if ([coder allowsKeyedCoding])
{
if ([coder containsValueForKey: @"NSGrid_hidden"])
@ -694,6 +703,7 @@
- (instancetype) initWithCoder: (NSCoder *)coder
{
self = [super init];
NSLog(@"%@ %@",NSStringFromClass([self class]), NSStringFromSelector(_cmd));
if ([coder allowsKeyedCoding])
{
if ([coder containsValueForKey: @"NSGrid_hidden"])