PBGitIndex: post notifications when index stuff fails
[GitX.git] / PBGitIndexController.h
blob1a455e6d9bf06c362b848a73c1ade995297df0b5
1 //
2 // PBGitIndexController.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 18-11-08.
6 // Copyright 2008 Pieter de Bie. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "PBGitCommitController.h"
11 #import "PBChangedFile.h"
13 @interface PBGitIndexController : NSObject {
14 IBOutlet NSArrayController *stagedFilesController, *unstagedFilesController;
15 IBOutlet PBGitCommitController *commitController;
17 IBOutlet NSTableView *unstagedTable;
18 IBOutlet NSTableView *stagedTable;
21 - (IBAction) rowClicked:(NSCell *) sender;
22 - (IBAction) tableClicked:(NSTableView *)tableView;
24 - (NSMenu *) menuForTable:(NSTableView *)table;
25 @end