sogo/UI/MailerUI/UIxMailTreeBlock.m
dev-unix.inverse.qc.ca f18c764ffa see ChangeLog
Monotone-Revision: 9054022ef1ca8aeba6e34842d27d9b94ce002b89

Monotone-Author: dev-unix.inverse.qc.ca
Monotone-Date: 2006-06-15T19:34:10
Monotone-Branch: ca.inverse.sogo
2006-06-15 19:34:10 +00:00

143 lines
3.7 KiB
Objective-C

/*
Copyright (C) 2004-2005 SKYRIX Software AG
This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
OGo is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with OGo; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#include "UIxMailTreeBlock.h"
#include "common.h"
@implementation UIxMailTreeBlock
id UIxMailTreeHasChildrenMarker = nil;
+ (void)initialize {
// TODO: needs to be an array because the WETreeView requires a
// children array
UIxMailTreeHasChildrenMarker =
[[NSArray alloc] initWithObjects:@"FAKE", nil];
}
+ (id)blockWithName:(NSString *)_name title:(NSString *)_title
iconName:(NSString *)_icon
link:(NSString *)_link isPathNode:(BOOL)_isPath isActiveNode:(BOOL)_isActive
childBlocks:(NSArray *)_blocks
{
UIxMailTreeBlock *block;
block = [[self alloc] initWithName:_name title:_title iconName:_icon
link:_link
isPathNode:_isPath isActiveNode:_isActive
childBlocks:_blocks];
return [block autorelease];
}
- (id)initWithName:(NSString *)_name title:(NSString *)_title
iconName:(NSString *)_icon
link:(NSString *)_link isPathNode:(BOOL)_isPath isActiveNode:(BOOL)_isActive
childBlocks:(NSArray *)_blocks
{
if ((self = [self init])) {
self->name = [_name copy];
self->title = [_title copy];
self->iconName = [_icon copy];
self->link = [_link copy];
self->blocks = [_blocks retain];
self->flags.isPath = _isPath ? 1 : 0;
self->flags.isActive = _isActive ? 1 : 0;
}
return self;
}
- (void)dealloc {
[self->iconName release];
[self->blocks release];
[self->name release];
[self->title release];
[self->link release];
[super dealloc];
}
/* accessors */
- (NSString *)name {
return self->name;
}
- (NSString *)title {
return self->title;
}
- (NSString *)link {
return self->link;
}
- (NSString *)iconName {
return self->iconName;
}
- (BOOL)hasChildren {
if (self->blocks == UIxMailTreeHasChildrenMarker)
return YES;
return [self->blocks count] > 0 ? YES : NO;
}
- (BOOL)areChildrenLoaded {
return self->blocks != UIxMailTreeHasChildrenMarker ? YES : NO;
}
- (NSArray *)children {
if (self->blocks == UIxMailTreeHasChildrenMarker)
// TODO: print a warning
return self->blocks;
return self->blocks;
}
- (BOOL)isPathNode {
return self->flags.isPath ? YES : NO;
}
- (BOOL)isActiveNode {
return self->flags.isActive ? YES : NO;
}
/* description */
- (void)appendAttributesToDescription:(NSMutableString *)_ms {
if (self->name != nil) [_ms appendFormat:@" name='%@'", self->name];
if (self->title != nil) [_ms appendFormat:@" title='%@'", self->title];
if ([self isPathNode]) [_ms appendString:@" path"];
if ([self isActiveNode]) [_ms appendString:@" active"];
if (self->blocks == UIxMailTreeHasChildrenMarker)
[_ms appendString:@" has-children"];
else if ([self->blocks count] > 0)
[_ms appendFormat:@" children=%@", self->blocks];
}
- (NSString *)description {
NSMutableString *ms;
ms = [NSMutableString stringWithCapacity:64];
[ms appendFormat:@"<0x%08X[%@]:", self, NSStringFromClass([self class])];
[self appendAttributesToDescription:ms];
[ms appendString:@">"];
return ms;
}
@end /* UIxMailTreeBlock */