/* Copyright (C) 2002-2003, Jeffrey D. Argast. The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, its user, assume the entire risk as to its quality and accuracy. Permission is hereby granted to use, copy, modify, and distribute this software or portions thereof for any purpose, without fee, subject to these conditions: (1) If any part of the source code is distributed, then this statement must be included, with this copyright and no-warranty notice unaltered. (2) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept NO LIABILITY for damages of any kind. */ #import #import "PerforceDepot.h" #import "PerforceAction.h" #import "IconController.h" #import "IconDefs.h" #import "MessageDefs.h" @implementation PerforceDepot - (id) initWithName: (const char*) name withType: (int) depotType { NSMutableString* depotName = [[[NSMutableString alloc] initWithCString:name] autorelease]; [depotName insertString:@"//" atIndex:0]; if ( self = [super initWithDir:[depotName cString]] ) { fType = depotType; // release because it was retained in base class [fIcon release]; IconController* iconController = [IconController defaultIconController]; if ( fType == kLocalDepotType ) { fIcon = [[iconController getIcon:kLocalDepotIcon] retain]; } else { fIcon = [[iconController getIcon:kRemoteDepotIcon] retain]; } NSNotificationCenter* nCenter = [NSNotificationCenter defaultCenter]; [nCenter addObserver:self selector:@selector(handleFileChanged:) name:kDepotFileChanged object:nil]; } return self; } - (void) dealloc { NSNotificationCenter* nCenter = [NSNotificationCenter defaultCenter]; [nCenter removeObserver:self]; [super dealloc]; } - (NSComparisonResult)compare:(PerforceDepot *)aDepot { return [fDepotPath compare:aDepot->fDepotPath]; } - (id) getCellText { return fDepotPath; } - (void) handleFileChanged:(NSNotification*)aNotification { NSString* depotPath = [aNotification object]; [self fileChanged:depotPath]; } @end