HistoryView: Don't show the 'loading commit' thing until after 500 ms.
[GitX.git] / PBWebController.h
blob2715e5eac5828656585c682872fa96e366b34036
1 //
2 // PBWebController.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 08-10-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import <WebKit/WebKit.h>
12 @interface PBWebController : NSObject {
13 IBOutlet WebView* view;
14 NSString *startFile;
15 BOOL finishedLoading;
17 // For async git reading
18 NSMapTable *callbacks;
20 // For the repository access
21 IBOutlet id repository;
24 @property (retain) NSString *startFile;
25 @property (retain) id repository;
27 - (WebScriptObject *) script;
28 - (void) closeView;
29 @end