mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
26 lines
630 B
Objective-C
26 lines
630 B
Objective-C
//
|
|
// PBGitIndexController.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 18-11-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitCommitController.h"
|
|
#import "PBChangedFile.h"
|
|
|
|
@interface PBGitIndexController : NSObject {
|
|
IBOutlet NSArrayController *stagedFilesController, *unstagedFilesController;
|
|
IBOutlet PBGitCommitController *commitController;
|
|
|
|
IBOutlet NSTableView *unstagedTable;
|
|
IBOutlet NSTableView *stagedTable;
|
|
}
|
|
|
|
- (IBAction) rowClicked:(NSCell *) sender;
|
|
- (IBAction) tableClicked:(NSTableView *)tableView;
|
|
|
|
- (NSMenu *) menuForTable:(NSTableView *)table;
|
|
@end
|