Files
gitx/PBRefContextDelegate.h
Nathan Kinsinger b28afa1644 Add the contextual menu to the other columns of the commit list
Now all the columns have the menu for the commit, not just the subject column.
2010-09-12 19:32:50 -06:00

19 lines
372 B
Objective-C

//
// PBRefContextDelegate.m
// GitX
//
// Created by Pieter de Bie on 01-11-08.
// Copyright 2008 Pieter de Bie. All rights reserved.
//
@class PBGitRef;
@class PBGitCommit;
@protocol PBRefContextDelegate
- (NSArray *) menuItemsForRef:(PBGitRef *)ref;
- (NSArray *) menuItemsForCommit:(PBGitCommit *)commit;
- (NSArray *)menuItemsForRow:(NSInteger)rowIndex;
@end