Files
gitx/PBCommitList.h
T
Pieter de Bie e02ee5231c WebHistoryController: Move ref deletion to RefController
That's why it's there, after all. This also makes the system
more robust and catches some more errors.

The next thing this enables is to also allow right-clicking
on refs in the commit list.
2008-11-01 22:51:10 +01:00

23 lines
446 B
Objective-C

//
// PBCommitList.h
// GitX
//
// Created by Pieter de Bie on 9/11/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <WebKit/WebView.h>
#import "PBGitHistoryController.h"
@interface PBCommitList : NSTableView {
IBOutlet WebView* webView;
IBOutlet id webController;
IBOutlet PBGitHistoryController *controller;
NSPoint mouseDownPoint;
}
@property (readonly) NSPoint mouseDownPoint;
@end