mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-02 13:30:55 +00:00
100 lines
1.6 KiB
Objective-C
100 lines
1.6 KiB
Objective-C
//
|
|
// NuTemplateLSTEElement.m
|
|
// ResKnife (PB2)
|
|
//
|
|
// Created by Uli Kusterer on Tue Aug 05 2003.
|
|
// Copyright (c) 2003 M. Uli Kusterer. All rights reserved.
|
|
//
|
|
|
|
#import "NuTemplateLSTEElement.h"
|
|
#import "NuTemplateLSTBElement.h"
|
|
|
|
|
|
@implementation NuTemplateLSTEElement
|
|
|
|
-(void) dealloc
|
|
{
|
|
[groupElemTemplate release];
|
|
[super dealloc];
|
|
}
|
|
|
|
|
|
-(void) setGroupElemTemplate: (NuTemplateGroupElement*)e
|
|
{
|
|
[e retain];
|
|
[groupElemTemplate release];
|
|
groupElemTemplate = e;
|
|
}
|
|
|
|
-(NuTemplateGroupElement*) groupElemTemplate
|
|
{
|
|
return groupElemTemplate;
|
|
}
|
|
|
|
|
|
-(void) readSubElementsFrom: (NuTemplateStream*)stream
|
|
{
|
|
|
|
}
|
|
|
|
|
|
-(void) readDataFrom: (NuTemplateStream*)stream
|
|
{
|
|
NSEnumerator* enny = [subElements objectEnumerator];
|
|
NuTemplateElement* el;
|
|
|
|
while( el = [enny nextObject] )
|
|
{
|
|
[el readDataFrom: stream];
|
|
}
|
|
}
|
|
|
|
|
|
// Doesn't write any sub-elements because this is simply a placeholder to allow for empty lists:
|
|
-(unsigned int) sizeOnDisk
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
-(void) writeDataTo: (NuTemplateStream*)stream
|
|
{
|
|
|
|
}
|
|
|
|
|
|
-(int) subElementCount
|
|
{
|
|
return 0; // We don't want the user to be able to uncollapse us to see our sub-items.
|
|
}
|
|
|
|
|
|
-(NSString*) stringValue
|
|
{
|
|
return @"";
|
|
}
|
|
|
|
|
|
-(id) copyWithZone: (NSZone*)zone
|
|
{
|
|
NuTemplateLSTEElement* el = [super copyWithZone: zone];
|
|
|
|
[el setGroupElemTemplate: [self groupElemTemplate]];
|
|
|
|
return el;
|
|
}
|
|
|
|
|
|
-(IBAction) showCreateResourceSheet: (id)sender
|
|
{
|
|
unsigned idx = [containing indexOfObject:self];
|
|
NuTemplateGroupElement* ge = [[groupElemTemplate copy] autorelease];
|
|
|
|
[containing insertObject:ge atIndex:idx];
|
|
[ge setContaining: containing];
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|