Files
gitx/PBWebController.h
T
German Laullon 3f7a79c491 New History view
Less javascript
2010-12-29 01:08:23 -08:00

32 lines
591 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;
// For the repository access
IBOutlet id repository;
}
@property (retain) NSString *startFile;
@property (retain) id repository;
- (WebScriptObject *) script;
- (void) closeView;
- (BOOL) isFeatureEnabled:(NSString *)feature;
@end