2 // PBGitCommitController.h
5 // Created by Pieter de Bie on 19-09-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
9 #import <Cocoa/Cocoa.h>
10 #import "PBViewController.h"
12 @
class PBGitIndexController
, PBIconAndTextCell
, PBWebChangesController
, PBGitIndex
;
14 @interface PBGitCommitController
: PBViewController
{
15 // This might have to transfer over to the PBGitRepository
19 IBOutlet NSTextView
*commitMessageView
;
20 IBOutlet NSArrayController
*unstagedFilesController
;
21 IBOutlet NSArrayController
*cachedFilesController
;
23 IBOutlet PBGitIndexController
*indexController
;
24 IBOutlet PBWebChangesController
*webController
;
30 @
property(copy
) NSString
*status
;
31 @
property(readonly
) PBGitIndex
*index
;
32 @
property(assign
) BOOL busy
;
34 - (IBAction
) refresh
:(id
) sender
;
35 - (IBAction
) commit
:(id
) sender
;
36 - (IBAction
)signOff
:(id
)sender
;