Files
gitx/PBRepositoryDocumentController.h
T
Morgan Schweers 5b0051e13c Rudimentary clone capability from the File menu.
No progress display, so it's UX sucks, but it works.

Need to add a progress display, so the user knows it's not just lost in the weeds.  Either a neutral 'working' progress bar, or (optimally) some cool thing that feeds off the pipe and fills a text display.
2009-10-26 16:31:23 +01:00

25 lines
507 B
Objective-C

//
// PBRepositoryDocumentController.h
// GitX
//
// Created by Ciarán Walsh on 15/08/2008.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBGitRevSpecifier.h"
@interface PBRepositoryDocumentController : NSDocumentController
{
IBOutlet NSWindow *cloneWindow;
IBOutlet NSTextField *cloneURLField;
}
- (id) documentForLocation:(NSURL*) url;
- (IBAction) cloneURL:(id)sender;
- (IBAction) showClone:(id)sender;
- (IBAction) hideClone:(id)sender;
@end