Files
gitx/PBWebController.h
T
Pieter de Bie 0a40f876d1 PBWebController: Add asynchronous functions
This allows us to keep the UI responsive while
running expensive commands
2008-10-31 23:44:28 +01:00

23 lines
402 B
Objective-C

//
// PBWebController.h
// GitX
//
// Created by Pieter de Bie on 08-10-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@interface PBWebController : NSObject {
IBOutlet WebView* view;
NSString *startFile;
BOOL finishedLoading;
// For async git reading
NSMapTable *callbacks;
}
@property (retain) NSString *startFile;
@end