PendingViewSelection.m #2

  • //
  • guest/
  • jeff_argast/
  • P4Cocoa/
  • source/
  • Selection/
  • PendingViewSelection.m
  • View
  • Commits
  • Open Download .zip Download (3 KB)
/*

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 "PendingViewSelection.h"
#import "PerforceActionRevert.h"

@implementation PendingViewSelection

- (id) initWithItems: (NSArray*) selectedItems
{
	self = [super init];
	
	fSelectedItems = [selectedItems retain];
			
	return self;
}

- (void) dealloc
{
	[fSelectedItems release];
}

- (BOOL) canDoSelector: (SEL) selector
{
	int numItems = [fSelectedItems count];
	int n;
	
	BOOL canDo = YES;
	
	for ( n = 0; (n < numItems) && canDo; n++ )
	{
		id<NSObject> item = [fSelectedItems objectAtIndex:n];
			 
		if ( ![item performSelector:selector] )
		{
			canDo = NO;
		}
	}
	
	return canDo;
}

- (void) doSelector: (SEL) selector
{
	int numItems = [fSelectedItems count];
	int n;

	for ( n = 0; n < numItems; n++ )
	{
		id<NSObject> item = [fSelectedItems objectAtIndex:n];
			
		[item performSelector:selector];
	}
}

// The enablement
- (BOOL) canEdit
{
	return [self canDoSelector:@selector(canEdit)];
}

- (BOOL) canDescribe
{
	return [self canDoSelector:@selector(canDescribe)];
}

- (BOOL) canDelete
{
	return [self canDoSelector:@selector(canDelete)];
}

- (BOOL) canSubmit
{
	return [self canDoSelector:@selector(canSubmit)];
}

- (BOOL) canRevert
{
	return [self canDoSelector:@selector(canRevert)];
}

- (BOOL) canDiff
{
	return [self canDoSelector:@selector(canDiff)];
}


// The actions
- (void) doEdit
{
	[self doSelector:@selector(doEdit)];
}

- (void) doDescribe
{
	[self doSelector:@selector(doDescribe)];
}

- (void) doDelete
{
	[self doSelector:@selector(doDelete)];
}

- (void) doSubmit
{
	[self doSelector:@selector(doSubmit)];
}

- (void) doRevert
{
	int numItems = [fSelectedItems count];
	int n;

	NSMutableArray* revertPathList = [NSMutableArray arrayWithCapacity:numItems];

	for ( n = 0; n < numItems; n++ )
	{
		id<PendingChangelistProtocol> item = [fSelectedItems objectAtIndex:n];
			
		[item appendRevertPath:revertPathList];
	}

	[PerforceActionRevert defaultRun:revertPathList];
}

- (void) doDiff
{
	[self doSelector:@selector(doDiff)];
}

- (void) appendRevertPath: (NSMutableArray*) revertPathList
{
	// Do nothing.  TODO: This means the protocol is too broad and should be broken into more
	// granular protocols.
}

@end
# Change User Description Committed
#6 4225 Jeff Argast Added resolve support, reveal in finder, drag and drop edit,
show local files, and showing added files.
#5 3147 Jeff Argast Testing std in blockage
#4 3130 Jeff Argast Added double click support to the depot view and pending changelist
view.  Added View File In Editor item on the pending changeist
context menu.
#3 3113 Jeff Argast Reduced the times the depot view completely collapses.
Now it won't collapse on refresh views or submit, but
still collapses when the defaults change.
#2 3111 Jeff Argast Made multiple selection smarter by operating on the entire selection as an atomic
operation with the server. Also partially fixed the read only window to not wrap
at the window boundary.  I did the same for the editable window, but now the problem
appears to be that p4 change -o is breaking its output at some character location
before the string gets into the editor (at least I think that is the problem).
#1 2737 Jeff Argast Added several 0.15 revision functionality