mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
5b0051e13c
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.
25 lines
507 B
Objective-C
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
|