mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
e02ee5231c
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.
23 lines
446 B
Objective-C
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
|