Files
gitx/PBGitCommitController.h
T
2008-09-24 01:08:10 +02:00

34 lines
751 B
Objective-C

//
// PBGitCommitController.h
// GitX
//
// Created by Pieter de Bie on 19-09-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBViewController.h"
@class PBIconAndTextCell;
@interface PBGitCommitController : PBViewController {
NSMutableArray *files;
IBOutlet NSTextView *commitMessageView;
IBOutlet NSArrayController *unstagedFilesController;
IBOutlet NSArrayController *cachedFilesController;
IBOutlet PBIconAndTextCell* unstagedButtonCell;
IBOutlet PBIconAndTextCell* cachedButtonCell;
}
@property (retain) NSMutableArray *files;
- (void) readCachedFiles;
- (void) readOtherFiles;
- (void) readUnstagedFiles;
- (IBAction) refresh:(id) sender;
- (IBAction) commit:(id) sender;
@end