Files
gitx/PBWebController.h
T
Pieter de Bie db39ff7f92 PBWebController: Add a script accessor
This allows easy access to the window's script object
2008-10-31 23:44:28 +01:00

25 lines
433 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;
- (WebScriptObject *) script;
@end