/* 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 <Foundation/Foundation.h> #import <Cocoa/Cocoa.h> @interface DepotOutlineView : NSOutlineView { IBOutlet id fDepotController; } - (NSMenu *)menuForEvent:(NSEvent *)theEvent; // show the revision history of the selected file - (IBAction) showRevisionHistory: (id) sender; // sync - (IBAction) syncToHead: (id) sender; // sync - (IBAction) syncToNone: (id) sender; // sync - (IBAction) syncToRevision: (id) sender; // sync - (IBAction) syncToChangelist: (id) sender; // sync - (IBAction) syncToLabel: (id) sender; // edit - (IBAction) edit: (id) sender; // delete - (IBAction) deleteDepotPath: (id) sender; // revert - (IBAction) revert: (id) sender; // diff - (IBAction) diff: (id) sender; // view in editor - (IBAction) viewInEditor: (id) sender; @end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#4 | 4225 | Jeff Argast |
Added resolve support, reveal in finder, drag and drop edit, show local files, and showing added files. |
||
#3 | 3134 | Jeff Argast |
Added copy/paste support in the depot view Added expand path to depot view Added bookmarks |
||
#2 | 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. |
||
#1 | 2732 | Jeff Argast | Initial submission of P4Cocoa |